.contact-hero {
    background: linear-gradient(180deg, #0b1b45 0%, #0f2c73 60%, #0b1b45 100%);
    color: #ffffff;
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.contact-hero__layout {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .contact-hero__layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact-hero__content {
    max-width: 520px;
}

.contact-hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.contact-hero__title {
    font-size: clamp(2.75rem, 4vw, 3.75rem);
    margin: 1rem 0;
    font-weight: 700;
}

.contact-hero__description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.contact-hero__support {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
}

.contact-hero__visual {
    display: flex;
    justify-content: flex-end;
}

.contact-hero__card {
    max-width: 420px;
}

.contact-options {
    padding: 3.5rem 0 1rem;
    background: #ffffff;
}

.contact-options__heading {
    margin-bottom: 2.5rem;
}

.contact-options__heading h2 {
    font-size: clamp(2.2rem, 3.2vw, 3rem);
    font-weight: 700;
}

.contact-options__heading p {
    color: #4f5678;
}

.contact-options__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-option-wrapper {
    position: relative;
}

.contact-option-wrapper input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.contact-option-card {
    position: relative;
    border: 1px solid #e1e7f4;
    border-radius: 24px;
    padding: 2rem;
    min-height: 200px;
    box-shadow: 0 25px 45px rgba(12, 27, 69, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    cursor: pointer;
}

.contact-option-card i {
    font-size: 1.4rem;
    color: var(--primary);
}

.contact-option-card h3 {
    font-size: 1.25rem;
    margin: 0;
    color: #1c2651;
}

.contact-option-card p {
    margin: 0;
    color: #4f5678;
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-option-card__check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.contact-option-card__check i {
    color: #ffffff;
}

.contact-option-wrapper input:checked + label {
    border-color: var(--primary);
    box-shadow: 0 12px 21px rgba(var(--dark-rgb), 0.21);
    transform: translateY(-4px);
}

.contact-option-wrapper input:checked + label .contact-option-card__check {
    opacity: 1;
}

.contact-form-section {
    padding: 4rem 0 5rem;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 32px;
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem;
    box-shadow: 0 12px 21px rgba(10, 27, 54, 0.15);
}

.contact-form-note {
    background: #e2efff;
    border-radius: 999px;
    padding: 0.9rem 1.5rem;
    text-align: center;
    font-weight: 600;
    color: #1b2a53;
    margin-bottom: 2rem;
}

.contact-form-body {
    padding: 0;
}

@media (max-width: 767px) {
    .contact-hero__layout {
        text-align: center;
    }

    .contact-hero__visual {
        justify-content: center;
    }

    .contact-form-card {
        padding: 2rem;
    }
}

    .contact-process-section {
        padding: 4rem 0 1rem;
    }

    .contact-process-section h2 {
        font-size: clamp(2.2rem, 3vw, 2.8rem);
        font-weight: 700;
    }

    .contact-process-section p {
        color: #55617a;
    }

    .process-steps {
        position: relative;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        padding: 1rem 0 0;
    }

    .process-steps::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 5%;
        right: 5%;
        height: 4px;
        background: linear-gradient(90deg, rgba(104, 132, 255, 0.4), rgba(76, 111, 255, 0.9));
        z-index: 0;
    }

    .process-steps article {
        text-align: center;
        position: relative;
        z-index: 1;
        padding: 0 1rem;
    }

    .process-icon {
        width: 84px;
        height: 84px;
        border-radius: 999px;
        margin: 0 auto 1rem;
        background: linear-gradient(145deg, var(--dark), var(--primary));
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        position: relative;
        box-shadow: 0 12px 18px rgba(var(--dark-rgb), 0.24);
    }

    .process-number {
        position: absolute;
        top: -12px;
        right: -8px;
        width: 32px;
        height: 32px;
        border-radius: 999px;
        background: #ffffff;
        color: #0f2c73;
        font-weight: 700;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(8, 18, 44, 0.15);
    }

    .process-steps h3 {
        margin: 0;
        font-size: 1.15rem;
        color: #0f1f3f;
    }

    .process-steps p {
        margin: 0.35rem 0 0;
        font-size: 0.95rem;
    }

    .contact-metrics-section {
        padding: 4rem 0 1rem;
        margin-bottom: 30px;
    }

    .metrics-card {
        background: #ffffff;
        border-radius: 30px;
        padding: 2.5rem 3rem;
        box-shadow: 0 12px 18px rgba(10, 27, 54, 0.12);
    }

    .metrics-values {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        text-align: center;
        gap: 2rem;
    }

    .metrics-value strong {
        font-size: 2.7rem;
        color: var(--primary);
    }

    .metrics-value span {
        display: block;
        margin-top: 0.35rem;
        color: #5a6176;
    }

    .metrics-divider {
        height: 1px;
        background: #e5e9f5;
        margin: 2rem 0;
    }

    .metrics-industry h3 {
        margin: 0 0 1rem;
        text-align: center;
        font-weight: 600;
        color: #1a254f;
    }

    .industry-tags {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .industry-tags span {
        padding: 0.45rem 1.1rem;
        border-radius: 999px;
        border: 1px solid #dfe6f8;
        background: #f3f7ff;
        font-size: 0.95rem;
        color: #1f3d74;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
    }

    .industry-tags i {
        color: var(--primary);
    }

    .metrics-footnote {
        text-align: center;
        color: #8891a7;
        font-size: 0.9rem;
        font-style: italic;
    }

    .contact-alternatives-section {
        padding: 4rem 0 2rem;
        background: #ffffff;
    }

    .alternatives-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .alt-contact-card {
        border: 1px solid #dde4f4;
        border-radius: 26px;
        padding: 2.25rem;
        text-align: center;
        background: #ffffff;
        box-shadow: 0 15px 24px rgba(11, 24, 58, 0.12);
    }

    .alt-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(76, 111, 255, 0.95), rgba(76, 111, 255, 0.65));
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        margin: 0 auto 1rem;
        font-size: 1.4rem;
    }

    .alt-contact-card h3 {
        margin: 0 0 0.5rem;
        color: #182347;
    }

    .alt-contact-card p {
        margin: 0;
        color: #5a6176;
    }

    .alt-contact-card a {
        display: inline-block;
        margin-top: 0.6rem;
        color: var(--primary);
        font-weight: 600;
    }

    .contact-hours {
        text-align: center;
        color: #5a6176;
        margin-top: 1.5rem;
    }
