:root {
    --blue: #2C4B78;
    --blue-deep: #16233A;
    --blue-tint: #DCE6F3;
    --blue-tint-2: #C7D8ED;
    --purple: #963D68;
    --purple-tint: #F3E1EA;
    --purple-tint-2: #E9C7DA;
    --white: #FFFFFF;
    --ink: #20304A;
    --ink-soft: rgba(32,48,74,0.66);
    --ink-faint: rgba(32,48,74,0.42);
    --ink-on-dark: #FFFFFF;
    --ink-on-dark-soft: rgba(255,255,255,0.78);
    --ink-on-dark-faint: rgba(255,255,255,0.55);
    --line: rgba(44,75,120,0.18);
    --line-purple: rgba(150,61,104,0.28);
    --line-on-dark: rgba(255,255,255,0.38);
    --shadow-soft: 0 10px 28px rgba(20,30,50,0.08);
    --shadow-lift: 0 18px 40px rgba(20,30,50,0.13);
    --font-display: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}

#vortex-contact-root {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

::selection {
    background: var(--purple-tint-2);
    color: var(--blue-deep);
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    color: inherit;
}

:focus-visible {
    outline: 2px solid var(--purple);
    outline-offset: 3px;
}

.vx-section {
    position: relative;
    width: 100%;
    padding: 140px 8vw;
}

@media (max-width: 900px) {
    .vx-section {
        padding: 100px 6vw;
    }
}

.vx-eyebrow {
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--purple);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

    .vx-eyebrow::before {
        content: "";
        width: 28px;
        height: 1px;
        background: var(--blue);
    }

.vx-heading {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.2rem, 4.6vw, 4.2rem);
    line-height: 1.08;
    color: var(--blue-deep);
    letter-spacing: -0.01em;
    max-width: 900px;
}

    .vx-heading em {
        font-style: italic;
        color: var(--purple);
        font-weight: 400;
    }

.vx-sub {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 560px;
    margin-top: 22px;
}

/* Sections whose canvas is blue/purple-dominant need the heading block
   flipped to light text so it stays legible on the darker gradient. */
.vx-project-section .vx-eyebrow,
.vx-inquiry-section .vx-eyebrow,
.vx-faq-section .vx-eyebrow {
    color: var(--purple-tint-2);
}

    .vx-project-section .vx-eyebrow::before,
    .vx-inquiry-section .vx-eyebrow::before,
    .vx-faq-section .vx-eyebrow::before {
        background: var(--line-on-dark);
    }

.vx-project-section .vx-heading,
.vx-inquiry-section .vx-heading,
.vx-faq-section .vx-heading {
    color: var(--white);
}

    .vx-project-section .vx-heading em,
    .vx-inquiry-section .vx-heading em,
    .vx-faq-section .vx-heading em {
        color: var(--purple-tint-2);
    }

.vx-project-section .vx-sub,
.vx-inquiry-section .vx-sub,
.vx-faq-section .vx-sub {
    color: var(--ink-on-dark-soft);
}

.vx-project-section .vx-selection-note {
    color: var(--ink-on-dark-faint);
}

    .vx-project-section .vx-selection-note strong {
        color: var(--white);
    }

/* ============ blueprint grid (signature motif) ============ */
.vx-blueprint-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(44,75,120,0.10) 1px, transparent 1px), linear-gradient(90deg, rgba(44,75,120,0.10) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 90%);
    opacity: 0.6;
    pointer-events: none;
}

/* ================= SECTION 01 — HERO ================= */
.vx-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8vw;
    padding-top: 75px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 55%, var(--blue-tint) 82%, var(--blue) 100%);
}

.vx-hero-scene {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

    .vx-hero-scene::before {
        content: "";
        position: absolute;
        width: 60%;
        height: 75%;
        right: -12%;
        top: -10%;
        background: rgba(44,75,120,0.08);
        border-radius: 62% 38% 55% 45% / 48% 42% 58% 52%;
    }

    .vx-hero-scene::after {
        content: "";
        position: absolute;
        width: 34%;
        height: 48%;
        left: 2%;
        bottom: -8%;
        background: rgba(150,61,104,0.10);
        border-radius: 40% 60% 45% 55% / 55% 45% 55% 45%;
    }

.vx-lightray {
    position: absolute;
    width: 46%;
    height: 1px;
    top: 22%;
    right: 6%;
    background: rgba(44,75,120,0.22);
    transform: rotate(-8deg);
}

.vx-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--purple);
    opacity: 0.3;
}

.vx-hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 4vw;
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 980px) {
    .vx-hero-content {
        grid-template-columns: 1fr;
    }
}

.vx-hero-heading {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.6vw, 5.2rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--blue-deep);
    letter-spacing: -0.015em;
}

    .vx-hero-heading .vx-accent {
        font-style: italic;
        color: var(--purple);
        font-weight: 400;
    }

.vx-hero-sub {
    margin-top: 26px;
    font-weight: 300;
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 520px;
}

.vx-cta-row {
    display: flex;
    gap: 18px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.vx-btn {
    position: relative;
    padding: 17px 34px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), background .3s ease, border-color .3s ease, color .3s ease;
}

.vx-btn-primary {
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
}

    .vx-btn-primary:hover {
        background: var(--blue-deep);
        border-color: var(--blue-deep);
        transform: translateY(-3px);
    }

.vx-btn-secondary {
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--blue);
}

    .vx-btn-secondary:hover {
        border-color: var(--blue);
        transform: translateY(-3px);
    }

.vx-btn-tertiary {
    background: var(--white);
    border: 1px solid var(--line-purple);
    color: var(--purple);
}

    .vx-btn-tertiary:hover {
        border-color: var(--purple);
        transform: translateY(-3px);
    }

.vx-hero-orb-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
}

.vx-orb-ring {
    position: absolute;
    border: 1px solid var(--line);
    border-radius: 50%;
}

    .vx-orb-ring.r1 {
        width: 340px;
        height: 340px;
    }

    .vx-orb-ring.r2 {
        width: 260px;
        height: 260px;
        border-style: dashed;
        opacity: 0.6;
    }

    .vx-orb-ring.r3 {
        width: 400px;
        height: 400px;
        border-color: var(--line-purple);
    }

.vx-orb-glass {
    position: relative;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.vx-logo-mark {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--blue);
    letter-spacing: 0.02em;
}

.vx-scroll-indicator {
    position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

    .vx-scroll-indicator span {
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 0.25em;
        color: var(--ink-faint);
        text-transform: uppercase;
    }

.vx-scroll-line {
    width: 1px;
    height: 50px;
    background: var(--line);
    position: relative;
    overflow: hidden;
}

    .vx-scroll-line::after {
        content: "";
        position: absolute;
        top: -50%;
        left: 0;
        width: 100%;
        height: 50%;
        background: var(--purple);
        animation: vxscroll 1.8s ease-in-out infinite;
    }

@keyframes vxscroll {
    0% {
        top: -50%;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* ================= SECTION 02 — PROJECT CARDS =================
   Blue-dominant (~65%), diagonal blend down to white, with a
   translucent white diagonal plane and purple line-work accent. */
.vx-project-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue) 45%, var(--blue-tint) 80%, #FFFFFF 100%);
}

    .vx-project-section::before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 46%;
        height: 60%;
        background: rgba(255,255,255,0.55);
        clip-path: polygon(38% 100%, 100% 40%, 100% 100%);
        z-index: 0;
        pointer-events: none;
    }

    .vx-project-section::after {
        content: "";
        position: absolute;
        top: 8%;
        left: -6%;
        width: 50%;
        height: 3px;
        background: rgba(212,140,174,0.5);
        transform: rotate(-14deg);
        z-index: 0;
        pointer-events: none;
    }

    .vx-project-section > * {
        position: relative;
        z-index: 1;
    }

.vx-section-head {
    text-align: left;
    max-width: 720px;
    margin: 0 0 64px 0;
}

/* ---- Service showcase: asymmetrical, image-led bento grid ---- */
.vx-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 130px;
    grid-auto-flow: dense;
    gap: 22px;
}

@media (max-width: 980px) {
    .vx-card-grid {
        grid-template-columns: repeat(2,1fr);
        grid-auto-rows: 190px;
    }
}

@media (max-width: 620px) {
    .vx-card-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
}

.vx-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: var(--blue-deep);
    border: 1px solid rgba(255,255,255,0.14);
    display: flex;
    flex-direction: column;
    transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease, border-color .4s ease;
    box-shadow: var(--shadow-soft);
}

    .vx-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lift);
        border-color: var(--purple);
    }

    .vx-card.is-selected {
        border-color: var(--purple);
        box-shadow: 0 0 0 2px var(--purple), var(--shadow-lift);
    }

.vx-card--hero {
    grid-column: span 2;
    grid-row: span 2;
}

.vx-card--wide {
    grid-column: span 2;
    grid-row: span 1;
}

.vx-card--tall {
    grid-column: span 1;
    grid-row: span 2;
}

.vx-card--std {
    grid-column: span 1;
    grid-row: span 1;
}

@media (max-width: 620px) {
    .vx-card--hero, .vx-card--wide, .vx-card--tall, .vx-card--std {
        grid-column: span 1;
        grid-row: span 1;
    }

    .vx-card--hero {
        grid-row: span 2;
    }
}

.vx-card-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

    .vx-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.02);
        transition: transform .8s cubic-bezier(.2,.8,.2,1);
        filter: saturate(0.94) contrast(1.03);
    }

.vx-card:hover .vx-card-media img {
    transform: scale(1.1);
}

/* matte, brand-tinted scrim for legibility — never a glass/blur effect */
.vx-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(185deg, rgba(22,35,58,0.04) 0%, rgba(22,35,58,0.32) 55%, rgba(22,35,58,0.88) 100%);
    transition: background .5s ease;
}

.vx-card:hover .vx-card-media::after {
    background: linear-gradient(185deg, rgba(150,61,104,0.10) 0%, rgba(22,35,58,0.38) 55%, rgba(22,35,58,0.92) 100%);
}

/* graceful fallback until a photo asset is wired up for a given service */
.vx-card-media.img-fallback {
    background: linear-gradient(155deg, var(--blue) 0%, var(--blue-deep) 100%);
}

    .vx-card-media.img-fallback img {
        display: none;
    }

    .vx-card-media.img-fallback::before {
        content: attr(data-fallback-label);
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-mono);
        font-size: 10.5px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.28);
        text-align: center;
        padding: 20px;
    }

.vx-check-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.4);
    transition: opacity .35s ease, transform .35s cubic-bezier(.2,.8,.3,1.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.vx-card.is-selected .vx-check-badge {
    opacity: 1;
    transform: scale(1);
}

.vx-check-badge svg {
    width: 14px;
    height: 14px;
    color: var(--white);
}

.vx-card-body {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 22px 24px;
    color: var(--white);
}

.vx-card-index {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.6);
    display: block;
    margin-bottom: 8px;
}

.vx-card-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.05rem, 1.6vw, 1.4rem);
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.15;
}

.vx-card--hero .vx-card-title {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    max-width: 16ch;
}

.vx-card-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.72);
    max-width: 36ch;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .45s ease, opacity .35s ease, margin-top .45s ease;
}

.vx-card:hover .vx-card-desc, .vx-card.is-selected .vx-card-desc {
    max-height: 80px;
    opacity: 1;
    margin-top: 6px;
}

.vx-card-arrow {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.35);
    padding-bottom: 4px;
    width: fit-content;
}

    .vx-card-arrow svg {
        width: 13px;
        height: 13px;
        transition: transform .35s ease;
    }

.vx-card:hover .vx-card-arrow svg {
    transform: translateX(5px);
}

.vx-selection-note {
    margin-top: 40px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ================= SECTION 03 — CONTACT CENTER =================
   White-dominant (~70%), soft diagonal wash toward blue+purple at
   the far corner, technical grid, purple curved accent. */
.vx-contact-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 58%, var(--blue-tint) 82%, var(--purple-tint) 100%);
}

    .vx-contact-section .vx-section-head {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .vx-contact-section .vx-eyebrow {
        justify-content: center;
    }

        .vx-contact-section .vx-eyebrow::before {
            display: none;
        }

    .vx-contact-section .vx-heading {
        margin: 0 auto;
    }

    .vx-contact-section .vx-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .vx-contact-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(44,75,120,0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(44,75,120,0.09) 1px, transparent 1px);
        background-size: 56px 56px;
        mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 30%, transparent 85%);
        z-index: 0;
        pointer-events: none;
    }

    .vx-contact-section::after {
        content: "";
        position: absolute;
        width: 40%;
        height: 55%;
        right: -8%;
        bottom: -12%;
        background: rgba(150,61,104,0.10);
        border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
        z-index: 0;
        pointer-events: none;
    }

    .vx-contact-section > * {
        position: relative;
        z-index: 1;
    }

.vx-dashboard {
    position: relative;
    max-width: 1200px;
    margin: 90px auto 0;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vx-dashboard-core {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    z-index: 5;
}

    .vx-dashboard-core span {
        font-family: var(--font-display);
        font-size: 1.7rem;
        color: var(--blue);
    }

.vx-connect-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

    .vx-connect-lines path {
        fill: none;
        stroke: var(--line);
        stroke-width: 1;
        stroke-dasharray: 6 6;
    }

.vx-panel {
    position: absolute;
    width: 250px;
    padding: 26px 24px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    text-align: left;
    z-index: 4;
    transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}

    .vx-panel:hover {
        border-color: var(--purple);
        box-shadow: var(--shadow-lift);
        transform: translateY(-4px);
    }

.vx-panel-icon {
    width: 34px;
    height: 34px;
    color: var(--blue);
    margin-bottom: 14px;
    transition: transform .4s ease, color .3s ease;
}

.vx-panel:hover .vx-panel-icon {
    transform: rotate(-8deg);
    color: var(--purple);
}

.vx-panel-icon svg {
    width: 100%;
    height: 100%;
}

.vx-panel-title {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 8px;
}

.vx-panel-info {
    font-size: 0.92rem;
    color: var(--blue-deep);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 16px;
}

.vx-panel-action {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 3px;
    transition: color .3s ease, border-color .3s ease;
}

    .vx-panel-action:hover {
        color: var(--purple);
        border-color: var(--purple);
    }

.vx-panel-copied {
    position: absolute;
    top: 12px;
    right: 14px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--purple);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .3s ease, transform .3s ease;
}

    .vx-panel-copied.show {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 1080px) {
    .vx-dashboard {
        display: grid;
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 18px;
        min-height: auto;
        margin-top: 50px;
        padding-top: 0;
    }

    .vx-dashboard-core {
        display: none;
    }

    .vx-connect-lines {
        display: none;
    }

    .vx-panel {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: auto;
        max-width: none;
    }

        .vx-panel:hover {
            transform: translateY(-2px) !important;
        }
}

@media (max-width: 620px) {
    .vx-dashboard {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .vx-panel {
        padding: 24px 20px;
    }

    .vx-panel-info {
        font-size: 0.95rem;
    }

    .vx-panel-action {
        font-size: 12px;
        padding: 6px 0 8px;
    }
}

@media (max-width: 400px) {
    .vx-panel {
        padding: 22px 18px;
        border-radius: 14px;
    }
}

.vx-reduce-motion {
    animation: none !important;
    transition: none !important;
}

/* ================= SECTION 04 — PROJECT BUILDER ================= */
.vx-builder-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #FFFFFF 0%, var(--blue-tint) 50%, #FFFFFF 100%);
}

    .vx-builder-section .vx-blueprint-grid {
        opacity: 0.4;
    }

    .vx-builder-section::before {
        content: "";
        position: absolute;
        width: 30%;
        height: 40%;
        right: 6%;
        top: 8%;
        background: rgba(255,255,255,0.9);
        border: 1px solid var(--line);
        border-radius: 18px;
        transform: rotate(-3deg);
        z-index: 0;
        pointer-events: none;
    }

    .vx-builder-section::after {
        content: "";
        position: absolute;
        width: 24%;
        height: 30%;
        left: -4%;
        bottom: 6%;
        background: rgba(150,61,104,0.09);
        border-radius: 18px;
        transform: rotate(6deg);
        z-index: 0;
        pointer-events: none;
    }

.vx-builder-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 68% 30%;
    gap: 2%;
    align-items: start;
    margin-top: 60px;
}

@media (max-width: 1080px) {
    .vx-builder-grid {
        grid-template-columns: 1fr;
    }
}

.vx-progress-wrap {
    grid-column: 1 / -1;
    margin-bottom: 46px;
}

.vx-progress-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 8px;
}

.vx-progress-step-label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--purple);
}

.vx-progress-pct {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-faint);
}

.vx-progress-track {
    position: relative;
    width: 100%;
    height: 3px;
    background: var(--blue-tint-2);
    border-radius: 2px;
    overflow: hidden;
}

.vx-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--purple);
    border-radius: 2px;
    transition: width .7s cubic-bezier(.3,.8,.3,1);
}

.vx-progress-nodes {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.vx-progress-node {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line);
    transition: background .4s ease, border-color .4s ease, transform .4s ease;
}

    .vx-progress-node.is-done {
        background: var(--blue);
        border-color: var(--blue);
    }

    .vx-progress-node.is-active {
        transform: scale(1.5);
        border-color: var(--purple);
        background: var(--purple);
    }

.vx-builder-panel {
    position: relative;
    z-index: 2;
    padding: 48px 44px;
    border-radius: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    min-height: 480px;
    overflow: hidden;
}

@media (max-width: 620px) {
    .vx-builder-panel {
        padding: 34px 22px;
    }
}

.vx-step {
    display: none;
}

    .vx-step.is-active {
        display: block;
    }

.vx-step-question {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 500;
    color: var(--blue-deep);
    margin-bottom: 8px;
}

.vx-step-hint {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--ink-soft);
    margin-bottom: 36px;
}

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

@media (max-width: 780px) {
    .vx-choice-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 480px) {
    .vx-choice-grid {
        grid-template-columns: 1fr;
    }
}

.vx-choice-card {
    position: relative;
    padding: 26px 22px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    cursor: pointer;
    transition: border-color .35s ease, box-shadow .35s ease, transform .3s ease, background .35s ease;
}

    .vx-choice-card:hover {
        border-color: var(--blue);
        transform: translateY(-3px);
        box-shadow: var(--shadow-soft);
    }

    .vx-choice-card.is-selected {
        border-color: var(--purple);
        background: var(--purple-tint);
        box-shadow: var(--shadow-soft);
    }

.vx-choice-icon {
    width: 38px;
    height: 38px;
    color: var(--blue);
    margin-bottom: 16px;
}

    .vx-choice-icon svg {
        width: 100%;
        height: 100%;
    }

.vx-choice-card.is-selected .vx-choice-icon {
    color: var(--purple);
}

.vx-choice-title {
    font-family: var(--font-display);
    font-size: 1.08rem;
    color: var(--blue-deep);
    margin-bottom: 6px;
}

.vx-choice-desc {
    font-size: 0.84rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

.vx-choice-check {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.4);
    transition: opacity .3s ease, transform .3s cubic-bezier(.2,.8,.3,1.4);
}

.vx-choice-card.is-selected .vx-choice-check {
    opacity: 1;
    transform: scale(1);
}

.vx-choice-check svg {
    width: 12px;
    height: 12px;
    color: var(--white);
}

.vx-service-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 780px) {
    .vx-service-mini-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 480px) {
    .vx-service-mini-grid {
        grid-template-columns: 1fr;
    }
}

.vx-service-mini {
    position: relative;
    padding: 18px 16px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: border-color .35s ease, background .35s ease, transform .3s ease;
}

    .vx-service-mini:hover {
        border-color: var(--blue);
        transform: translateY(-2px);
    }

    .vx-service-mini.is-selected {
        border-color: var(--purple);
        background: var(--purple-tint);
    }

.vx-service-mini-icon {
    width: 26px;
    height: 26px;
    color: var(--blue);
    flex-shrink: 0;
}

    .vx-service-mini-icon svg {
        width: 100%;
        height: 100%;
    }

.vx-service-mini.is-selected .vx-service-mini-icon {
    color: var(--purple);
}

.vx-service-mini-title {
    font-size: 0.92rem;
    color: var(--blue-deep);
    font-weight: 500;
    margin-bottom: 2px;
}

.vx-service-mini-desc {
    font-size: 0.78rem;
    color: var(--ink-soft);
    line-height: 1.4;
}

.vx-service-mini-check {
    margin-left: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--purple);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.4);
    transition: opacity .3s ease, transform .3s ease;
}

.vx-service-mini.is-selected .vx-service-mini-check {
    opacity: 1;
    transform: scale(1);
}

.vx-service-mini-check svg {
    width: 10px;
    height: 10px;
    color: var(--white);
}

.vx-suggestion-row {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px dashed var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.vx-suggestion-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-right: 6px;
}

.vx-chip {
    font-size: 0.82rem;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px dashed var(--line-purple);
    color: var(--purple);
    background: var(--purple-tint);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background .3s ease, border-style .3s ease;
}

    .vx-chip:hover {
        background: var(--purple-tint-2);
        border-style: solid;
    }

    .vx-chip.is-added {
        opacity: 0.4;
        pointer-events: none;
    }

.vx-size-custom {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.vx-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 160px;
}

    .vx-field label {
        font-family: var(--font-mono);
        font-size: 10.5px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--ink-faint);
    }

    .vx-field input, .vx-field select, .vx-field textarea {
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 13px 16px;
        color: var(--blue-deep);
        font-family: var(--font-body);
        font-size: 0.94rem;
        transition: border-color .3s ease, background .3s ease;
        width: 100%;
    }

        .vx-field input:focus, .vx-field select:focus, .vx-field textarea:focus {
            border-color: var(--purple);
            outline: none;
        }

    .vx-field select {
        cursor: pointer;
    }

.vx-field-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.vx-map-preview {
    margin-top: 24px;
    position: relative;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: repeating-linear-gradient(0deg, rgba(44,75,120,0.12) 0 1px, transparent 1px 32px), repeating-linear-gradient(90deg, rgba(44,75,120,0.12) 0 1px, transparent 1px 32px), var(--blue-tint);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vx-map-pin {
    width: 34px;
    height: 34px;
    color: var(--purple);
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity .5s ease, transform .5s cubic-bezier(.2,.8,.3,1.4);
}

    .vx-map-pin.is-dropped {
        opacity: 1;
        transform: translateY(0);
    }

    .vx-map-pin svg {
        width: 100%;
        height: 100%;
    }

.vx-map-note {
    position: absolute;
    bottom: 12px;
    left: 14px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    color: var(--ink-faint);
}

.vx-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 10px;
}

    .vx-timeline::before {
        content: "";
        position: absolute;
        top: 24px;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--line);
    }

.vx-timeline-fill {
    position: absolute;
    top: 24px;
    left: 0;
    height: 1px;
    background: var(--purple);
    width: 0%;
    transition: width .6s ease;
}

.vx-timeline-node {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    padding: 0 4px;
}

.vx-timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--line);
    margin-bottom: 14px;
    transition: border-color .35s ease, background .35s ease, transform .35s ease;
    z-index: 2;
}

.vx-timeline-node.is-selected .vx-timeline-dot {
    background: var(--purple);
    border-color: var(--purple);
    transform: scale(1.3);
}

.vx-timeline-label {
    font-size: 0.82rem;
    color: var(--ink-soft);
    line-height: 1.35;
    transition: color .3s ease;
}

.vx-timeline-node.is-selected .vx-timeline-label {
    color: var(--purple);
    font-weight: 500;
}

@media (max-width: 780px) {
    .vx-timeline {
        flex-wrap: wrap;
        row-gap: 24px;
    }

        .vx-timeline::before, .vx-timeline-fill {
            display: none;
        }

    .vx-timeline-node {
        flex: 0 0 30%;
    }
}

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

@media (max-width:780px) {
    .vx-budget-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:480px) {
    .vx-budget-grid {
        grid-template-columns: 1fr;
    }
}

.vx-budget-card {
    padding: 20px 18px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    cursor: pointer;
    text-align: center;
    font-size: 0.9rem;
    color: var(--ink-soft);
    transition: border-color .35s ease, background .35s ease, transform .3s ease;
}

    .vx-budget-card:hover {
        transform: translateY(-2px);
        border-color: var(--blue);
    }

    .vx-budget-card.is-selected {
        border-color: var(--purple);
        color: var(--blue-deep);
        background: var(--purple-tint);
    }

.vx-textarea-wrap {
    position: relative;
}

    .vx-textarea-wrap textarea {
        resize: none;
        overflow: hidden;
        min-height: 130px;
        line-height: 1.6;
    }

.vx-char-count {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--ink-faint);
}

.vx-voice-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--purple-tint);
    border: 1px solid var(--line-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    transition: background .3s ease;
}

    .vx-voice-btn:hover {
        background: var(--purple-tint-2);
    }

    .vx-voice-btn svg {
        width: 15px;
        height: 15px;
    }

.vx-upload-zone {
    margin-top: 26px;
    border: 1.5px dashed var(--line);
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    background: var(--blue-tint);
    transition: border-color .3s ease, background .3s ease;
    cursor: pointer;
}

    .vx-upload-zone.is-dragover {
        border-color: var(--purple);
        background: var(--purple-tint);
    }

.vx-upload-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    color: var(--blue);
}

    .vx-upload-icon svg {
        width: 100%;
        height: 100%;
    }

.vx-upload-text {
    font-size: 0.92rem;
    color: var(--ink-soft);
}

    .vx-upload-text strong {
        color: var(--purple);
    }

.vx-upload-sub {
    font-size: 0.78rem;
    color: var(--ink-faint);
    margin-top: 6px;
}

.vx-file-list {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vx-file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--line);
}

.vx-file-icon {
    width: 20px;
    height: 20px;
    color: var(--blue);
    flex-shrink: 0;
}

    .vx-file-icon svg {
        width: 100%;
        height: 100%;
    }

.vx-file-meta {
    flex: 1;
    min-width: 0;
}

.vx-file-name {
    font-size: 0.85rem;
    color: var(--blue-deep);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vx-file-bar {
    height: 3px;
    border-radius: 2px;
    background: var(--blue-tint-2);
    margin-top: 6px;
    overflow: hidden;
}

.vx-file-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--purple);
    transition: width .5s ease;
}

.vx-file-remove {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-faint);
    transition: background .3s ease, color .3s ease;
    flex-shrink: 0;
}

    .vx-file-remove:hover {
        background: var(--blue-tint);
        color: var(--blue-deep);
    }

    .vx-file-remove svg {
        width: 13px;
        height: 13px;
    }

.vx-file-done {
    color: var(--purple);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    opacity: 0;
    transition: opacity .3s ease;
}

    .vx-file-done.show {
        opacity: 1;
    }

    .vx-file-done svg {
        width: 100%;
        height: 100%;
    }

.vx-step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 44px;
    gap: 16px;
}

.vx-nav-btn {
    padding: 15px 30px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease, background .3s ease, border-color .3s ease;
}

    .vx-nav-btn svg {
        width: 15px;
        height: 15px;
    }

.vx-nav-back {
    background: var(--white);
    color: var(--ink-soft);
    border: 1px solid var(--line);
}

    .vx-nav-back:hover {
        color: var(--blue-deep);
        border-color: var(--blue);
    }

    .vx-nav-back:disabled {
        opacity: 0.3;
        pointer-events: none;
    }

.vx-nav-next {
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
}

    .vx-nav-next:hover {
        background: var(--blue-deep);
        border-color: var(--blue-deep);
        transform: translateY(-2px);
    }

    .vx-nav-next:disabled {
        opacity: 0.35;
        pointer-events: none;
    }

.vx-summary-panel {
    position: sticky;
    top: 32px;
    padding: 34px 28px;
    border-radius: 24px;
    background: var(--purple-tint);
    border: 1px solid var(--line-purple);
    box-shadow: var(--shadow-soft);
}

@media (max-width: 1080px) {
    .vx-summary-panel {
        position: static;
        margin-top: 32px;
    }
}

.vx-summary-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--blue-deep);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vx-progress-ring {
    width: 52px;
    height: 52px;
}

    .vx-progress-ring circle {
        fill: none;
        stroke-width: 4;
    }

.vx-ring-bg {
    stroke: var(--purple-tint-2);
}

.vx-ring-fill {
    stroke: var(--purple);
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset .6s ease;
}

.vx-ring-pct {
    font-family: var(--font-mono);
    font-size: 9px;
    fill: var(--purple);
    text-anchor: middle;
}

.vx-summary-row {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-purple);
}

    .vx-summary-row:last-child {
        border-bottom: none;
    }

.vx-summary-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 6px;
}

.vx-summary-value {
    font-size: 0.88rem;
    color: var(--blue-deep);
    line-height: 1.5;
}

    .vx-summary-value.is-empty {
        color: var(--ink-faint);
        font-style: italic;
    }

.vx-summary-tag {
    display: inline-block;
    font-size: 0.78rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line-purple);
    color: var(--purple);
    margin: 2px 4px 2px 0;
}

/* ================= SECTION 05 — INQUIRY FORM ================= */
.vx-inquiry-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, var(--purple) 0%, #7A3355 42%, var(--purple-tint) 78%, #FFFFFF 100%);
    opacity: 0.45;
    filter: grayscale(0.3);
    pointer-events: none;
    transition: opacity .7s ease, filter .7s ease;
}

    .vx-inquiry-section.is-unlocked {
        opacity: 1;
        filter: none;
        pointer-events: auto;
    }

    .vx-inquiry-section::before {
        content: "";
        position: absolute;
        top: 8%;
        left: 0;
        width: 100%;
        height: 58%;
        background: rgba(255,255,255,0.7);
        border-radius: 50% 50% 0 0 / 100% 100% 0 0;
        z-index: 0;
        pointer-events: none;
    }

    .vx-inquiry-section::after {
        content: "";
        position: absolute;
        top: 20%;
        left: -8%;
        width: 70%;
        height: 3px;
        background: rgba(44,75,120,0.4);
        border-radius: 50% 50% 0 0 / 100% 100% 0 0;
        z-index: 0;
        pointer-events: none;
    }

    .vx-inquiry-section > * {
        position: relative;
        z-index: 1;
    }

.vx-inquiry-panel {
    max-width: 980px;
    margin: 56px auto 0;
    padding: 50px 46px;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
    position: relative;
    overflow: hidden;
}

@media (max-width: 640px) {
    .vx-inquiry-panel {
        padding: 34px 22px;
    }
}

.vx-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 8px;
}

@media (max-width: 700px) {
    .vx-form-grid {
        grid-template-columns: 1fr;
    }
}

.vx-form-grid .vx-field.vx-span-2 {
    grid-column: 1 / -1;
}

.vx-time-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.vx-time-pill {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 0.85rem;
    color: var(--ink-soft);
    transition: border-color .3s ease, background .3s ease, color .3s ease;
}

    .vx-time-pill.is-selected {
        border-color: var(--purple);
        background: var(--purple-tint);
        color: var(--purple);
    }

.vx-consent-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 30px;
    font-size: 0.86rem;
    color: var(--ink-soft);
    cursor: pointer;
}

.vx-consent-box {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 2px;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease, border-color .3s ease;
}

    .vx-consent-box.is-checked {
        background: var(--purple);
        border-color: var(--purple);
    }

    .vx-consent-box svg {
        width: 12px;
        height: 12px;
        color: var(--white);
        opacity: 0;
        transition: opacity .2s ease;
    }

    .vx-consent-box.is-checked svg {
        opacity: 1;
    }

.vx-submit-row {
    margin-top: 34px;
}

.vx-submit-btn {
    padding: 18px 40px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: transform .3s ease, background .3s ease, opacity .3s ease;
}

    .vx-submit-btn:hover {
        background: var(--blue-deep);
        transform: translateY(-2px);
    }

    .vx-submit-btn:disabled {
        opacity: 0.4;
        pointer-events: none;
    }

.vx-success {
    display: none;
    text-align: center;
    padding: 20px 0 10px;
}

    .vx-success.is-active {
        display: block;
    }

.vx-inquiry-form.is-hidden {
    display: none;
}

.vx-success-mark {
    width: 96px;
    height: 96px;
    margin: 0 auto 30px;
    position: relative;
}

    .vx-success-mark svg {
        width: 100%;
        height: 100%;
    }

.vx-success-circle {
    fill: none;
    stroke: var(--blue);
    stroke-width: 2;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
}

.vx-success-check {
    fill: none;
    stroke: var(--purple);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
}

.vx-success.is-active .vx-success-circle {
    animation: vxdraw 0.9s ease forwards;
}

.vx-success.is-active .vx-success-check {
    animation: vxdraw 0.5s ease 0.7s forwards;
}

@keyframes vxdraw {
    to {
        stroke-dashoffset: 0;
    }
}

.vx-success-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem,3vw,2.6rem);
    color: var(--blue-deep);
    margin-bottom: 14px;
}

.vx-success-text {
    font-size: 0.98rem;
    color: var(--ink-soft);
    max-width: 480px;
    margin: 0 auto 34px;
    line-height: 1.7;
}

.vx-success-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.vx-success-btn {
    padding: 13px 26px;
    border-radius: 999px;
    font-size: 0.86rem;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    transition: border-color .3s ease, color .3s ease, transform .3s ease;
}

    .vx-success-btn:hover {
        border-color: var(--purple);
        color: var(--purple);
        transform: translateY(-2px);
    }

    .vx-success-btn.is-primary {
        background: var(--blue);
        border-color: var(--blue);
        color: var(--white);
    }

/* ================= SECTION 06 — OFFICE LOCATION & COVERAGE ================= */
.vx-coverage-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(200deg, #FFFFFF 0%, #FFFFFF 60%, var(--blue-tint) 85%, var(--blue) 100%);
}

    .vx-coverage-section .vx-blueprint-grid {
        opacity: 0.5;
    }

    .vx-coverage-section::before {
        content: "";
        position: absolute;
        width: 36%;
        height: 50%;
        right: -6%;
        top: -12%;
        background: rgba(150,61,104,0.09);
        border-radius: 45% 55% 50% 50% / 50% 50% 55% 45%;
        z-index: 0;
        pointer-events: none;
    }

    .vx-coverage-section .vx-section-head {
        position: relative;
        z-index: 2;
    }

    .vx-coverage-section .vx-coverage-grid {
        position: relative;
        z-index: 2;
    }

.vx-coverage-grid {
    display: grid;
    grid-template-columns: 58% 39%;
    gap: 3%;
    margin-top: 60px;
    align-items: start;
}

@media (max-width: 1000px) {
    .vx-coverage-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.vx-map-frame {
    position: relative;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    min-height: 460px;
    aspect-ratio: 4/3.1;
}

@media (max-width: 1000px) {
    .vx-map-frame {
        min-height: 380px;
    }
}

.vx-map-canvas {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, rgba(44,75,120,0.10) 0 1px, transparent 1px 40px), repeating-linear-gradient(90deg, rgba(44,75,120,0.10) 0 1px, transparent 1px 40px), var(--white);
}

.vx-map-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    background: var(--white);
    z-index: 20;
    transition: opacity .6s ease, visibility .6s ease;
}

    .vx-map-loader.is-hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.vx-map-loader-ring {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--blue-tint-2);
    border-top-color: var(--purple);
    animation: vxspin 1s linear infinite;
}

@keyframes vxspin {
    to {
        transform: rotate(360deg);
    }
}

.vx-map-loader span {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.vx-map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.vx-map-route {
    fill: none;
    stroke: var(--line-purple);
    stroke-width: 1.4;
    stroke-dasharray: 5 6;
}

.vx-map-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%,-100%);
    cursor: default;
}

.vx-map-node-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--blue);
    transition: transform .3s ease, background .3s ease;
}

.vx-map-node:hover .vx-map-node-dot {
    transform: scale(1.6);
    background: var(--purple);
    border-color: var(--purple);
}

.vx-map-node-label {
    margin-top: 6px;
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.06em;
    color: var(--ink-faint);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .3s ease, transform .3s ease;
}

.vx-map-node:hover .vx-map-node-label {
    opacity: 1;
    transform: translateY(0);
    color: var(--purple);
}

.vx-map-office-pin {
    position: absolute;
    width: 46px;
    height: 56px;
    transform: translate(-50%,-100%);
    color: var(--purple);
}

    .vx-map-office-pin svg {
        width: 100%;
        height: 100%;
    }

.vx-map-office-pulse {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--line-purple);
    transform: translate(-50%,-50%);
    animation: vxpulse 2.2s ease-out infinite;
}

@keyframes vxpulse {
    0% {
        transform: translate(-50%,-50%) scale(0.6);
        opacity: 0.55;
    }

    100% {
        transform: translate(-50%,-50%) scale(3.2);
        opacity: 0;
    }
}

.vx-map-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    padding: 10px 16px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
    z-index: 10;
}

    .vx-map-badge strong {
        color: var(--purple);
    }

.vx-coverage-right > * + * {
    margin-top: 34px;
}

.vx-office-card {
    padding: 30px 28px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.vx-office-card-title {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 12px;
}

.vx-office-card-address {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--blue-deep);
    line-height: 1.5;
    margin-bottom: 20px;
}

.vx-coverage-list-title, .vx-process-title {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 16px;
}

.vx-coverage-chip-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

@media (max-width:480px) {
    .vx-coverage-chip-grid {
        grid-template-columns: 1fr;
    }
}

.vx-coverage-chip {
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    font-size: 0.86rem;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color .35s ease, transform .3s ease, box-shadow .35s ease, background .35s ease;
}

    .vx-coverage-chip:hover {
        border-color: var(--purple);
        transform: translateY(-2px);
        box-shadow: var(--shadow-soft);
        background: var(--purple-tint);
    }

    .vx-coverage-chip svg {
        width: 16px;
        height: 16px;
        color: var(--blue);
        flex-shrink: 0;
    }

.vx-process-row {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-top: 6px;
}

    .vx-process-row::before {
        content: "";
        position: absolute;
        top: 15px;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--line);
    }

.vx-process-fill {
    position: absolute;
    top: 15px;
    left: 0;
    height: 1px;
    width: 0%;
    background: var(--purple);
    transition: width 1.2s ease;
}

.vx-process-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.vx-process-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--line);
    margin-bottom: 12px;
}

.vx-process-step.is-lit .vx-process-dot {
    background: var(--purple);
    border-color: var(--purple);
}

.vx-process-label {
    font-size: 0.76rem;
    color: var(--ink-soft);
}

@media (max-width: 560px) {
    .vx-process-row {
        flex-wrap: wrap;
        row-gap: 20px;
    }

        .vx-process-row::before, .vx-process-fill {
            display: none;
        }

    .vx-process-step {
        flex: 0 0 30%;
    }
}

/* ================= SECTION 07 — FAQ ================= */
.vx-faq-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 35%, var(--purple) 75%, #7A3355 100%);
}

    .vx-faq-section::before {
        content: "";
        position: absolute;
        left: -12%;
        bottom: -22%;
        width: 60%;
        height: 78%;
        background: rgba(255,255,255,0.6);
        transform: rotate(-14deg);
        z-index: 0;
    }

    .vx-faq-section::after {
        content: "";
        position: absolute;
        right: -8%;
        top: -18%;
        width: 34%;
        height: 46%;
        background: rgba(255,255,255,0.14);
        border-radius: 50%;
        z-index: 0;
    }

    .vx-faq-section > * {
        position: relative;
        z-index: 1;
    }

.vx-faq-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5%;
    margin-top: 56px;
    align-items: start;
}

@media (max-width: 980px) {
    .vx-faq-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

.vx-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vx-faq-item {
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--white);
    overflow: hidden;
    transition: border-color .35s ease, box-shadow .35s ease;
    box-shadow: var(--shadow-soft);
}

    .vx-faq-item.is-open {
        border-color: var(--purple);
        box-shadow: var(--shadow-lift);
    }

.vx-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--blue-deep);
}

.vx-faq-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    transition: transform .4s ease, background .4s ease, color .3s ease, border-color .3s ease;
}

.vx-faq-item.is-open .vx-faq-icon {
    transform: rotate(135deg);
    background: var(--purple-tint);
    color: var(--purple);
    border-color: var(--purple);
}

.vx-faq-icon svg {
    width: 12px;
    height: 12px;
}

.vx-faq-a-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(.3,.8,.3,1);
}

.vx-faq-a {
    padding: 0 24px 22px;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.65;
}

.vx-faq-illustration {
    position: sticky;
    top: 40px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--white);
    padding: 20px;
}

@media (max-width: 980px) {
    .vx-faq-illustration {
        position: static;
    }
}

.vx-faq-illustration svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ================= SECTION 08 — FINAL CTA ================= */
.vx-final-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 6vw;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue) 0%, #FFFFFF 50%, var(--purple) 100%);
}

.vx-final-scene {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.vx-final-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    opacity: 0.5;
}

.vx-final-glow {
    position: absolute;
    bottom: -8%;
    left: 50%;
    transform: translateX(-50%);
    width: 62%;
    height: 42%;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}

.vx-cta-panel {
    position: relative;
    z-index: 3;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    padding: 64px 54px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
}

@media (max-width: 640px) {
    .vx-cta-panel {
        padding: 44px 26px;
    }
}

.vx-cta-panel .vx-eyebrow {
    justify-content: center;
}

    .vx-cta-panel .vx-eyebrow::before {
        display: none;
    }

.vx-cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    color: var(--blue-deep);
    line-height: 1.12;
    margin-bottom: 20px;
}

    .vx-cta-heading em {
        font-style: italic;
        color: var(--purple);
        font-weight: 400;
    }

.vx-cta-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--ink-soft);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.vx-cta-btn-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.vx-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 44px;
}

.vx-trust-chip {
    font-size: 0.78rem;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--blue-tint);
    color: var(--blue);
}

.vx-contact-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.vx-contact-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--ink-soft);
    cursor: pointer;
    transition: color .3s ease;
    position: relative;
}

    .vx-contact-bar-item:hover {
        color: var(--purple);
    }

    .vx-contact-bar-item svg {
        width: 17px;
        height: 17px;
        color: var(--blue);
        flex-shrink: 0;
    }

.vx-contact-bar-copied {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 9.5px;
    color: var(--purple);
    opacity: 0;
    transition: opacity .3s ease;
    white-space: nowrap;
}

    .vx-contact-bar-copied.show {
        opacity: 1;
    }

@media (max-width: 640px) {
    .vx-contact-bar {
        gap: 18px 22px;
    }

    .vx-contact-bar-item {
        font-size: 0.8rem;
    }
}
