:root {
    --bg: #020b06;
    --bg-2: #04170c;
    --bg-3: #062512;
    --surface: rgba(255,255,255,0.055);
    --surface-2: rgba(255,255,255,0.085);
    --card: #ffffff;
    --card-soft: #f6faf7;
    --text: #102016;
    --muted: #63736a;
    --white: #ffffff;
    --white-muted: rgba(255,255,255,0.76);
    --green: #09b43e;
    --green-2: #24e164;
    --green-soft: #e9f9ee;
    --border: #dde9e1;
    --dark-border: rgba(255,255,255,0.14);
    --shadow: 0 24px 70px rgba(0,0,0,.14);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Manrope, Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.45;
}

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

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

.container {
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto;
}

.logo {
    font-weight: 900;
    letter-spacing: 1.8px;
    color: #fff;
    font-size: 26px;
    line-height: 1;
}

    .logo .mark {
        letter-spacing: 0;
        display: inline-block;
        transform: translateY(-1px);
    }

    .logo.dark {
        color: var(--text);
    }

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    color: white;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,.88);
}

    .nav-links a:not(.btn):hover {
        color: var(--green-2);
    }

.nav-icon {
    opacity: .85;
    margin-right: 6px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    padding: 14px 22px;
    min-height: 48px;
    font-weight: 850;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    white-space: nowrap;
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--green), var(--green-2));
    box-shadow: 0 16px 35px rgba(9,180,62,.25);
}

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 20px 44px rgba(9,180,62,.34);
    }

.btn-outline {
    color: white;
    border-color: rgba(255,255,255,.46);
    background: rgba(255,255,255,.035);
}

    .btn-outline:hover {
        background: rgba(255,255,255,.1);
        border-color: rgba(255,255,255,.82);
    }

.btn-light-outline {
    color: var(--green);
    background: #fff;
    border-color: var(--green);
}

.hero {
    position: relative;
    padding: 132px 0 78px;
    min-height: 680px;
    color: white;
    overflow: hidden;
    background: radial-gradient(circle at 74% 72%, rgba(36,225,100,.40), transparent 23%), radial-gradient(circle at 84% 20%, rgba(36,225,100,.18), transparent 32%), linear-gradient(135deg, #000c05 0%, #04170c 48%, #073719 100%);
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
        background-size: 48px 48px;
        mask-image: radial-gradient(circle at 72% 48%, black, transparent 58%);
        pointer-events: none;
    }

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    color: var(--green-2);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(46px, 6vw, 74px);
    line-height: .99;
    letter-spacing: -3px;
    margin: 0 0 24px;
}

.hero-lead {
    color: var(--white-muted);
    font-size: 19px;
    max-width: 650px;
    margin: 0 0 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
}

.store-label {
    color: rgba(255,255,255,.62);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .9px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

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

.store-badge {
    height: 42px;
    min-width: 145px;
    border-radius: 8px;
    padding: 7px 12px;
    background: #050505;
    border: 1px solid rgba(255,255,255,.35);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    line-height: 1.05;
}

    .store-badge strong {
        display: block;
        font-size: 17px;
        letter-spacing: -.25px;
    }

.device-stage {
    position: relative;
    min-height: 500px;
}

.glow-ring {
    position: absolute;
    right: 10px;
    bottom: 42px;
    width: 520px;
    height: 148px;
    border-radius: 50%;
    border: 2px solid rgba(36,225,100,.42);
    /* transform: rotate(-8deg);*/
    box-shadow: 0 0 120px rgba(36,225,100,.35);
    pointer-events: none;
}

.phone {
    position: absolute;
    z-index: 3;
    right: 260px;
    top: 10px;
    width: 245px;
    padding: 11px;
    border-radius: 38px;
    background: #050505;
    border: 1px solid rgba(255,255,255,.25);
    box-shadow: 0 34px 90px rgba(0,0,0,.45);
}

.phone-screen {
    min-height: 470px;
    border-radius: 29px;
    padding: 22px 18px;
    background: radial-gradient(circle at 80% 14%, rgba(36,225,100,.24), transparent 32%), linear-gradient(180deg,#082815,#06150d);
    color: white;
}

.phone-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg,#fff,#bcecca);
}

.ui-card {
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 14px;
}

.metric {
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}

.green {
    color: var(--green-2);
}

.activity-item {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 10px;
    padding: 9px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 12px;
}

.activity-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--green-2);
    background: rgba(36,225,100,.18);
}

.side-panel {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 80px;
    width: 288px;
    border-radius: 24px;
    color: white;
    padding: 24px;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.chart {
    height: 100px;
    margin: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(25deg, transparent 30%, rgba(36,225,100,.5) 31%, transparent 32%), linear-gradient(135deg, transparent 42%, rgba(36,225,100,.36) 43%, transparent 44%);
}

.progress {
    height: 9px;
    border-radius: 99px;
    background: rgba(255,255,255,.12);
    overflow: hidden;
}

    .progress span {
        display: block;
        height: 100%;
        width: 85%;
        background: var(--green-2);
        border-radius: inherit;
    }

.dashboard {
    position: absolute;
    right: 0;
    top: 8px;
    width: 560px;
    min-height: 390px;
    color: white;
    padding: 22px;
    border-radius: 28px;
    background: rgba(4,18,10,.72);
    border: 1px solid rgba(255,255,255,.17);
    box-shadow: 0 35px 90px rgba(0,0,0,.35);
    backdrop-filter: blur(14px);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
}

.sidebar {
    font-size: 12px;
    color: rgba(255,255,255,.65);
    display: grid;
    gap: 12px;
}

    .sidebar span:first-child {
        color: white;
        background: rgba(36,225,100,.16);
        border-radius: 8px;
        padding: 8px;
    }

.kpis {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.kpi {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
}

    .kpi strong {
        font-size: 24px;
    }

.table-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 9px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 12px;
}

.status {
    color: var(--green-2);
    background: rgba(36,225,100,.12);
    padding: 4px 8px;
    border-radius: 99px;
}

.section {
    padding: 64px 0;
}

    .section.white {
        background: white;
    }

    .section.soft {
        background: #f7faf8;
    }

    .section.dark {
        background: linear-gradient(135deg,#000d06,#04170c 65%,#031008);
        color: white;
    }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 38px;
}

.section-kicker {
    color: var(--green);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.2px;
    font-weight: 900;
    margin-bottom: 8px;
}

h2 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin: 0 0 12px;
}

.section-head p {
    color: var(--muted);
    margin: 0;
}

.dark .section-head p {
    color: rgba(255,255,255,.72);
}

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

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

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 12px 34px rgba(0,0,0,.045);
}

.dark-card {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.14);
    color: white;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 28px;
    background: linear-gradient(135deg,var(--green),var(--green-2));
    box-shadow: 0 16px 34px rgba(9,180,62,.22);
    margin-bottom: 18px;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 21px;
    letter-spacing: -.3px;
}

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

.dark-card p {
    color: rgba(255,255,255,.72);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.audience-card {
    min-height: 340px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    background: white;
}

.audience-content {
    padding: 42px;
}

.audience-card h2, .audience-card h3 {
    margin: 0 0 8px;
}

.check-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 20px 0 28px;
    list-style: none;
    color: #26372d;
}

    .check-list li {
        display: flex;
        gap: 9px;
        align-items: flex-start;
    }

        .check-list li::before {
            content: '✓';
            width: 18px;
            height: 18px;
            border-radius: 50%;
            flex: 0 0 18px;
            display: grid;
            place-items: center;
            background: var(--green-soft);
            color: var(--green);
            font-size: 12px;
            font-weight: 900;
            margin-top: 1px;
        }

.photo {
    background: linear-gradient(90deg,rgba(255,255,255,.88),rgba(255,255,255,.16)), url('https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=760&q=80') center/cover;
}

    .photo.merchant {
        background: linear-gradient(90deg,rgba(255,255,255,.88),rgba(255,255,255,.1)), url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=760&q=80') center/cover;
        width: 273px;
    }

.steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    align-items: stretch;
}

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

.step {
    position: relative;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
}

.step-num {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-weight: 900;
    margin-bottom: 18px;
}

.step p {
    color: var(--muted);
    margin-bottom: 0;
}

.step h3 {
    color: black;
}

.stats-band, .cta-band, .trust-band {
    border-radius: 24px;
    padding: 34px;
    color: white;
    background: radial-gradient(circle at 88% 80%, rgba(36,225,100,.22), transparent 28%), linear-gradient(135deg,#001307,#03170d);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: var(--shadow);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    align-items: center;
}

.stat strong {
    display: block;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 8px;
}

.stat span {
    color: rgba(255,255,255,.72);
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 30px;
}

    .cta-band h2 {
        margin: 0;
        font-size: 34px;
    }

    .cta-band p {
        color: rgba(255,255,255,.75);
        margin: 8px 0 0;
    }

.coming-panel {
    background: #f8fbf9;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px 34px 34px;
}

.coming-title {
    text-align: center;
    color: var(--green);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: .7px;
    margin-bottom: 26px;
}

.coming-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.coming-item {
    padding: 0 28px;
    border-right: 1px solid var(--border);
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: center;
}

    .coming-item:last-child {
        border-right: none;
    }

.coming-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--green);
    background: var(--green-soft);
    font-size: 25px;
}

.coming-item small {
    color: var(--muted);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 680px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    display: block;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    background: rgba(255,255,255,.035);
    overflow: hidden;
    transition: border-color .18s ease, background .18s ease;
}

    .faq-item:hover,
    .faq-item.faq-open {
        border-color: rgba(36,225,100,.5);
        background: rgba(255,255,255,.06);
    }

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    user-select: none;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    color: var(--green-2, #24e164);
    transition: transform .22s ease;
}

.faq-open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.65;
    transition: max-height .3s ease, padding .3s ease;
}

.faq-open .faq-a {
    max-height: 300px;
    padding: 0 18px 18px;
}

.form-panel {
    color: white;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 24px;
    padding: 32px;
}

.role-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.role-card {
    padding: 26px;
    border-radius: 20px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.16);
}

.input {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.18);
    color: white;
    padding: 0 14px;
    margin-top: 8px;
    margin-bottom: 14px;
}

label {
    color: rgba(255,255,255,.75);
    font-size: 13px;
    font-weight: 700;
}

.site-footer {
    background: linear-gradient(135deg,#000d06,#04170c 65%,#020b06);
    color: white;
    padding: 56px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .75fr .75fr .75fr 1.25fr;
    gap: 42px;
    align-items: start;
}

.site-footer p {
    color: rgba(255,255,255,.72);
}

.site-footer h4 {
    color: var(--green-2);
    margin: 0 0 15px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .8px;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
}

.footer-cta {
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    padding: 24px;
    background: rgba(255,255,255,.04);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 44px;
    padding-top: 20px;
    color: rgba(255,255,255,.62);
    font-size: 13px;
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

    .socials a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        border: 1px solid rgba(36,225,100,.55);
        color: white;
    }

@media (max-width: 1050px) {
    .hero-inner, .audience-grid {
        grid-template-columns: 1fr;
    }

    .device-stage {
        min-height: 540px;
    }

    .dashboard {
        width: 100%;
    }

    .phone {
        right: auto;
        left: 20px;
        top: 80px;
    }

    .side-panel {
        right: 20px;
        top: 120px;
    }

    .feature-grid, .feature-grid.four, .steps, .steps.four, .stats-grid, .coming-grid, .footer-grid, .faq-grid {
        grid-template-columns: 1fr;
    }

    .coming-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
        padding: 18px 0;
    }

        .coming-item:last-child {
            border-bottom: 0;
        }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, var(--max));
    }

    .nav-inner {
        height: auto;
        padding: 20px 0;
        align-items: flex-start;
    }

    .nav-links {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

        .nav-links a:not(.btn) {
            display: none;
        }

    .hero {
        padding-top: 106px;
    }

    h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }

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

    .device-stage {
        min-height: 640px;
    }

    .dashboard {
        display: none;
    }

    .phone {
        left: 50%;
        transform: translateX(-50%);
        width: 230px;
    }

    .side-panel {
        width: calc(100% - 20px);
        right: 10px;
        top: 390px;
    }

    .audience-card {
        grid-template-columns: 1fr;
    }

    .photo {
        min-height: 220px;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }

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

/* Contact page */
.contact-hero .hero-inner {
    grid-template-columns: 1fr .78fr;
}

.contact-side-card {
    color: white;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 28px;
    padding: 34px;
    background: rgba(255,255,255,.055);
    box-shadow: 0 28px 80px rgba(0,0,0,.28);
    position: relative;
    overflow: hidden;
}

    .contact-side-card::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        right: -90px;
        bottom: -110px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(36,225,100,.34), transparent 64%);
    }

.contact-side-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 30px;
    background: linear-gradient(135deg, var(--green), var(--green-2));
    box-shadow: 0 16px 36px rgba(8,184,62,.3);
    margin-bottom: 22px;
}

.intent-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    color: white;
    background: rgba(36,225,100,.14);
    border: 1px solid rgba(36,225,100,.34);
    font-weight: 800;
}

    .intent-pill.small {
        font-size: 13px;
        padding: 8px 12px;
    }

.small-muted {
    color: rgba(255,255,255,.66);
    font-size: 13px;
    margin-top: 22px;
}

    .small-muted code {
        color: var(--green-2);
    }

.contact-section {
    padding-top: 70px;
}

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

.contact-copy {
    padding: 20px 8px;
}

    .contact-copy h2 {
        margin: 8px 0 14px;
        font-size: 36px;
        letter-spacing: -1.1px;
    }

    .contact-copy p {
        color: var(--muted);
        font-size: 17px;
    }

.token-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

    .token-list a {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        align-items: center;
        padding: 15px 16px;
        border-radius: 14px;
        background: white;
        border: 1px solid var(--border);
        box-shadow: 0 10px 24px rgba(0,0,0,.035);
    }

    .token-list strong {
        color: var(--green);
    }

    .token-list span {
        color: var(--muted);
        font-size: 14px;
        text-align: right;
    }

.contact-form-panel {
    background: white;
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 34px;
}

.form-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

    .form-header h2 {
        margin: 6px 0 0;
        font-size: 34px;
        letter-spacing: -1px;
    }

.form-row {
    margin-bottom: 18px;
}

    .form-row.two {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

.contact-form label {
    color: #26372d;
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 900;
}

.contact-input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #d8e5dc;
    background: #fbfdfb;
    color: #0d1b12;
    padding: 14px 15px;
    font: inherit;
    outline: none;
}

    .contact-input:focus {
        border-color: var(--green);
        box-shadow: 0 0 0 4px rgba(8,184,62,.12);
    }

.textarea {
    resize: vertical;
    min-height: 150px;
}

.consent-row {
    display: flex !important;
    gap: 10px;
    align-items: flex-start;
    color: #26372d !important;
    font-weight: 600 !important;
    margin: 12px 0 6px;
}

    .consent-row input {
        width: 18px;
        height: 18px;
        margin-top: 2px;
        accent-color: var(--green);
    }

.submit-btn {
    width: 100%;
    margin-top: 18px;
}

.field-error, .validation-summary {
    color: #b42318;
    font-size: 13px;
    font-weight: 700;
}

/* ── Field validation errors — always in-flow, never repositioned ── */
.field-error {
    display: block;
    position: static !important;
    color: #d9534f;
    font-size: 12px;
    margin-top: 5px;
    min-height: 1em;
}

/* ── FAQ accordion (shared across dark sections) ── */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 680px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    display: block;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    background: rgba(255,255,255,.035);
    overflow: hidden;
    transition: border-color .18s ease, background .18s ease;
}

    .faq-item:hover,
    .faq-item.faq-open {
        border-color: rgba(36,225,100,.5);
        background: rgba(255,255,255,.06);
    }

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    user-select: none;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    color: var(--green-2, #24e164);
    transition: transform .22s ease;
}

.faq-open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.65;
    transition: max-height .3s ease, padding .3s ease;
}

.faq-open .faq-a {
    max-height: 300px;
    padding: 0 18px 18px;
}
/* Registration2 layout */
.reg-layout {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 32px;
    align-items: start;
}

.reg-aside {
    display: grid;
    gap: 16px;
}

.reg-aside-card {
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    padding: 24px;
    color: white;
}

    .reg-aside-card .card-icon {
        margin-bottom: 14px;
    }

    .reg-aside-card h3 {
        color: white;
        margin: 0 0 8px;
        font-size: 18px;
    }

    .reg-aside-card p {
        color: rgba(255,255,255,.72);
        margin: 0;
        font-size: 14px;
        line-height: 1.55;
    }

.reg-form-panel {
    background: white;
    border-radius: 28px;
    padding: 36px;
    box-shadow: var(--shadow);
}

.reg-label {
    display: block;
    color: #26372d;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 8px;
}

.reg-input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #d8e5dc;
    background: #fbfdfb;
    color: #0d1b12;
    padding: 13px 15px;
    font: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

    .reg-input:focus {
        border-color: var(--green);
        box-shadow: 0 0 0 4px rgba(8,184,62,.12);
    }

.reg-textarea {
    resize: vertical;
    min-height: 110px;
}

@media (max-width: 900px) {
    .reg-layout {
        grid-template-columns: 1fr;
    }

    .reg-aside {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .reg-aside {
        grid-template-columns: 1fr;
    }

    .reg-form-panel {
        padding: 24px;
    }
}

/* Dark section steps */
.section.dark .step {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.14);
    color: white;
}

    .section.dark .step h3 {
        color: white;
    }

    .section.dark .step p {
        color: rgba(255,255,255,.72);
    }

.section.dark .step-num {
    background: var(--green);
    color: white;
}

/* Legal pages (Privacy2, Terms2) */
.legal-hero {
    background: linear-gradient(135deg, #000d06, #04170c 65%, #031008);
    color: white;
    padding: 140px 0 60px;
}

    .legal-hero h1 {
        margin: 8px 0 12px;
        font-size: clamp(38px, 5vw, 60px);
    }

    .legal-hero .meta {
        color: rgba(255,255,255,.62);
        font-size: 14px;
        margin: 0;
    }

.prose-section {
    padding: 60px 0 80px;
}

    .prose-section article {
        max-width: 820px;
        margin: 0 auto;
        line-height: 1.75;
        color: var(--text);
    }

        .prose-section article p {
            margin: 0 0 16px;
        }

        .prose-section article ul,
        .prose-section article ol {
            margin: 0 0 16px;
            padding-left: 24px;
        }

        .prose-section article li {
            margin-bottom: 8px;
        }

        .prose-section article h2,
        .prose-section article h3 {
            margin: 32px 0 12px;
        }

        .prose-section article a {
            color: var(--green);
            text-decoration: underline;
        }

        .prose-section article strong {
            color: var(--text);
        }

/* Language toggle */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .6px;
    color: rgba(255,255,255,.55);
}

.lang-current {
    color: var(--green-2);
}

.lang-sep {
    color: rgba(255,255,255,.25);
}

.lang-switch {
    color: rgba(255,255,255,.55);
    transition: color .15s ease;
}

    .lang-switch:hover {
        color: white;
    }

@media (max-width: 720px) {
    .lang-toggle {
        display: none;
    }
}

/* Honeypot field — must be invisible to real users, not just display:none (bots detect that) */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    tab-size: 0;
}

/* Contact2 success panel */
.success-panel {
    text-align: center;
    padding: 48px 24px;
}

.success-icon {
  width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-2));
    color: white;
    font-size: 28px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    box-shadow: 0 16px 34px rgba(9,180,62,.25);
}

.success-panel h2 {
    margin: 0 0 10px;
    font-size: 28px;
    letter-spacing: -.5px;
}

.success-panel p {
    color: var(--muted);
    margin: 0 0 28px;
}

/* Intent pill inside white form panel needs dark text */
.contact-form-panel .intent-pill {
    color: var(--green);
    background: var(--green-soft);
    border-color: rgba(9,180,62,.35);
}

/* Hide empty ASP.NET validation summary so it doesn't push content down */
.validation-summary:empty,
.validation-summary-valid {
    display: none;
}
