:root {
    --navy: #071a37;
    --blue: #1261e8;
    --blue-dark: #0849b9;
    --text: #142033;
    --muted: #66758a;
    --soft: #f5f8fc;
    --border: #e3eaf2;
    --green: #16a75a;
    --container: 1180px;
    --shadow: 0 24px 60px rgba(7, 26, 55, .09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.narrow {
    max-width: 850px;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(227,234,242,.9);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #1261e8, #3a8cff);
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-copy strong {
    font-size: 16px;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
}

.main-nav {
    display: flex;
    gap: 27px;
    font-size: 14px;
    font-weight: 650;
    color: #46566c;
}

.main-nav a:hover {
    color: var(--blue);
}

/* BUTTONS */

.button {
    min-height: 52px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    transition: .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary,
.button-small {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 10px 24px rgba(18,97,232,.18);
}

.button-primary:hover,
.button-small:hover {
    background: var(--blue-dark);
}

.button-small {
    min-height: 44px;
    padding-inline: 19px;
}

.button-secondary {
    border: 1px solid var(--border);
    background: #fff;
}

.button-white {
    color: var(--navy);
    background: #fff;
}

/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 95px;
    background:
        radial-gradient(circle at 90% 5%, rgba(42,176,255,.14), transparent 30%),
        radial-gradient(circle at 8% 0%, rgba(18,97,232,.08), transparent 34%),
        #fff;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .75fr;
    align-items: center;
    gap: 85px;
}

.eyebrow {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eaf3ff;
    color: var(--blue);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin: 22px 0 24px;
    color: var(--navy);
    font-size: clamp(48px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -.055em;
}

.hero h1 span {
    color: var(--blue);
}

.hero-lead {
    max-width: 640px;
    margin: 0;
    color: #596b82;
    font-size: 19px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 31px;
    color: #6a788b;
    font-size: 13px;
}

.consultant-card {
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow);
}

.availability {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 27px;
    color: #607086;
    font-size: 12px;
    font-weight: 700;
}

.availability span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #20b26b;
    box-shadow: 0 0 0 5px rgba(32,178,107,.1);
}

.consultant-card h2 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 29px;
    letter-spacing: -.035em;
}

.consultant-card > p {
    margin: 0 0 25px;
    color: var(--muted);
}

.option-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 11px;
    padding: 18px 19px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #fff;
    transition: .2s ease;
}

.option-card:hover {
    border-color: rgba(18,97,232,.35);
    transform: translateY(-2px);
}

.option-card small {
    color: var(--muted);
}

.option-card strong {
    color: var(--navy);
    font-size: 14px;
}

.consultant-link {
    display: inline-block;
    margin-top: 24px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
}

/* TRUST */

.trust {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    color: #8592a4;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* SECTIONS */

.section {
    padding: 100px 0;
}

.section-soft {
    background: var(--soft);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-heading h2 {
    margin: 16px 0 14px;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

/* CARDS */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    min-height: 310px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    transition: .25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-card.featured {
    border-color: rgba(18,97,232,.35);
    box-shadow: 0 20px 45px rgba(18,97,232,.08);
}

.number {
    width: 49px;
    height: 49px;
    margin-bottom: 34px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #eef5ff;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

.tag {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 23px;
    letter-spacing: -.025em;
}

.service-card p {
    margin: 0 0 24px;
    color: var(--muted);
}

.service-card a {
    margin-top: auto;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
}

/* OPERATORS */

.operators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.operator {
    min-height: 105px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: #fff;
    color: #43536a;
    text-align: center;
    font-weight: 750;
    transition: .2s ease;
}

a.operator:hover {
    color: var(--blue);
    border-color: rgba(18,97,232,.35);
    transform: translateY(-3px);
}

/* STEPS */

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    padding-top: 23px;
    border-top: 2px solid var(--border);
}

.step span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

.step h3 {
    margin: 12px 0 8px;
    color: var(--navy);
    font-size: 18px;
}

.step p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* FAQ */

.faq {
    background: #fbfcfe;
}

details {
    padding: 22px 0;
    border-top: 1px solid var(--border);
}

details:last-child {
    border-bottom: 1px solid var(--border);
}

summary {
    cursor: pointer;
    color: var(--navy);
    font-size: 17px;
    font-weight: 750;
}

details p {
    max-width: 700px;
    margin: 13px 0 2px;
    color: var(--muted);
}

/* CTA */

.cta-section {
    padding: 10px 0 100px;
}

.cta-box {
    padding: 55px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(58,198,255,.30), transparent 35%),
        linear-gradient(135deg, #071a37, #123f81);
    color: #fff;
}

.eyebrow-light {
    background: rgba(255,255,255,.12);
    color: #d7ebff;
}

.cta-box h2 {
    max-width: 650px;
    margin: 17px 0 9px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.cta-box p {
    margin: 0;
    color: rgba(255,255,255,.72);
}

/* FOOTER */

.site-footer {
    padding: 70px 0 30px;
    background: #06152d;
    color: #aec0d6;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}

.footer-grid strong {
    color: #fff;
}

.footer-grid p,
.footer-grid a {
    font-size: 13px;
}

.footer-grid p {
    max-width: 310px;
}

.footer-grid a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 55px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #8195ad;
    font-size: 11px;
}

/* PAGE */

.page-main {
    min-height: 60vh;
    padding: 100px 0;
}

.standard-page h1 {
    color: var(--navy);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

/* MOBILE */

.mobile-whatsapp {
    display: none;
}

@media (max-width: 980px) {

    .main-nav {
        display: none;
    }

    .hero {
        padding-top: 75px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .consultant-card {
        max-width: 620px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 235px;
    }

    .operators {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {

    body {
        padding-bottom: 72px;
    }

    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .site-header .button-small {
        display: none;
    }

    .header-inner {
        min-height: 68px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .hero {
        padding: 62px 0 65px;
    }

    .hero h1 {
        font-size: clamp(43px, 14vw, 61px);
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-benefits {
        display: grid;
        gap: 8px;
    }

    .consultant-card {
        padding: 25px;
        border-radius: 22px;
    }

    .section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .operators {
        grid-template-columns: 1fr 1fr;
    }

    .operator {
        min-height: 90px;
        font-size: 13px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cta-section {
        padding-bottom: 70px;
    }

    .cta-box {
        padding: 35px 27px;
        display: grid;
        border-radius: 22px;
    }

    .cta-box .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .mobile-whatsapp {
        position: fixed;
        z-index: 200;
        left: 12px;
        right: 12px;
        bottom: 10px;
        min-height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        background: var(--green);
        color: #fff;
        font-size: 15px;
        font-weight: 850;
        box-shadow: 0 10px 35px rgba(0,0,0,.20);
    }
}


/* INTERNAL LANDING PAGES */

.inner-hero {
    padding: 105px 0 90px;
    background:
        radial-gradient(circle at 90% 0%, rgba(18,97,232,.11), transparent 32%),
        #fff;
}

.inner-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .7fr;
    gap: 80px;
    align-items: center;
}

.inner-hero h1 {
    max-width: 780px;
    margin: 20px 0 22px;
    color: var(--navy);
    font-size: clamp(44px, 5.5vw, 70px);
    line-height: 1;
    letter-spacing: -.055em;
}

.inner-hero p {
    max-width: 660px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.inner-info-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
}

.info-label {
    color: var(--blue);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.inner-info-card h2 {
    margin: 15px 0 12px;
    color: var(--navy);
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -.03em;
}

.inner-info-card p {
    font-size: 15px;
}

.inner-info-card a {
    display: inline-block;
    margin-top: 24px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 850;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature {
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: #fff;
}

.feature strong {
    color: var(--navy);
    font-size: 17px;
}

.feature p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
}


@media (max-width: 980px) {

    .inner-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .inner-info-card {
        max-width: 650px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .inner-hero {
        padding: 65px 0;
    }

    .inner-hero h1 {
        font-size: 43px;
    }

    .inner-hero p {
        font-size: 16px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

}


/* SHARED INNER PAGE CONTENT */

.content-split {
    display: grid;
    grid-template-columns: 1.1fr .7fr;
    align-items: center;
    gap: 80px;
}

.content-title {
    max-width: 700px;
    margin: 18px 0 18px;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.content-text {
    max-width: 680px;
    color: var(--muted);
    font-size: 16px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
    color: #44546a;
    font-size: 14px;
    font-weight: 650;
}

.highlight-card {
    padding: 34px;
    border-radius: 24px;
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow);
}

.highlight-card > span {
    color: #9cc6ff;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.highlight-card h3 {
    margin: 15px 0 28px;
    color: #fff;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -.03em;
}


@media (max-width: 980px) {

    .content-split {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .highlight-card {
        max-width: 650px;
    }

}


/* OPERATOR LANDINGS */

.operator-hero {
    position: relative;
}

.operator-card {
    position: relative;
}

.operator-card::before {
    content: "";
    position: absolute;
    width: 8px;
    top: 30px;
    bottom: 30px;
    left: 0;
    border-radius: 0 8px 8px 0;
    background: var(--blue);
}


/* INSTITUTIONAL / LEGAL PAGES */

.standard-page {
    max-width: 850px;
}

.standard-page > h1 {
    margin-bottom: 50px;
}

.standard-page .content {
    color: #526176;
    font-size: 16px;
    line-height: 1.8;
}

.standard-page .content h2 {
    margin: 48px 0 14px;
    color: var(--navy);
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.standard-page .content p {
    margin: 0 0 20px;
}

.standard-page .content strong {
    color: var(--navy);
}

@media (max-width: 650px) {

    .standard-page .content {
        font-size: 15px;
    }

    .standard-page .content h2 {
        margin-top: 38px;
        font-size: 23px;
    }

}


/* RAYANE HERO PHOTO */

.consultant-visual {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: #eaf1f9;
    box-shadow: var(--shadow);
}

.consultant-photo {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.consultant-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 42%,
            rgba(7, 26, 55, .18) 58%,
            rgba(7, 26, 55, .94) 100%
        );
    pointer-events: none;
}

.consultant-photo-overlay {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 34px;
    color: #fff;
}

.consultant-photo-label {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.consultant-photo-overlay strong {
    display: block;
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -.035em;
}

.consultant-photo-overlay p {
    max-width: 360px;
    margin: 8px 0 20px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.5;
}

.consultant-photo-overlay a {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.consultant-photo-overlay a:hover {
    text-decoration: underline;
}


@media (max-width: 980px) {

    .consultant-visual {
        width: 100%;
        max-width: 650px;
        min-height: 560px;
    }

}


@media (max-width: 650px) {

    .consultant-visual {
        min-height: 460px;
        border-radius: 23px;
    }

    .consultant-photo-overlay {
        padding: 25px;
    }

    .consultant-photo-overlay strong {
        font-size: 26px;
    }

}


/* PHOTO LOGO */

.brand-mark.brand-photo {
    width: 42px;
    height: 42px;
    padding: 0;
    overflow: hidden;
    flex: 0 0 42px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e7eef8;
}

.brand-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 15%;
}
