:root {
    --ink: #0b0c10;
    --card: #111319;
    --slate: #1b202a;
    --border: #2a3142;
    --text: #e9eef6;
    --muted: #a8b0bd;
    --brand: #00c6ae;
    --brand-600: #00a896;
    --brand-700: #007f70;
    --iris: #6b7cff;
    --success: #16a34a;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #0ea5e9;
    --bg: #0e0f12;
    --teal: #00c6ae; /* brand */
    --teal-2: #00a88e; /* deeper brand */
    --ice: #e9eef6; /* light text */
    --hero-pad-top: clamp(88px, 12vw, 144px);
    --hero-pad-btm: clamp(64px, 10vw, 112px);
}
body {
    background: var(--ink);
    color: var(--text);
}

.text-center {
    text-align: center;
}

/* Prevent background scroll when mobile drawer is open */
.no-scroll {
    overflow: hidden;
}

/* CUSTOMS */
.full-height {
    min-height: 100vh;
    min-height: 100svh;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
}
.btn {
    background: var(--brand);
    color: #001018;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    transition: 0.2s ease-out;
}
.btn:hover {
    background: var(--brand-600);
    transform: translateY(-1px);
}
.link {
    color: var(--iris);
    text-decoration: none;
}
.link:hover {
    text-decoration: underline;
}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ BASE ============ */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    background: var(--ink);
    color: var(--text);
    font: 16px/1.45 system-ui, -apple-system, Segoe UI, Inter, Roboto, Helvetica,
        Arial, sans-serif;
}
a {
    color: inherit;
    text-decoration: none;
}

/* ============ NAV LAYOUT ============ */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 12, 16, 0.7);
    backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}
.nav--shadow {
    border-color: var(--border);
}
.nav__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand */
.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.nav__brand img {
    display: block;
    border-radius: 6px;
}

/* Links (desktop) */
.nav__links {
    display: none;
    gap: 18px;
    justify-content: center;
}
.nav__links a {
    color: var(--muted);
    padding: 8px 6px;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}
.nav__links a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
}
.nav__links a[aria-current="page"] {
    color: #fff;
}

/* Actions */
.nav__link--muted.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.nav__link--muted {
    color: var(--muted);
}
.nav__link--muted:hover {
    color: var(--text);
}
.btn {
    display: inline-block;
    background: var(--brand);
    color: #001018;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.2s ease;
}
.btn:hover {
    background: var(--brand-600);
    transform: translateY(-1px);
}
.btn--full {
    display: block;
    text-align: center;
}

/* Burger */
.nav__burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.nav__burger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__burger:focus {
    outline: none;
    box-shadow: var(--ring);
}
.nav__burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) {
    opacity: 0;
}
.nav__burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Drawer (mobile menu) */
.drawer {
    position: fixed;
    inset: 64px 12px auto 12px; /* below sticky bar */
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    padding: 10px;
    animation: pop 0.18s ease-out;
}
@keyframes pop {
    from {
        transform: translateY(-6px);
        opacity: 0;
    }
    to {
        transform: none;
        opacity: 1;
    }
}
.drawer__nav {
    display: grid;
    gap: 4px;
}
.drawer__nav a {
    padding: 12px 10px;
    border-radius: 10px;
    color: var(--muted);
}
.drawer__nav a:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}
.drawer hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 8px 0;
}

/* ============ HERO ============ */
#heroParticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(
        120% 120% at 50% 100%,
        rgba(0, 198, 174, 0.1),
        rgba(10, 14, 18, 0.98)
    );
}

.hero__copy {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero {
    position: relative;
    overflow: hidden;
    background: #0e0f12;
    color: var(--text);
    padding: var(--hero-pad-top) 20px var(--hero-pad-btm);
    display: grid;
    place-items: center;
    gap: 24px;
    text-align: center;
}

/* Particles layer */
.hero__particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* below glow, above bg */
    pointer-events: none;
    background: radial-gradient(
        120% 120% at 50% 100%,
        rgba(0, 198, 174, 0.08),
        rgba(10, 14, 18, 1)
    );
    mix-blend-mode: screen;
}

/* Glow layer above particles */
.hero-glow {
    position: absolute;
    inset: 0;
    z-index: 2; /* above particles */
    pointer-events: none;
}

/* Content above all */
.hero > :not(.hero-glow):not(.hero__particles) {
    position: relative;
    z-index: 3;
}

/* Keeps hero content above the decorative background */
/* .hero > *:not(.hero-glow) {
    position: relative;
    z-index: 1;
} */

/* Copy column */
.hero__copy {
    max-width: 920px;
}

/* Headline */
.hero h1 {
    margin: 0 0 20px;
    font-weight: 800;
    line-height: 1.08;
    font-size: clamp(38px, 6.5vw, 68px);
    letter-spacing: -0.015em;
}

/* Lead / subtext */
.hero .lead {
    color: var(--muted);
    margin: 0 auto 36px;
    font-size: clamp(17px, 2.2vw, 21px);
    line-height: 1.7;
    max-width: 740px;
}

/* CTA row */
.hero__cta {
    margin-top: 4px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Ghost button stays subtle on dark */
.btn.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.04);
}

/* Trust badges (optional) */
.hero__badges {
    display: flex;
    gap: 10px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.02)
    );
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.badge .muted {
    color: var(--muted);
}
.badge svg {
    opacity: 0.9;
}

/* Optional visual wrapper (kept subtle) */
.hero__visual {
    width: 100%;
    margin-top: 10px;
    background: radial-gradient(
        80% 60% at 50% 0%,
        rgba(0, 198, 174, 0.12),
        transparent 60%
    );
    padding: 12px;
    border-radius: 18px;
}
.hero__visual img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    object-fit: cover;
    background: #0f1219;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55),
        0 2px 0 rgba(255, 255, 255, 0.03) inset;
}

/* Roomy desktop composition */
@media (min-width: 1100px) {
    .hero {
        gap: 28px;
    }
}

/* If your nav is sticky, use padding (not margins) for separation */
.nav + .hero {
    scroll-margin-top: 80px;
}

/* ============ HERO GLOW BACKGROUND (Truenvio) ============ */
/* .hero-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
} */
/* Tiny anchor with giant soft halo for performance */
.hero-glow .orb {
    position: absolute;
    width: 0.1vmin;
    height: 0.1vmin;
    border-radius: 50%;
    will-change: transform, filter;
    opacity: 0.24;
}
.hero-glow .orb--a {
    /* box-shadow: 0 0 44vmax 44vmax rgba(0, 198, 174, 0.55); */
    box-shadow: 0 0 42vmax 42vmax rgba(0, 198, 174, 0.45);
    animation: hueSpin 16s linear infinite, moveA 22s linear infinite;
}
.hero-glow .orb--b {
    /* box-shadow: 0 0 46vmax 46vmax rgba(126, 252, 231, 0.35); */
    box-shadow: 0 0 44vmax 44vmax rgba(126, 252, 231, 0.28);
    animation: hueSpin 22s linear infinite reverse, moveB 28s linear infinite;
}

.hero-glow .orb--c {
    /* box-shadow: 0 0 40vmax 40vmax rgba(255, 255, 255, 0.12); */
    box-shadow: 0 0 38vmax 38vmax rgba(255, 255, 255, 0.1);
    animation: hueSpin 28s linear infinite, moveC 18s linear infinite;
    opacity: 0.18;
}

/* Subtle hue shift only (keeps brand color true) */
@keyframes hueSpin {
    0% {
        filter: hue-rotate(0deg) saturate(105%);
    }
    100% {
        filter: hue-rotate(25deg) saturate(105%);
    }
}

/* Motion paths (viewport-based) */
@keyframes moveA {
    0% {
        transform: translate(50vw, 0vh);
    }
    25% {
        transform: translate(5vw, 30vh);
    }
    50% {
        transform: translate(50vw, 95vh);
    }
    75% {
        transform: translate(95vw, 50vh);
    }
    100% {
        transform: translate(50vw, 0vh);
    }
}
@keyframes moveB {
    0% {
        transform: translate(95vw, 50vh);
    }
    25% {
        transform: translate(60vw, 95vh);
    }
    50% {
        transform: translate(5vw, 50vh);
    }
    75% {
        transform: translate(40vw, 5vh);
    }
    100% {
        transform: translate(95vw, 50vh);
    }
}
@keyframes moveC {
    0% {
        transform: translate(50vw, 95vh);
    }
    25% {
        transform: translate(95vw, 60vh);
    }
    50% {
        transform: translate(50vw, 5vh);
    }
    75% {
        transform: translate(5vw, 40vh);
    }
    100% {
        transform: translate(50vw, 95vh);
    }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-glow .orb {
        animation: none;
        box-shadow: 0 0 40vmax 40vmax rgba(0, 198, 174, 0.35);
    }
}

.section {
    padding: 64px 0;
}

/* Section heading */
.section__title {
    text-align: center;
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 40px;
}

/* Products grid */
.ojv-hero {
    padding: 96px 0 88px;
    background: radial-gradient(
        60% 80% at 50% 0%,
        rgba(0, 198, 174, 0.05),
        transparent 80%
    );
}

.ojv-hero__inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

/* Trust badge */
.badge {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 10px;
    color: var(--brand);
    background: rgba(0, 198, 174, 0.1);
    border: 1px solid var(--border);
}

/* Headings & copy */
.ojv-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(32px, 6vw, 44px);
}
.ojv-subtitle {
    margin: 0 0 16px;
    font-weight: 600;
    color: var(--text);
}
.ojv-lead {
    margin: 0 auto 36px;
    color: var(--muted);
    max-width: 620px;
    line-height: 1.6;
}

/* ============ ABOUT ============ */
.about {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
            120% 120% at 50% 100%,
            rgba(0, 198, 174, 0.08),
            transparent
        ),
        linear-gradient(180deg, #0d1117 0%, #0b0e12 100%);
    color: var(--text);
    overflow: hidden;
    padding: clamp(80px, 10vh, 160px) 20px;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.about__content {
    max-width: 640px;
    margin: 0 auto;
}

.about__content h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    color: #7efce7;
    margin-bottom: 28px;
    text-align: left;
    letter-spacing: -0.015em;
}

.about__content p {
    color: var(--muted);
    margin-bottom: 22px;
    line-height: 1.8;
    font-size: 1rem;
}

.about__content a {
    color: #7efce7;
    font-weight: 600;
    text-decoration: none;
}

.about__content a:hover {
    text-decoration: underline;
}

/* Decorative visual (soft motion glow) */
.about__visual {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    background: radial-gradient(
        50% 50% at 50% 50%,
        rgba(0, 198, 174, 0.15),
        rgba(0, 198, 174, 0.02)
    );
    box-shadow: inset 0 0 80px rgba(0, 198, 174, 0.08),
        0 0 120px rgba(0, 198, 174, 0.06);
    animation: pulseGlow 16s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%,
    100% {
        opacity: 0.45;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.04);
    }
}

/* Mobile adjustments */
@media (max-width: 900px) {
    .about__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__visual {
        height: 320px;
        margin-top: 20px;
    }

    .about__content h2 {
        text-align: center;
    }

    .about__content p {
        text-align: center;
    }
}

/* CTA (two-line) */
.btn.btn--xl {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 12px 18px;
    border-radius: 12px;
    text-align: center;
    background: linear-gradient(90deg, #00c6ae, #00a88e);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
    margin-bottom: 36px;
}
.btn.btn--xl span {
    font-weight: 700;
}
.btn.btn--xl small {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 500;
}
.btn.btn--xl:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 198, 174, 0.28);
}
.btn.btn--xl:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #0f1219, 0 0 0 4px #00c6ae;
}

/* Quick bullets */
.ojv-pills {
    margin: 18px auto 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.ojv-pills li {
    font-size: 14px;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.03);
}

/* Mobile tweaks */
@media (max-width: 520px) {
    .btn.btn--xl {
        padding: 10px 14px;
    }
    .ojv-hero {
        padding: 60px 0 40px;
    }
}

.products__grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Product card */
.card.product {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.card.product:hover {
    transform: translateY(-3px);
    border-color: var(--brand);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.card.product h3 {
    font-size: 20px;
    margin-bottom: 6px;
}
.card.product p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

/* .btn small {
    display: block;
    font-size: 12px;
    opacity: 0.85;
    font-weight: 500;
    margin-top: 2px;
} */

.btn {
    background: linear-gradient(90deg, #00c6ae, #00a88e);
    transition: all 0.2s ease;
}
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 198, 174, 0.25);
}

/* Bullets */
.ticks {
    margin-bottom: 10px;
    padding-left: 15px;
    color: var(--text);
    list-style: none;
}
.ticks li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--muted);
}
.ticks li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--brand);
    font-size: 14px;
}

.card.product .btn {
    align-self: flex-start;
    padding: 10px 16px;
    font-size: 15px;
    border-radius: 8px;
}

/* Muted placeholder card */
.muted-card {
    text-align: center;
    padding: 28px;
    border: 2px dashed var(--border);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    color: var(--muted);
    font-style: italic;
}

.muted-card:hover {
    border-color: var(--brand);
}

.muted-card .placeholder {
    height: 80px;
    border: 2px dashed var(--border);
    border-radius: 12px;
    margin-top: 12px;
}

/* ============ SOLUTIONS STRIP ============ */
.solutions {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}
.solutions .section__title {
    margin-bottom: 28px;
}

.solutions__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card.solution {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    transition: transform 0.18s ease, border-color 0.18s ease,
        box-shadow 0.18s ease;
    position: relative;
}

.card.solution:hover {
    transform: translateY(-2px);
    border-color: var(--brand);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.solution__icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #7efce7; /* bright teal for icon stroke */
    background: rgba(0, 198, 174, 0.12); /* soft teal bg */
    border: 1px solid var(--border);
    margin-bottom: 10px;
}

.card.solution h3 {
    margin: 4px 0 6px;
    font-size: 17px;
    line-height: 1.25;
}

.card.solution p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

/* ============ TRUST & SECURITY ============ */
.trust {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.02),
        rgba(255, 255, 255, 0) 80%
    );
}
.trust .section__title {
    margin-bottom: 32px;
}

.trust__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.trust__item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    text-align: left;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.trust__item:hover {
    border-color: var(--brand);
    transform: translateY(-2px);
}

.trust__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(0, 198, 174, 0.12);
    border: 1px solid var(--border);
    color: #7efce7;
    margin-bottom: 10px;
}
.trust__item h3 {
    margin: 4px 0 6px;
    font-size: 16px;
    font-weight: 600;
}
.trust__item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

/* ============ HOW IT WORKS ============ */
.how {
    position: relative;
}
.how .section__title {
    margin-bottom: 28px;
}

.how__flow {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* progress line (desktop) */
@media (min-width: 900px) {
    .how__flow {
        grid-template-columns: repeat(3, 1fr);
    }
    .how__flow::before {
        content: "";
        position: absolute;
        top: 28px;
        left: 12px;
        right: 12px;
        height: 2px;
        border-radius: 2px;
        background: linear-gradient(
            90deg,
            rgba(0, 198, 174, 0.25),
            rgba(255, 255, 255, 0.08)
        );
    }
}

.how__step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    position: relative;
    transition: transform 0.18s ease, border-color 0.18s ease,
        box-shadow 0.18s ease;
}
.how__step:hover {
    transform: translateY(-2px);
    border-color: var(--brand);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.how__icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #7efce7;
    background: rgba(0, 198, 174, 0.12);
    border: 1px solid var(--border);
    margin-bottom: 10px;
}

.how__step h3 {
    margin: 6px 0 6px;
    font-size: 16px;
    font-weight: 700;
}
.how__step p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.how__cta {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ CONTACT LAYOUT ============ */
.contact__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}
@media (min-width: 900px) {
    .contact__grid {
        grid-template-columns: 1fr 1fr;
    }
}
.contact__info .contact__meta p {
    margin: 6px 0;
}

/* Form fields */
.field {
    display: grid;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 16px;
}
.field span {
    font-size: 16px;
    color: var(--muted);
    margin-left: 2px;
}
input,
textarea {
    background: #0f1219;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 10px;
    padding: 12px 14px;
    font: inherit;
    transition: border-color 0.2s ease;
}

input:focus,
textarea:focus {
    border-color: var(--brand);
    outline: none;
}

textarea {
    resize: none;
    line-height: 1.5;
}
.err {
    color: #ffb3b3;
    min-height: 1em;
}

/* Checkbox */
.check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 10px 0 14px;
    color: var(--muted);
}
.check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

/* Actions / status */
.form__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.form__status {
    min-height: 1em;
}

/* Card polish */
.contact .card {
    padding: 24px;
}

/* ============ FINAL CTA ============ */
.cta-final {
    padding: 72px 0;
    text-align: center;
    background: radial-gradient(
            80% 60% at 50% 0%,
            rgba(0, 198, 174, 0.12),
            transparent 60%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0)
        );
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta-final h3 {
    margin: 0 0 8px;
    font-size: clamp(22px, 3.2vw, 28px);
    letter-spacing: -0.01em;
}
.cta-final p {
    margin: 0 0 16px;
}
.cta-final__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.04);
}

button[disabled] {
    cursor: progress;
}

/* ============ RESPONSIVE ============ */
@media (min-width: 960px) {
    .nav__links {
        display: flex;
    }
    .nav__burger {
        visibility: hidden;
        display: none;
    }
    .nav__inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 24px; /* add more breathing room */
    }
}
@media (max-width: 959.98px) {
    .nav__burger {
        visibility: visible;
    }
    .nav__actions .nav__link--muted {
        display: none;
    }
    .nav__actions .btn {
        display: none;
    }
}
