:root {
    --bg: #07080c;
    --bg-soft: #0b0d14;
    --surface: #0f111a;
    --surface-2: #151927;
    --surface-3: #1a1f30;
    --blue: #5b62ff;
    --blue-soft: rgba(91, 98, 255, 0.15);
    --blue-line: rgba(91, 98, 255, 0.36);
    --lime: #d7ff4d;
    --lime-hover: #e4ff7a;
    --lime-soft: rgba(215, 255, 77, 0.13);
    --text: #f5f6fb;
    --text-muted: #a1a7bc;
    --text-faint: #747b93;
    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(255, 255, 255, 0.17);
    --danger: #ff7a91;
    --shadow: 0 32px 90px -36px rgba(0, 0, 0, 0.84);
    --shadow-blue: 0 32px 80px -40px rgba(91, 98, 255, 0.55);

    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
    --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);

    --press-duration: 140ms;
    --ui-duration: 220ms;
    --panel-duration: 320ms;
    --modal-open-duration: 380ms;
    --modal-close-duration: 220ms;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --wrap: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.modal-open {
    overflow: hidden;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

img,
svg {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
.brand,
.level-tag,
.result-name {
    font-family: "Space Grotesk", sans-serif;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

a {
    color: inherit;
}

::selection {
    background: var(--lime);
    color: #0b0d06;
}

:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 4px;
}

.wrap {
    width: min(100% - 56px, var(--wrap));
    margin-inline: auto;
}

.mono {
    font-family: "JetBrains Mono", monospace;
}

.pressable {
    transition: transform var(--press-duration) var(--ease-out);
}

.pressable:active {
    transform: scale(0.97);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--lime);
    color: #0b0d06;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform var(--ui-duration) var(--ease-out);
}

.skip-link:focus {
    transform: translateY(0);
}

/* Header */
.site-header {
    position: sticky;
    z-index: 80;
    top: 0;
    background: rgba(7, 8, 12, 0.76);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px) saturate(160%);
}

.nav {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--text);
    font-size: 15px;
    font-weight: 650;
    letter-spacing: -0.01em;
    text-decoration: none;
    white-space: nowrap;
}

.brand img,
.footer-brand img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.nav-links a,
.footer-links a,
.footer-meta a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 550;
    text-decoration: none;
    transition: color var(--press-duration) var(--ease-out);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-cta,
.cookie-button,
.summary-action {
    border: 0;
    cursor: pointer;
    font-weight: 750;
}

.nav-cta {
    min-height: 42px;
    padding: 0 19px;
    border-radius: 999px;
    background: var(--lime);
    color: #0a0c05;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: var(--surface);
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: var(--text);
    transition: transform var(--ui-duration) var(--ease-out), opacity var(--ui-duration) var(--ease-out);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
    display: grid;
    grid-template-rows: 0fr;
    background: rgba(7, 8, 12, 0.97);
    border-top: 1px solid transparent;
    opacity: 0;
    transition: grid-template-rows var(--panel-duration) var(--ease-drawer), opacity var(--ui-duration) var(--ease-out), border-color var(--ui-duration) var(--ease-out);
}

.mobile-menu.open {
    grid-template-rows: 1fr;
    border-color: var(--line);
    opacity: 1;
}

.mobile-menu nav {
    width: min(100% - 40px, var(--wrap));
    margin-inline: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mobile-menu a {
    padding: 16px 2px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
}

/* Shared buttons */
.btn-primary,
.btn-secondary {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    padding: 0 24px;
    border: 0;
    border-radius: 12px;
    background: var(--lime);
    color: #0a0c05;
    box-shadow: 0 16px 34px -20px rgba(215, 255, 77, 0.62);
    cursor: pointer;
    font-size: 15px;
    font-weight: 780;
    transition: transform var(--press-duration) var(--ease-out), background var(--press-duration) var(--ease-out), box-shadow var(--press-duration) var(--ease-out);
}

.btn-secondary {
    min-height: 50px;
    padding: 0 4px;
    border: 0;
    border-bottom: 1.5px solid var(--line-strong);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: transform var(--press-duration) var(--ease-out), color var(--press-duration) var(--ease-out), border-color var(--press-duration) var(--ease-out);
}

/* Hero */
.hero {
    position: relative;
    min-height: calc(100dvh - 70px);
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero::before {
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 12% 24%, rgba(255, 255, 255, 0.16), transparent 1.5px),
        radial-gradient(1px 1px at 74% 18%, rgba(255, 255, 255, 0.12), transparent 1.5px),
        radial-gradient(1px 1px at 86% 70%, rgba(255, 255, 255, 0.13), transparent 1.5px),
        radial-gradient(1px 1px at 34% 82%, rgba(255, 255, 255, 0.1), transparent 1.5px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 126px);
    mask-image: linear-gradient(to bottom, black, transparent 94%);
}

.hero::after {
    width: 600px;
    height: 600px;
    right: -260px;
    bottom: -320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91,98,255,0.18), transparent 68%);
    filter: blur(6px);
}

#heroGlow {
    position: absolute;
    z-index: 0;
    width: 650px;
    height: 650px;
    left: -325px;
    top: -325px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(closest-side, rgba(91,98,255,0.18), transparent 72%);
    filter: blur(12px);
    will-change: transform;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    align-items: center;
    gap: clamp(48px, 7vw, 92px);
    padding-block: 74px 70px;
}

.hero-copy {
    max-width: 690px;
}

.eyebrow,
.section-label {
    color: var(--lime);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.095em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 21px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 5px var(--lime-soft), 0 0 18px rgba(215,255,77,0.35);
}

.hero h1 {
    max-width: 680px;
    margin-bottom: 22px;
    font-size: clamp(41px, 5.2vw, 67px);
    font-weight: 620;
    letter-spacing: -0.045em;
    line-height: 1.03;
}

.accent {
    color: var(--lime);
}

.lead {
    max-width: 610px;
    margin-bottom: 31px;
    color: var(--text-muted);
    font-size: clamp(17px, 1.8vw, 19px);
    line-height: 1.68;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-proof {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 32px;
    color: var(--text-muted);
    font-size: 13px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-proof b {
    color: var(--lime);
}

.hero-visual {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.logo-stage {
    position: relative;
    z-index: 3;
    width: clamp(230px, 27vw, 326px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 42%;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01)),
        rgba(15,17,26,0.82);
    box-shadow: var(--shadow-blue), inset 0 1px 0 rgba(255,255,255,0.12);
    transform: rotate(-4deg);
    backdrop-filter: blur(22px) saturate(140%);
}

.logo-stage::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(91,98,255,0.25);
    border-radius: 38%;
}

.logo-stage img {
    position: relative;
    z-index: 2;
    width: 58%;
    height: 58%;
    object-fit: contain;
    filter: drop-shadow(0 24px 38px rgba(0,0,0,0.42));
    transform: rotate(4deg);
}

.logo-glow {
    position: absolute;
    width: 62%;
    height: 62%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(215,255,77,0.12), rgba(91,98,255,0.16) 48%, transparent 72%);
    filter: blur(12px);
}

.orbit {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    border: 1px solid rgba(91,98,255,0.24);
    transform: rotate(18deg);
}

.orbit::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 12%;
    left: 16%;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 16px rgba(215,255,77,0.7);
}

.orbit-one {
    width: 410px;
    height: 410px;
}

.orbit-two {
    width: 500px;
    height: 500px;
    border-color: rgba(255,255,255,0.08);
    transform: rotate(-24deg);
}

.orbit-two::before {
    width: 7px;
    height: 7px;
    top: auto;
    left: auto;
    right: 14%;
    bottom: 16%;
    background: var(--blue);
    box-shadow: 0 0 14px rgba(91,98,255,0.7);
}

.visual-chip {
    position: absolute;
    z-index: 4;
    min-width: 218px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: rgba(15,17,26,0.86);
    box-shadow: 0 18px 46px -28px rgba(0,0,0,0.9);
    backdrop-filter: blur(18px) saturate(140%);
}

.visual-chip strong,
.visual-chip small {
    display: block;
}

.visual-chip strong {
    color: var(--text);
    font-size: 13px;
}

.visual-chip small {
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 11px;
}

.chip-icon {
    width: 34px;
    height: 34px;
    display: grid;
    flex: none;
    place-items: center;
    border-radius: 10px;
    background: var(--blue-soft);
    color: #b9bcff;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
}

.chip-top {
    top: 53px;
    right: -10px;
}

.chip-bottom {
    left: -28px;
    bottom: 48px;
}

.hero-enter {
    opacity: 0;
    transform: translateY(18px);
    animation: heroEnter 720ms var(--ease-out) forwards;
    animation-delay: var(--enter-delay, 0ms);
}

@keyframes heroEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes orbitSpinOne {
    to { transform: rotate(378deg); }
}

@keyframes orbitSpinTwo {
    to { transform: rotate(-384deg); }
}

@media (prefers-reduced-motion: no-preference) {
    .orbit-one {
        animation: orbitSpinOne 28s linear infinite;
    }

    .orbit-two {
        animation: orbitSpinTwo 36s linear infinite;
    }
}

/* Audience strip */
.audience-strip {
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
}

.audience-inner {
    min-height: 104px;
    display: grid;
    grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 32px;
}

.audience-inner p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.audience-list {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.audience-list span {
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
}

/* Sections */
.expert-section,
.foundation,
.pricing,
.care,
.process,
.faq,
.contact {
    padding-block: 112px;
}

.foundation,
.care,
.faq {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
}

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

.section-label {
    margin-bottom: 13px;
}

.section-head h2,
.process-intro h2,
.contact-copy h2,
.final-cta h2 {
    margin-bottom: 16px;
    font-size: clamp(30px, 4vw, 47px);
    font-weight: 620;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.section-head p:not(.section-label),
.process-intro > p:not(.section-label),
.contact-copy > p:not(.section-label) {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.68;
}

/* Expert bento */
.expert-bento {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    grid-template-rows: repeat(2, minmax(220px, auto));
    gap: 18px;
}

.expert-card {
    position: relative;
    min-height: 220px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.expert-card-main {
    grid-row: 1 / span 2;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(460px 280px at 84% 12%, rgba(91,98,255,0.18), transparent 66%),
        var(--surface);
}

.expert-card-accent {
    background:
        radial-gradient(280px 180px at 100% 0%, rgba(215,255,77,0.12), transparent 70%),
        var(--surface-2);
}

.card-index {
    color: var(--lime);
    font-size: 12px;
}

.expert-card h3 {
    margin-bottom: 11px;
    font-size: 23px;
    font-weight: 620;
    letter-spacing: -0.02em;
}

.expert-card-main h3 {
    max-width: 510px;
    font-size: clamp(29px, 3.4vw, 42px);
}

.expert-card p {
    max-width: 560px;
    margin-bottom: 0;
    color: var(--text-muted);
    line-height: 1.65;
}

.authority-meter {
    max-width: 590px;
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    gap: 12px;
}

.meter-item {
    padding: 8px 11px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
}

.meter-item.active {
    background: var(--lime-soft);
    border-color: rgba(215,255,77,0.35);
    color: var(--lime);
}

.meter-line {
    height: 1px;
    background: linear-gradient(90deg, rgba(215,255,77,0.5), rgba(91,98,255,0.5));
}

/* Foundation */
.foundation-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--line);
}

.foundation-item {
    min-height: 214px;
    padding: 26px 23px;
    background: var(--surface);
}

.feature-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 10px;
    background: var(--blue-soft);
    color: #b9bcff;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
}

.foundation-item h3 {
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 620;
}

.foundation-item p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.58;
}

/* Pricing */
.pricing-summary {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 18px;
    padding: 18px 20px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.summary-label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-faint);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

#summaryPackage {
    font-family: "Space Grotesk", sans-serif;
    font-size: 17px;
}

.summary-action {
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--blue-soft);
    color: #c6c8ff;
}

.table-scroll {
    overflow-x: auto;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
    scrollbar-width: thin;
    scrollbar-color: var(--blue) var(--surface);
}

.price-table {
    width: 100%;
    min-width: 790px;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 22px 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

.price-table tr > *:last-child {
    border-right: 0;
}

.price-table tbody tr:last-child > * {
    border-bottom: 0;
}

.price-table thead th {
    background: var(--surface-2);
}

.price-table thead th:first-child {
    width: 220px;
    color: var(--text-muted);
    font-size: 13px;
}

.col-head small {
    display: block;
    margin-top: 7px;
    color: var(--text-muted);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 550;
}

.level-tag {
    display: inline-flex;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.level-basic .level-tag {
    background: rgba(255,255,255,0.08);
    color: var(--text-muted);
}

.level-standard .level-tag {
    background: var(--blue-soft);
    color: #c4c6ff;
}

.level-premium .level-tag {
    background: var(--lime-soft);
    color: var(--lime);
}

.row-head {
    background: #0c0e16;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 620;
}

.row-head span {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.price-cell {
    position: relative;
    min-width: 185px;
    cursor: pointer;
    transition: background var(--ui-duration) var(--ease-out);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price b {
    font-family: "JetBrains Mono", monospace;
    font-size: 25px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.price small {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 550;
}

.selection-ring {
    position: absolute;
    inset: 7px;
    pointer-events: none;
    border: 2px solid var(--lime);
    border-radius: 10px;
    opacity: 0;
    transform: scale(0.96);
}

.choice-badge {
    display: inline-flex;
    margin-top: 7px;
    color: var(--lime);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    opacity: 0;
    text-transform: uppercase;
}

.price-cell.highlight {
    background: #15190d;
}

.price-cell.highlight .selection-ring {
    animation: ringEnter 360ms cubic-bezier(0.18, 1.2, 0.32, 1) forwards;
}

.price-cell.highlight .choice-badge {
    opacity: 1;
    transition: opacity var(--panel-duration) var(--ease-out) 90ms;
}

@keyframes ringEnter {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    65% {
        opacity: 1;
        transform: scale(0.985);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.price-note {
    margin: 15px 0 0;
    color: var(--text-faint);
    font-size: 12px;
}

/* Care */
.care-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.1fr 0.95fr;
    align-items: stretch;
    gap: 18px;
}

.care-card {
    position: relative;
    padding: 30px 26px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: var(--surface);
    transition: transform var(--panel-duration) var(--ease-out), border-color var(--panel-duration) var(--ease-out), box-shadow var(--panel-duration) var(--ease-out);
}

.care-card-featured {
    transform: translateY(-12px);
    border-color: var(--blue-line);
    background:
        radial-gradient(320px 180px at 90% 0%, rgba(91,98,255,0.17), transparent 68%),
        var(--surface-2);
    box-shadow: var(--shadow-blue);
}

.care-card.match {
    border-color: var(--lime);
    box-shadow: 0 0 0 1px var(--lime), 0 24px 65px -34px rgba(215,255,77,0.35);
}

.care-match,
.recommended-tag {
    position: absolute;
    top: 0;
    right: 0;
    padding: 7px 13px;
    border-radius: 0 0 0 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.care-match {
    z-index: 2;
    background: var(--lime);
    color: #0b0d06;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity var(--panel-duration) var(--ease-out), transform var(--panel-duration) var(--ease-out);
}

.care-card.match .care-match {
    opacity: 1;
    transform: translateY(0);
}

.recommended-tag {
    background: var(--blue-soft);
    color: #c6c8ff;
}

.care-card.match .recommended-tag {
    opacity: 0;
}

.care-label {
    display: inline-flex;
    margin-bottom: 17px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.care-card[data-level="standard"] .care-label {
    background: var(--blue-soft);
    color: #c6c8ff;
}

.care-card[data-level="premium"] .care-label {
    background: var(--lime-soft);
    color: var(--lime);
}

.care-card h3 {
    margin-bottom: 9px;
    font-size: 23px;
    font-weight: 620;
}

.care-intro {
    min-height: 73px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.care-price {
    margin-bottom: 21px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
    color: var(--text-muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
}

.care-price b {
    color: var(--text);
    font-size: 20px;
}

.care-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.care-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}

.care-card li span {
    width: 18px;
    height: 18px;
    display: grid;
    flex: none;
    place-items: center;
    margin-top: 1px;
    border-radius: 5px;
    background: var(--blue-soft);
    color: #c6c8ff;
    font-size: 10px;
    font-weight: 800;
}

.care-card[data-level="premium"] li span {
    background: var(--lime-soft);
    color: var(--lime);
}

/* Process */
.process-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(48px, 8vw, 110px);
    align-items: start;
}

.process-intro {
    position: sticky;
    top: 116px;
}

.process-button {
    margin-top: 24px;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid var(--line);
}

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

.process-number {
    color: var(--lime);
    font-size: 13px;
}

.process-item h3 {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 620;
}

.process-item p {
    max-width: 540px;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

/* FAQ */
.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(45px, 8vw, 110px);
    align-items: start;
}

.faq-layout .section-head {
    margin-bottom: 0;
}

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

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

.faq-question {
    width: 100%;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 2px;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    font-family: "Space Grotesk", sans-serif;
    font-size: 17px;
    font-weight: 620;
}

.faq-plus {
    position: relative;
    width: 28px;
    height: 28px;
    flex: none;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    transition: transform var(--panel-duration) var(--ease-out), border-color var(--panel-duration) var(--ease-out);
}

.faq-plus::before,
.faq-plus::after {
    content: "";
    position: absolute;
    background: var(--text-muted);
    transition: background var(--panel-duration) var(--ease-out);
}

.faq-plus::before {
    top: 13px;
    left: 7px;
    width: 12px;
    height: 1.5px;
}

.faq-plus::after {
    top: 7px;
    left: 13px;
    width: 1.5px;
    height: 12px;
}

.faq-item.open .faq-plus {
    transform: rotate(135deg);
    border-color: var(--lime);
}

.faq-item.open .faq-plus::before,
.faq-item.open .faq-plus::after {
    background: var(--lime);
}

.faq-answer-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--panel-duration) var(--ease-out);
}

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

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-inner p {
    max-width: 680px;
    margin: 0 46px 23px 2px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.68;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(45px, 8vw, 110px);
    align-items: start;
}

.contact-copy {
    position: sticky;
    top: 116px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.contact-details a {
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 620;
    text-decoration: none;
}

.contact-details span {
    color: var(--text-faint);
    font-size: 12px;
}

.contact-form {
    padding: 30px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

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

.form-row label {
    color: var(--text);
    font-size: 13px;
    font-weight: 650;
}

.form-row label span {
    color: var(--text-faint);
    font-weight: 500;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    background: var(--surface-2);
    color: var(--text);
    transition: border-color var(--ui-duration) var(--ease-out), box-shadow var(--ui-duration) var(--ease-out), background var(--ui-duration) var(--ease-out);
}

input {
    min-height: 48px;
    padding: 0 14px;
}

textarea {
    min-height: 126px;
    padding: 13px 14px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #737a91;
    opacity: 1;
}

input:focus,
textarea:focus {
    outline: 0;
    border-color: var(--blue);
    background: #171b2a;
    box-shadow: 0 0 0 3px rgba(91,98,255,0.16);
}

input[readonly] {
    color: var(--lime);
    cursor: default;
}

input.invalid,
textarea.invalid {
    border-color: var(--danger);
}

.field-error {
    min-height: 0;
    color: var(--danger);
    font-size: 11px;
}

.field-error:not(:empty) {
    min-height: 16px;
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 12px;
    line-height: 1.5;
}

.consent-row input {
    width: 18px;
    min-height: 18px;
    height: 18px;
    flex: none;
    margin-top: 1px;
    accent-color: var(--lime);
}

.consent-error {
    display: block;
    margin: 5px 0 14px 28px;
}

.form-submit {
    width: 100%;
}

.form-status {
    min-height: 20px;
    margin: 12px 0 0;
    color: var(--lime);
    font-size: 12px;
    text-align: center;
}

/* Final CTA */
.final-cta {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 100px;
    padding: 50px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(500px 240px at 90% -10%, rgba(91,98,255,0.28), transparent 66%),
        radial-gradient(380px 220px at 4% 110%, rgba(215,255,77,0.12), transparent 64%),
        var(--surface);
}

.final-cta > * {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    max-width: 540px;
    margin-bottom: 10px;
}

.final-cta p {
    max-width: 530px;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--line);
    padding-block: 34px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-meta {
    display: flex;
    justify-self: end;
    align-items: flex-end;
    flex-direction: column;
    gap: 4px;
    color: var(--text-faint);
    font-size: 11px;
}

/* Wizard */
.scrim {
    position: fixed;
    z-index: 200;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(3, 4, 7, 0.64);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(0);
    transition: opacity var(--modal-open-duration) var(--ease-out), backdrop-filter var(--modal-open-duration) var(--ease-out);
}

.scrim.show {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(8px);
}

.scrim.closing {
    transition-duration: var(--modal-close-duration);
    transition-timing-function: var(--ease-in-out);
}

.wizard {
    width: min(100%, 590px);
    max-height: min(760px, calc(100dvh - 40px));
    overflow: auto;
    border: 1px solid var(--line-strong);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--shadow), 0 0 100px -35px rgba(91,98,255,0.45);
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    transition: opacity var(--modal-open-duration) var(--ease-out), transform var(--modal-open-duration) var(--ease-out);
}

.scrim.show .wizard {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scrim.closing .wizard {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
    transition-duration: var(--modal-close-duration);
    transition-timing-function: var(--ease-in-out);
}

.wizard-top {
    padding: 25px 28px 0;
}

.wizard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 19px;
}

.wizard-tag {
    color: var(--lime);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.wizard-close {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: transform var(--press-duration) var(--ease-out), background var(--press-duration) var(--ease-out), color var(--press-duration) var(--ease-out);
}

.wizard-progress {
    display: flex;
    gap: 6px;
}

.wizard-progress i {
    position: relative;
    height: 3px;
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
    background: var(--line-strong);
}

.wizard-progress i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--panel-duration) var(--ease-out);
}

.wizard-progress i.active::after,
.wizard-progress i.done::after {
    transform: scaleX(1);
}

.wizard-content {
    min-height: 360px;
    padding: 24px 28px 0;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.panel-in {
    animation: panelEnter var(--panel-duration) var(--ease-out) both;
}

@keyframes panelEnter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-step h2 {
    margin-bottom: 7px;
    font-size: 24px;
    font-weight: 620;
    letter-spacing: -0.025em;
}

.wizard-step p {
    margin-bottom: 22px;
    color: var(--text-muted);
    font-size: 14px;
}

.wizard-option {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 10px;
    padding: 16px;
    border: 1.5px solid var(--line-strong);
    border-radius: 13px;
    background: var(--surface-2);
    color: var(--text);
    cursor: pointer;
    text-align: left;
    opacity: 0;
    transform: translateY(8px);
    animation: optionEnter var(--panel-duration) var(--ease-out) both;
    transition: transform var(--press-duration) var(--ease-out), border-color var(--press-duration) var(--ease-out), background var(--press-duration) var(--ease-out);
}

@keyframes optionEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-option:active {
    transform: scale(0.99);
}

.wizard-option.selected {
    border-color: var(--lime);
    background: #1b1f13;
}

.option-radio {
    position: relative;
    width: 20px;
    height: 20px;
    flex: none;
    margin-top: 1px;
    border: 1.5px solid var(--line-strong);
    border-radius: 50%;
}

.wizard-option.selected .option-radio {
    border-color: var(--lime);
}

.wizard-option.selected .option-radio::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--lime);
    animation: radioEnter 200ms var(--ease-out) both;
}

@keyframes radioEnter {
    from { opacity: 0; transform: scale(0.35); }
    to { opacity: 1; transform: scale(1); }
}

.wizard-option strong,
.wizard-option small {
    display: block;
}

.wizard-option strong {
    margin-bottom: 4px;
    font-size: 15px;
}

.wizard-option small {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.48;
}

.result-card {
    position: relative;
    overflow: hidden;
    padding: 26px 22px 24px;
    border: 1.5px solid var(--line-strong);
    border-radius: 16px;
    background: var(--surface-2);
    text-align: center;
}

.result-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(260px 150px at 50% -30%, rgba(215,255,77,0.14), transparent 72%);
    pointer-events: none;
}

.arrow-mark {
    position: relative;
    width: 66px;
    height: 66px;
    margin: 0 auto 12px;
}

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

.arrow-path {
    fill: none;
    stroke: var(--lime);
    stroke-width: 7;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 140;
    stroke-dashoffset: 140;
}

.arrow-mark.draw .arrow-path {
    animation: drawArrow 620ms var(--ease-out) forwards;
}

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

.result-label,
.result-name,
.result-price {
    position: relative;
    display: block;
}

.result-label {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.result-name {
    margin-top: 7px;
    font-size: 24px;
    font-weight: 620;
}

.result-price {
    margin-top: 9px;
    color: var(--lime);
    font-family: "JetBrains Mono", monospace;
    font-size: 33px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.result-price small {
    color: var(--text-muted);
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 550;
}

.wizard-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 28px 28px;
}

.wizard-back,
.wizard-next {
    border: 0;
    cursor: pointer;
    font-weight: 750;
}

.wizard-back {
    padding: 10px 2px;
    background: transparent;
    color: var(--text-muted);
    visibility: hidden;
}

.wizard-next {
    min-width: 114px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    background: var(--lime);
    color: #0a0c05;
}

.wizard-next:disabled {
    opacity: 0.32;
    cursor: not-allowed;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    z-index: 120;
    right: 20px;
    bottom: 20px;
    width: min(430px, calc(100% - 40px));
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px;
    border: 1px solid var(--line-strong);
    border-radius: 15px;
    background: rgba(15,17,26,0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    backdrop-filter: blur(18px) saturate(150%);
    transition: opacity var(--panel-duration) var(--ease-out), transform var(--panel-duration) var(--ease-out);
}

.cookie-banner.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cookie-banner strong {
    display: block;
    margin-bottom: 3px;
    font-size: 13px;
}

.cookie-banner p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.5;
}

.cookie-button {
    min-height: 38px;
    flex: none;
    padding: 0 14px;
    border-radius: 9px;
    background: var(--lime);
    color: #0a0c05;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.foundation-grid .reveal:nth-child(2),
.expert-bento .reveal:nth-child(2),
.care-grid .reveal:nth-child(2) {
    transition-delay: 60ms;
}

.foundation-grid .reveal:nth-child(3),
.expert-bento .reveal:nth-child(3),
.care-grid .reveal:nth-child(3) {
    transition-delay: 120ms;
}

.foundation-grid .reveal:nth-child(4) {
    transition-delay: 180ms;
}

.foundation-grid .reveal:nth-child(5) {
    transition-delay: 60ms;
}

.foundation-grid .reveal:nth-child(6) {
    transition-delay: 120ms;
}

.foundation-grid .reveal:nth-child(7) {
    transition-delay: 180ms;
}

.foundation-grid .reveal:nth-child(8) {
    transition-delay: 240ms;
}

.process-list .reveal:nth-child(2) { transition-delay: 50ms; }
.process-list .reveal:nth-child(3) { transition-delay: 100ms; }
.process-list .reveal:nth-child(4) { transition-delay: 150ms; }

/* Fine pointer hover states */
@media (hover: hover) and (pointer: fine) {
    .nav-links a:hover,
    .footer-links a:hover,
    .footer-meta a:hover {
        color: var(--text);
    }

    .nav-cta:hover,
    .btn-primary:hover,
    .cookie-button:hover {
        background: var(--lime-hover);
    }

    .btn-primary:hover {
        box-shadow: 0 18px 38px -18px rgba(215,255,77,0.48);
    }

    .btn-secondary:hover {
        color: var(--blue);
        border-color: var(--blue);
    }

    .summary-action:hover {
        background: rgba(91,98,255,0.24);
    }

    .expert-card:hover,
    .foundation-item:hover {
        border-color: var(--blue-line);
    }

    .price-cell:hover {
        background: #131621;
    }

    .care-card:not(.care-card-featured):hover {
        transform: translateY(-5px);
    }

    .care-card-featured:hover {
        transform: translateY(-17px);
    }

    .wizard-close:hover {
        background: var(--line-strong);
        color: var(--text);
    }

    .wizard-option:hover {
        border-color: var(--blue-line);
        background: #191d2c;
    }
}

/* Responsive */
@media (max-width: 1040px) {
    .nav-links {
        gap: 17px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
        gap: 38px;
    }

    .hero-visual {
        min-height: 450px;
    }

    .orbit-one { width: 350px; height: 350px; }
    .orbit-two { width: 430px; height: 430px; }

    .chip-top { right: -4px; }
    .chip-bottom { left: -10px; }

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

    .care-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .care-card {
        padding: 26px 20px;
    }
}

@media (max-width: 880px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-block: 70px 82px;
    }

    .hero-copy {
        max-width: 720px;
    }

    .hero h1 {
        max-width: 720px;
    }

    .hero-visual {
        min-height: 440px;
    }

    .audience-inner {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-block: 24px;
    }

    .audience-list {
        justify-content: flex-start;
    }

    .expert-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .expert-card-main {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 420px;
    }

    .care-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .care-card-featured {
        order: -1;
        transform: none;
    }

    .care-card-featured:hover {
        transform: none;
    }

    .care-intro {
        min-height: auto;
    }

    .process-layout,
    .faq-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .process-intro,
    .contact-copy {
        position: static;
    }

    .faq-layout .section-head {
        margin-bottom: 0;
    }

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

    .footer-links {
        justify-self: end;
    }

    .footer-meta {
        grid-column: 1 / -1;
        justify-self: stretch;
        align-items: flex-start;
        padding-top: 20px;
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 640px) {
    .wrap {
        width: min(100% - 40px, var(--wrap));
    }

    html {
        scroll-padding-top: 78px;
    }

    .nav {
        min-height: 64px;
    }

    .brand span {
        font-size: 13px;
    }

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

    .hero-grid {
        padding-block: 54px 66px;
    }

    .hero h1 {
        font-size: clamp(37px, 11.5vw, 50px);
        line-height: 1.04;
    }

    .lead {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
    }

    .hero-proof {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .hero-visual {
        min-height: 365px;
    }

    .logo-stage {
        width: 220px;
    }

    .orbit-one { width: 285px; height: 285px; }
    .orbit-two { width: 345px; height: 345px; }

    .visual-chip {
        min-width: 190px;
        padding: 11px 12px;
    }

    .chip-top {
        top: 26px;
        right: -5px;
    }

    .chip-bottom {
        left: -2px;
        bottom: 20px;
    }

    .expert-section,
    .foundation,
    .pricing,
    .care,
    .process,
    .faq,
    .contact {
        padding-block: 78px;
    }

    .section-head {
        margin-bottom: 34px;
    }

    .section-head h2,
    .process-intro h2,
    .contact-copy h2,
    .final-cta h2 {
        font-size: 33px;
    }

    .expert-bento {
        grid-template-columns: 1fr;
    }

    .expert-card-main {
        grid-column: auto;
        min-height: 390px;
    }

    .expert-card {
        padding: 24px;
    }

    .authority-meter {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .meter-line {
        width: 1px;
        height: 17px;
        margin-left: 23px;
        background: linear-gradient(to bottom, rgba(215,255,77,0.5), rgba(91,98,255,0.5));
    }

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

    .foundation-item {
        min-height: auto;
    }

    .pricing-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .summary-action {
        width: 100%;
    }

    .process-item {
        grid-template-columns: 45px 1fr;
        gap: 13px;
    }

    .form-split {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 23px 18px;
    }

    .final-cta {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 70px;
        padding: 34px 25px;
        border-radius: 22px;
    }

    .final-cta .btn-primary {
        width: 100%;
    }

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

    .footer-links {
        justify-self: start;
    }

    .footer-meta {
        grid-column: auto;
    }

    .scrim {
        align-items: flex-end;
        padding: 10px;
    }

    .wizard {
        width: 100%;
        max-height: calc(100dvh - 20px);
        border-radius: 21px 21px 12px 12px;
        transform: translateY(100%);
    }

    .scrim.show .wizard {
        transform: translateY(0);
    }

    .scrim.closing .wizard {
        transform: translateY(100%);
    }

    .wizard-top,
    .wizard-content,
    .wizard-nav {
        padding-inline: 20px;
    }

    .wizard-content {
        min-height: 365px;
    }

    .wizard-step h2 {
        font-size: 22px;
    }

    .cookie-banner {
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-button {
        width: 100%;
    }
}

@media (max-width: 410px) {
    .brand span {
        display: none;
    }

    .hero-visual {
        min-height: 330px;
    }

    .logo-stage {
        width: 195px;
    }

    .orbit-one { width: 245px; height: 245px; }
    .orbit-two { width: 300px; height: 300px; }

    .visual-chip {
        min-width: 174px;
    }

    .visual-chip small {
        display: none;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .hero-enter,
    .reveal,
    .wizard-option {
        opacity: 1;
        transform: none;
    }

    .arrow-path {
        stroke-dashoffset: 0;
    }
}

@media (prefers-reduced-transparency: reduce) {
    .site-header,
    .visual-chip,
    .cookie-banner,
    .scrim {
        backdrop-filter: none;
    }

    .site-header {
        background: #07080c;
    }

    .visual-chip,
    .cookie-banner {
        background: var(--surface);
    }
}

/* ============================================================
   UPDATE 2026-07 — clickable care plans, lead wizard, chatbot,
   cookie controls and legal pages. Existing brand remains intact.
   ============================================================ */

/* Slightly tighter desktop hero start */
@media (min-width: 881px) {
    .hero-grid {
        padding-block: 60px 66px;
    }
}

/* Clickable care comparison */
.care-card[role="button"] {
    cursor: pointer;
    outline: none;
}

.care-card[role="button"]:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 5px;
}

.care-card[role="button"]:active {
    transform: scale(0.992);
}

.care-card-featured[role="button"]:active {
    transform: translateY(-12px) scale(0.992);
}

.care-card[aria-pressed="true"] {
    border-color: var(--lime);
    box-shadow: 0 0 0 1px var(--lime), 0 24px 65px -34px rgba(215, 255, 77, 0.35);
}

.care-comparison .missing {
    color: var(--text-faint);
}

.care-comparison .missing span {
    background: rgba(255, 122, 145, 0.1);
    color: var(--danger);
}

.care-card[data-level="premium"] .care-comparison .has span {
    background: var(--lime-soft);
    color: var(--lime);
}

.care-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--text);
    font-size: 13px;
    font-weight: 750;
}

.care-card-cta b {
    color: var(--lime);
    font-size: 18px;
    transition: transform var(--press-duration) var(--ease-out);
}

.care-slider-controls,
.care-swipe-hint {
    display: none;
}

/* Lead form inside the final wizard step */
.wizard-content {
    min-height: 390px;
}

.wizard-lead-form .form-split {
    gap: 12px;
}

.wizard-lead-form .form-row {
    margin-bottom: 12px;
}

.wizard-lead-form .form-row label {
    font-size: 12px;
}

.wizard-lead-form input {
    min-height: 45px;
}

.wizard-consent {
    margin-top: 4px;
}

.wizard-consent a,
.chat-consent a,
.cookie-copy a {
    color: var(--lime);
}

.lead-privacy-note {
    margin: 8px 0 0 !important;
    color: var(--text-faint) !important;
    font-size: 10.5px !important;
    line-height: 1.5;
}

.wizard-result-panel[hidden],
.chat-lead-form[hidden] {
    display: none;
}

.result-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.result-contact-row a {
    min-height: 42px;
    display: grid;
    place-items: center;
    padding: 8px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: border-color var(--ui-duration) var(--ease-out), color var(--ui-duration) var(--ease-out), transform var(--press-duration) var(--ease-out);
}

.wizard-next.loading,
.form-submit.loading,
.chat-submit.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.wizard-next.loading::after,
.form-submit.loading::after,
.chat-submit.loading::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    inset: 50% auto auto 50%;
    margin: -8.5px 0 0 -8.5px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    color: #0a0c05;
    animation: submitSpin 650ms linear infinite;
}

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

/* Richer cookie notice */
.cookie-banner {
    width: min(620px, calc(100% - 40px));
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 16px 17px;
}

.cookie-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 1px solid var(--blue-line);
    border-radius: 12px;
    background: var(--blue-soft);
    color: #c6c8ff;
    font-size: 24px;
}

.cookie-copy strong {
    font-size: 13.5px;
}

.cookie-copy p {
    font-size: 11.5px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-secondary,
.cookie-button {
    min-height: 39px;
    padding: 0 13px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 750;
    cursor: pointer;
}

.cookie-secondary {
    border: 1px solid var(--line-strong);
    background: transparent;
    color: var(--text-muted);
}

/* Lead-focused FAQ chatbot */
.chatbot-shell {
    position: fixed;
    z-index: 150;
    right: 22px;
    bottom: 22px;
    transition: bottom var(--panel-duration) var(--ease-out);
}

body.cookie-open .chatbot-shell {
    bottom: 112px;
}

.chat-fab {
    position: relative;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 17px;
    border: 1px solid rgba(215, 255, 77, 0.55);
    border-radius: 999px;
    background: var(--lime);
    color: #0a0c05;
    box-shadow: 0 20px 50px -20px rgba(215, 255, 77, 0.55);
    cursor: pointer;
    font-weight: 800;
}

.chat-fab-pulse {
    position: absolute;
    inset: -1px;
    border: 1px solid var(--lime);
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
    .chat-fab-pulse {
        animation: chatPulse 2.8s var(--ease-out) 2;
    }
}

@keyframes chatPulse {
    0% { opacity: 0.45; transform: scale(1); }
    70%, 100% { opacity: 0; transform: scale(1.18); }
}

.chat-panel {
    position: absolute;
    right: 0;
    bottom: 68px;
    width: min(390px, calc(100vw - 28px));
    height: min(620px, calc(100dvh - 110px));
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    background: rgba(15, 17, 26, 0.98);
    box-shadow: 0 34px 90px -28px rgba(0, 0, 0, 0.9), 0 0 70px -40px rgba(91, 98, 255, 0.7);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px) scale(0.97);
    transform-origin: right bottom;
    backdrop-filter: blur(20px) saturate(160%);
    transition: opacity var(--panel-duration) var(--ease-out), transform var(--panel-duration) var(--ease-out);
}

.chat-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.chat-header {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 15px;
    border-bottom: 1px solid var(--line);
    background: var(--surface-2);
}

.chat-header > div {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 8px;
}

.chat-header strong,
.chat-header small {
    grid-column: 2;
}

.chat-header strong {
    font-size: 14px;
}

.chat-header small {
    color: var(--text-muted);
    font-size: 10.5px;
}

.chat-online-dot {
    width: 9px;
    height: 9px;
    grid-row: 1 / 3;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 5px var(--lime-soft);
}

.chat-close {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 22px;
}

.chat-body {
    overflow-y: auto;
    padding: 15px;
    scrollbar-width: thin;
}

.chat-message {
    max-width: 88%;
    margin-bottom: 11px;
    padding: 11px 13px;
    border-radius: 14px;
    font-size: 12px;
    line-height: 1.55;
    animation: chatMessageIn var(--panel-duration) var(--ease-out) both;
}

.chat-message.bot {
    border: 1px solid var(--line);
    border-bottom-left-radius: 5px;
    background: var(--surface-2);
    color: var(--text-muted);
}

.chat-message.user {
    margin-left: auto;
    border-bottom-right-radius: 5px;
    background: var(--blue);
    color: #fff;
}

@keyframes chatMessageIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 13px;
}

.chat-quick button {
    padding: 8px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 10.5px;
    font-weight: 650;
    text-align: left;
    transition: border-color var(--press-duration) var(--ease-out), color var(--press-duration) var(--ease-out), transform var(--press-duration) var(--ease-out);
}

.chat-lead-form {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid var(--blue-line);
    border-radius: 14px;
    background: var(--blue-soft);
}

.chat-lead-form > strong {
    display: block;
    font-size: 14px;
}

.chat-lead-form > p {
    margin: 3px 0 10px;
    color: var(--text-muted);
    font-size: 10.5px;
}

.chat-lead-form > label:not(.chat-consent) {
    display: block;
    margin: 8px 0 4px;
    color: var(--text-muted);
    font-size: 10.5px;
    font-weight: 700;
}

.chat-lead-form > input {
    width: 100%;
    min-height: 40px;
    padding: 0 11px;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    background: var(--surface);
    color: var(--text);
}

.chat-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 9.5px;
    line-height: 1.45;
}

.chat-consent input {
    margin-top: 2px;
    accent-color: var(--lime);
}

.chat-submit {
    width: 100%;
    min-height: 42px;
    margin-top: 11px;
    border: 0;
    border-radius: 9px;
    background: var(--lime);
    color: #0a0c05;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
}

.chat-status {
    min-height: 18px;
    margin: 7px 0 0 !important;
    font-size: 10px !important;
}

.chat-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
}

.chat-footer a {
    min-height: 45px;
    display: grid;
    place-items: center;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 750;
    text-decoration: none;
}

.chat-footer a + a {
    border-left: 1px solid var(--line);
}

/* Legal pages */
body.legal-page {
    min-height: 100dvh;
}

.legal-header {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 8, 12, 0.86);
}

.legal-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.legal-back {
    color: var(--lime);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.legal-main {
    padding: 72px 0 96px;
}

.legal-document {
    max-width: 820px;
}

.legal-document h1 {
    margin-bottom: 14px;
    font-size: clamp(36px, 6vw, 58px);
    line-height: 1.05;
}

.legal-updated {
    margin-bottom: 42px;
    color: var(--text-faint);
    font-size: 12px;
}

.legal-warning {
    margin-bottom: 34px;
    padding: 16px;
    border: 1px solid rgba(255, 122, 145, 0.35);
    border-radius: 14px;
    background: rgba(255, 122, 145, 0.08);
    color: #ffc0cc;
    font-size: 13px;
}

.legal-document section {
    padding: 25px 0;
    border-top: 1px solid var(--line);
}

.legal-document h2 {
    margin-bottom: 12px;
    font-size: 23px;
}

.legal-document p,
.legal-document li {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
}

.legal-document a {
    color: var(--lime);
}

@media (hover: hover) and (pointer: fine) {
    .care-card[role="button"]:hover .care-card-cta b {
        transform: translateX(4px);
    }

    .result-contact-row a:hover,
    .chat-quick button:hover {
        border-color: var(--lime);
        color: var(--text);
    }

    .chat-quick button:hover {
        transform: translateY(-1px);
    }
}

@media (max-width: 880px) {
    .care-slider-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: -7px 0 16px;
    }

    .care-arrow {
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
        border: 1px solid var(--line-strong);
        border-radius: 50%;
        background: var(--surface);
        color: var(--text);
        cursor: pointer;
        font-size: 18px;
    }

    .care-dots {
        display: flex;
        gap: 6px;
    }

    .care-dots i {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--line-strong);
        transition: width var(--ui-duration) var(--ease-out), background var(--ui-duration) var(--ease-out);
    }

    .care-dots i.active {
        width: 22px;
        border-radius: 999px;
        background: var(--lime);
    }

    .care-grid {
        width: calc(100% + 28px);
        display: flex;
        grid-template-columns: none;
        gap: 14px;
        margin-right: -28px;
        padding: 4px 28px 18px 0;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-behavior: smooth;
        scroll-padding-left: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .care-grid::-webkit-scrollbar {
        display: none;
    }

    .care-card,
    .care-card-featured {
        order: initial;
        min-width: min(84vw, 390px);
        flex: 0 0 min(84vw, 390px);
        transform: none;
        scroll-snap-align: start;
    }

    .care-card-featured[role="button"]:active,
    .care-card[role="button"]:active {
        transform: scale(0.992);
    }

    .care-swipe-hint {
        display: block;
        margin: 4px 0 0;
        color: var(--text-faint);
        font-size: 11px;
    }
}

@media (max-width: 640px) {
    .wizard-content {
        min-height: 430px;
    }

    .wizard-lead-form .form-split,
    .result-contact-row {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        grid-template-columns: auto 1fr;
        align-items: start;
        gap: 12px;
    }

    .cookie-actions {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    body.cookie-open .chatbot-shell {
        bottom: 230px;
    }

    .chatbot-shell {
        right: 12px;
        bottom: 12px;
    }

    .chat-fab {
        min-height: 51px;
        padding: 0 14px;
    }

    .chat-panel {
        position: fixed;
        right: 10px;
        bottom: 74px;
        width: calc(100vw - 20px);
        height: min(650px, calc(100dvh - 88px));
        border-radius: 19px;
    }

    .footer-links {
        row-gap: 10px;
        flex-wrap: wrap;
    }

    .legal-main {
        padding-top: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .chat-message,
    .chat-fab-pulse {
        animation: none;
    }
}

@media (min-width: 881px) {
    .hero {
        min-height: calc(100dvh - 100px);
    }
}
