/* Hero Banner Styles */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #2a2c2f;
    padding: 3rem 2rem;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero .description {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.description-short {
    display: inline;
}

.description-full {
    display: none;
    transition: opacity 0.3s ease;
}

.description-full.show {
    display: inline;
}

.description-full.hidden {
    display: none;
}

.read-more-btn,
.read-less-btn {
    background: none;
    border: none;
    color: #15d7d4;
    cursor: pointer;
    font-size: 1.0625rem;
    font-weight: 600;
    padding: 0;
    margin-left: 0.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline;
}

.read-more-btn:hover,
.read-less-btn:hover {
    color: #1ff5f2;
}

.read-more-btn.hidden {
    display: none;
}

.read-less-btn.hidden {
    display: none;
}

.advantages {
    margin-bottom: 3rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #15d7d4;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
    color: #2a2c2f;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.cta-button::-moz-focus-inner {
    border: none;
    padding: 0;
}

.cta-button:focus-visible {
    outline: 2px solid #15d7d4;
    outline-offset: 2px;
}

.cta-primary {
    background: #15d7d4;
    color: #2a2c2f;
    border: 1px solid #15d7d4;
}

.cta-primary:hover {
    background: #1ff5f2;
    border-color: #1ff5f2;
}

.cta-secondary {
    background: transparent;
    color: #15d7d4;
    border: 1px solid #15d7d4;
}

.cta-secondary:hover {
    background: rgba(21, 215, 212, 0.1);
}

.cta-button:visited {
    color: inherit;
}

.cta-primary:visited {
    background: #15d7d4;
    color: #2a2c2f;
    border-color: #15d7d4;
}

.cta-secondary:visited {
    background: transparent;
    color: #15d7d4;
    border-color: #15d7d4;
}

.cta-button:active,
.cta-button:focus {
    outline: none;
}

.cta-primary:active,
.cta-primary:focus {
    background: #15d7d4;
    color: #2a2c2f;
    border-color: #15d7d4;
}

.cta-secondary:active,
.cta-secondary:focus {
    background: transparent;
    color: #15d7d4;
    border-color: #15d7d4;
}

.cta-button::before,
.cta-button::after {
    display: none !important;
}

.cta-button {
    -webkit-tap-highlight-color: transparent;
}

.cta-button:active {
    transform: none;
}

.form-container {
    background: #353739;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid #404244;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.hero input,
.hero textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #404244;
    border-radius: 6px;
    background: #2a2c2f;
    color: white;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.hero input::placeholder,
.hero textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.hero input:focus,
.hero textarea:focus {
    outline: none;
    border-color: #15d7d4;
}

.hero textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: block;
    color: white;
    font-weight: 500;
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: #15d7d4;
}

.checkbox-item label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    cursor: pointer;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: #15d7d4;
    color: #2a2c2f;
    border: none;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    background: #1ff5f2;
}

.arrow {
    transition: transform 0.2s ease;
    font-size: 1.125rem;
}

.submit-button:hover .arrow {
    transform: translateX(4px);
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .hero {
        padding: 2.5rem 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 2.75rem);
    }

    .hero .description {
        font-size: 1rem;
    }

    .form-container {
        max-width: 100%;
        margin: 0;
        padding: 2rem;
    }

    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-buttons {
        gap: 0.75rem;
    }

    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.875rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero .description {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .read-more-btn,
    .read-less-btn {
        font-size: 0.9375rem;
    }

    .advantages {
        margin-bottom: 2rem;
        display: grid;
        gap: 0.75rem;
    }

    .advantage-item {
        font-size: 0.875rem;
        gap: 0.75rem;
        margin-bottom: 0;
    }

    .check-icon {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .form-container {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .form-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-button {
        text-align: center;
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .hero input,
    .hero textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.9375rem;
    }

    .checkbox-item {
        margin-bottom: 0.5rem;
    }

    .checkbox-item input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-right: 0.5rem;
    }

    .checkbox-item label {
        font-size: 0.875rem;
    }

    .checkbox-label {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .submit-button {
        padding: 0.875rem;
        font-size: 0.875rem;
        gap: 0.375rem;
    }

    .arrow {
        font-size: 1rem;
    }
}

/* Extra Small Devices (Below 480px) */
@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 0.75rem;
    }

    .hero h1 {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 0.75rem;
    }

    .hero .description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .read-more-btn,
    .read-less-btn {
        font-size: 0.875rem;
    }

    .advantages {
        margin-bottom: 1.5rem;
    }

    .advantage-item {
        font-size: 0.8125rem;
        gap: 0.5rem;
    }

    .check-icon {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }

    .form-container {
        padding: 1.25rem;
        border-radius: 6px;
    }

    .form-title {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }

    .cta-buttons {
        gap: 0.5rem;
    }

    .cta-button {
        padding: 0.65rem 1.25rem;
        font-size: 0.8125rem;
        border-radius: 4px;
    }

    .hero input,
    .hero textarea {
        padding: 0.65rem 0.75rem;
        font-size: 0.875rem;
        border-radius: 4px;
    }

    .form-grid {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .form-group {
        margin-bottom: 0.75rem;
    }

    .checkbox-group {
        margin-bottom: 1rem;
    }

    .checkbox-label {
        font-size: 0.8125rem;
        margin-bottom: 0.5rem;
    }

    .checkbox-item {
        margin-bottom: 0.375rem;
    }

    .checkbox-item input[type="checkbox"] {
        width: 14px;
        height: 14px;
        margin-right: 0.375rem;
    }

    .checkbox-item label {
        font-size: 0.8125rem;
    }

    .submit-button {
        padding: 0.75rem;
        font-size: 0.8125rem;
        gap: 0.25rem;
        border-radius: 4px;
    }

    .arrow {
        font-size: 0.9rem;
    }
}
