:root {
    --ink: #2b163d;
    --ink-2: #45255c;
    --coral: #d8f15a;
    --coral-dark: #829c16;
    --mint: #c9b7ee;
    --cream: #f5f2ff;
    --paper: #ebe7f5;
    --white: #fdfcff;
    --text: #2c2433;
    --muted: #70677a;
    --border: #d8d0e2;
    --container: 1180px;
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 28px;
    --shadow-sm: 0 8px 28px rgba(43, 22, 61, .08);
    --shadow-md: 0 24px 70px rgba(43, 22, 61, .14);
    --ease: cubic-bezier(.2, .8, .2, 1)
}

*, *::before, *::after {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--text);
    background: var(--cream);
    font-family: "Manrope", Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased
}

body.menu-open {
    overflow: hidden
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

a {
    color: inherit
}

button, input, select, textarea {
    font: inherit
}

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

.section {
    padding: clamp(72px, 8vw, 120px) 0
}

.section.alt {
    background: var(--paper)
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--coral-dark);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: currentColor
}

.skip-link {
    position: fixed;
    left: 12px;
    top: -80px;
    z-index: 100;
    background: var(--white);
    padding: 10px 16px
}

.skip-link:focus {
    top: 12px
}

h1, h2, h3 {
    margin: 0 0 .7em;
    color: var(--ink);
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.05;
    letter-spacing: -.035em
}

h1 {
    font-size: clamp(2.75rem, 6vw, 5.8rem)
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem)
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.65rem)
}

p {
    margin: 0 0 1.2em
}

.lead {
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    color: var(--muted);
    max-width: 62ch
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
    margin-bottom: 48px
}

.section-head > * {
    max-width: 650px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(245, 242, 255, .88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: .25s var(--ease)
}

.site-header.is-scrolled {
    border-color: var(--border);
    box-shadow: 0 5px 22px rgba(43, 22, 61, .07)
}

.header-inner {
    height: 78px;
    display: flex;
    align-items: center;
    gap: 28px
}

.brand {
    display: block;
    width: 250px;
    margin-right: auto
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px
}

.site-nav a {
    padding: 10px 12px;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 700;
    border-radius: var(--r-sm);
    transition: .2s
}

.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current="page"] {
    color: var(--coral-dark);
    background: rgba(216, 241, 90, .08)
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink)
}

.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    transition: .2s
}

.menu-toggle[aria-expanded="true"] span {
    opacity: 0
}

.menu-toggle[aria-expanded="true"]::before {
    transform: translateY(6px) rotate(45deg)
}

.menu-toggle[aria-expanded="true"]::after {
    transform: translateY(-6px) rotate(-45deg)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: var(--r-sm);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s var(--ease), background .2s, color .2s, box-shadow .2s
}

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

.btn:active {
    transform: translateY(0)
}

.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid rgba(216, 241, 90, .35);
    outline-offset: 3px
}

.btn-primary {
    background: var(--coral);
    color: var(--ink);
    box-shadow: 0 10px 22px rgba(216, 241, 90, .2)
}

.btn-primary:hover {
    background: #e4fa7c
}

.btn-secondary {
    border-color: rgba(255, 255, 255, .45);
    color: var(--white);
    background: rgba(255, 255, 255, .07)
}

.btn-ghost {
    border-color: var(--border);
    background: transparent;
    color: var(--ink)
}

.btn:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.hero {
    position: relative;
    min-height: 690px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
    color: var(--white)
}

.hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 14, 43, .94) 0%, rgba(30, 14, 43, .76) 42%, rgba(30, 14, 43, .1) 78%)
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    max-width: 660px
}

.hero h1, .inner-hero h1 {
    color: var(--white)
}

.hero .lead, .inner-hero .lead {
    color: #e6dfec
}

.hero-metrics {
    display: flex;
    gap: 38px;
    margin-top: 48px
}

.metric strong {
    display: block;
    color: var(--white);
    font-size: 1.5rem
}

.metric span {
    color: #cabed3;
    font-size: .82rem
}

.inner-hero {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
    padding: clamp(78px, 10vw, 140px) 0
}

.inner-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(201, 183, 238, .22);
    border-radius: 50%;
    right: -80px;
    top: -210px
}

.inner-hero .container {
    position: relative
}

.inner-hero h1 {
    max-width: 900px
}

.inner-hero .lead {
    max-width: 650px
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    color: #695776;
    font-size: .84rem
}

.breadcrumbs a {
    color: var(--mint)
}

.split {
    display: grid;
    grid-template-columns:1.05fr .95fr;
    gap: clamp(40px, 7vw, 92px);
    align-items: center
}

.media-frame {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--ink)
}

.media-frame img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover
}

.media-frame.tall img {
    aspect-ratio: 4/5
}

.media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: inherit;
    pointer-events: none
}

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

.card {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: .25s var(--ease)
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    border-color: transparent
}

.card-number {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--ink);
    font-weight: 900
}

.card p {
    color: var(--muted)
}

.dark-band {
    background: var(--ink);
    color: var(--white)
}

.dark-band h2, .dark-band h3 {
    color: var(--white)
}

.quote {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.7rem);
    line-height: 1.22;
    letter-spacing: -.03em
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    list-style: none
}

.pill-list li {
    padding: 9px 14px;
    background: rgba(201, 183, 238, .16);
    border: 1px solid rgba(201, 183, 238, .35);
    border-radius: 99px;
    color: var(--ink)
}

.tabs {
    display: flex;
    gap: 8px;
    padding: 6px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 12px;
    width: max-content;
    max-width: 100%;
    margin-bottom: 24px
}

.tab {
    border: 0;
    background: transparent;
    color: var(--muted);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer
}

.tab.active {
    background: var(--ink);
    color: var(--white)
}

[role="tabpanel"] {
    display: none
}

[role="tabpanel"].active {
    display: block
}

.price-panel {
    padding: 38px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md)
}

.price {
    font-family: "DM Sans";
    font-weight: 800;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    color: var(--ink)
}

.price small {
    font: 600 .9rem Manrope;
    color: var(--muted)
}

.form-shell {
    padding: clamp(28px, 5vw, 58px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm)
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.field.full {
    grid-column: 1/-1
}

.field label, .group-label {
    color: var(--ink);
    font-size: .88rem;
    font-weight: 800
}

.form-control {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid #c9bfd2;
    border-radius: var(--r-sm);
    background: var(--white);
    color: var(--text);
    transition: .2s
}

.form-control:hover {
    border-color: #887795
}

.form-control:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(216, 241, 90, .12);
    outline: 0
}

textarea.form-control {
    min-height: 140px;
    resize: vertical
}

.radio-row {
    display: flex;
    gap: 20px;
    min-height: 52px;
    align-items: center
}

.radio-row label {
    display: flex;
    gap: 8px;
    align-items: center
}

.flash {
    padding: 14px 18px;
    margin-top: 16px;
    border: 1px solid #8d7bb8;
    border-radius: var(--r-sm);
    background: #f0ebff;
    color: #4b3865;
    font-weight: 700
}

.contact-band {
    display: grid;
    grid-template-columns:.8fr 1.2fr;
    gap: 60px;
    align-items: start
}

.contact-band a {
    color: var(--mint)
}

.faq-layout {
    display: grid;
    grid-template-columns:.72fr 1.28fr;
    gap: 60px;
    align-items: start
}

.faq-aside {
    position: sticky;
    top: 110px
}

.faq-item {
    border-top: 1px solid var(--border)
}

.faq-item:last-child {
    border-bottom: 1px solid var(--border)
}

.faq-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border: 0;
    background: none;
    text-align: left;
    color: var(--ink);
    font-weight: 800;
    cursor: pointer
}

.faq-button::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--coral);
    transition: .2s
}

.faq-item.is-open .faq-button::after {
    transform: rotate(45deg)
}

.faq-answer {
    display: grid;
    grid-template-rows:0fr;
    transition: grid-template-rows .3s var(--ease)
}

.faq-answer > div {
    overflow: hidden
}

.faq-answer p {
    padding: 0 40px 22px 0;
    color: var(--muted)
}

.faq-item.is-open .faq-answer {
    grid-template-rows:1fr
}

.prose {
    max-width: 72ch;
    margin: auto
}

.prose h2 {
    margin-top: 1.5em;
    font-size: clamp(1.45rem, 2.5vw, 2.2rem)
}

.prose h3 {
    margin-top: 1.5em
}

.prose li {
    margin-bottom: .6em
}

.notice {
    padding: 24px;
    border-left: 4px solid var(--coral);
    background: var(--white);
    box-shadow: var(--shadow-sm)
}

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

.country-group {
    padding: 22px;
    background: var(--white);
    border-top: 3px solid var(--mint)
}

.country-group h3 {
    color: var(--coral-dark)
}

.country-group p {
    color: var(--muted);
    font-size: .9rem
}

.site-footer {
    padding: 72px 0 28px;
    background: #21122f;
    color: #d9d0e4
}

.footer-grid {
    display: grid;
    grid-template-columns:1.35fr .7fr .7fr 1fr;
    gap: 42px
}

.site-footer h3 {
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 0
}

.site-footer ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.site-footer li {
    margin: .5em 0
}

.site-footer a {
    color: #d9d0e4;
    text-decoration: none
}

.site-footer a:hover {
    color: var(--coral)
}

.footer-brand {
    width: 220px;
    margin-bottom: 20px
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .82rem
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s var(--ease), transform .6s var(--ease)
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

@media (max-width: 900px) {
    .container {
        width: min(calc(100% - 32px), var(--container))
    }

    .menu-toggle {
        display: block
    }

    .site-nav {
        position: fixed;
        inset: 78px 0 auto;
        display: grid;
        gap: 2px;
        padding: 20px 16px 26px;
        background: var(--cream);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        transform: translateY(-130%);
        visibility: hidden;
        transition: .3s var(--ease)
    }

    .site-nav.is-open {
        transform: none;
        visibility: visible
    }

    .site-nav a {
        padding: 13px 16px
    }

    .hero {
        min-height: 620px
    }

    .hero::after {
        background: linear-gradient(90deg, rgba(30, 14, 43, .93), rgba(30, 14, 43, .65))
    }

    .split, .contact-band, .faq-layout {
        grid-template-columns:1fr
    }

    .faq-aside {
        position: static
    }

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

    .country-grid {
        grid-template-columns:repeat(3, 1fr)
    }

    .footer-grid {
        grid-template-columns:1.2fr 1fr 1fr
    }

    .footer-grid > div:last-child {
        grid-column: 1/-1
    }

    .section-head {
        display: block
    }

    .section-head .btn {
        margin-top: 20px
    }
}

@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 24px), var(--container))
    }

    .header-inner {
        height: 70px
    }

    .brand {
        width: 194px
    }

    .site-nav {
        inset: 70px 0 auto
    }

    .hero {
        min-height: 660px
    }

    .hero > img {
        object-position: 64% center
    }

    .hero::after {
        background: linear-gradient(90deg, rgba(30, 14, 43, .92), rgba(30, 14, 43, .72))
    }

    .hero-content {
        padding: 78px 0
    }

    .hero-metrics {
        gap: 18px;
        flex-wrap: wrap
    }

    .grid-3, .form-grid, .country-grid, .footer-grid {
        grid-template-columns:1fr
    }

    .field.full {
        grid-column: auto
    }

    .section {
        padding: 64px 0
    }

    .tabs {
        width: 100%;
        overflow-x: auto
    }

    .tab {
        flex: 1;
        white-space: nowrap
    }

    .contact-band {
        gap: 30px
    }

    .footer-grid > div:last-child {
        grid-column: auto
    }

    .footer-bottom {
        display: block
    }

    .actions .btn {
        width: 100%
    }

    .media-frame {
        border-radius: var(--r-md)
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto
    }

    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

/* Revised branding and hero system */
.brand {
    display: inline-flex;
    width: auto;
    align-items: center;
    gap: 10px;
    margin-right: auto;
    text-decoration: none;
    color: var(--ink)
}

.brand img {
    width: 42px;
    height: 42px;
    flex: 0 0 auto
}

.brand span, .footer-brand span {
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 1.16rem;
    font-weight: 800;
    letter-spacing: -.025em;
    white-space: nowrap
}

.footer-brand {
    display: flex;
    width: auto;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
    color: #f0eafa
}

.footer-brand img {
    width: 42px;
    height: 42px
}

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

.hero-content h1 {
    max-width: 930px
}

.hero-content .lead {
    max-width: 720px
}

.inner-hero {
    padding: clamp(52px, 6vw, 78px) 0;
    background: linear-gradient(115deg, #e4dcf5 0%, #f5f2ff 62%, #ddd3ee 100%);
    color: var(--text);
    border-bottom: 1px solid #cfc3dd
}

.inner-hero::before {
    width: 460px;
    height: 220px;
    right: -90px;
    top: -65px;
    border: 0;
    border-radius: 0;
    background: repeating-linear-gradient(90deg, transparent 0 34px, rgba(69, 37, 92, .08) 34px 35px), repeating-linear-gradient(0deg, transparent 0 34px, rgba(69, 37, 92, .08) 34px 35px);
    transform: rotate(-8deg)
}

.inner-hero .breadcrumbs {
    margin-bottom: 18px;
    color: #6f607b
}

.inner-hero .breadcrumbs a {
    color: #604073
}

.inner-hero .eyebrow {
    padding: 7px 11px;
    background: #2b163d;
    color: #d8f15a;
    border-radius: 4px;
    letter-spacing: .11em
}

.inner-hero .eyebrow::before {
    display: none
}

.inner-hero h1 {
    max-width: 1000px;
    margin-top: 18px;
    margin-bottom: .35em;
    color: var(--ink);
    font-size: clamp(2.5rem, 5vw, 4.8rem)
}

.inner-hero .lead {
    color: #63586c
}

@media (max-width: 600px) {
    .brand {
        width: auto
    }

    .brand img {
        width: 38px;
        height: 38px
    }

    .brand span {
        font-size: 1rem
    }

    .hero-content {
        width: min(calc(100% - 24px), var(--container))
    }

    .inner-hero {
        padding: 42px 0 48px
    }

    .inner-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.5rem)
    }
}
