/* ============================================================
   barclo — marketing site stylesheet
   ============================================================ */

:root {
    --green: #4CAF6F;
    --green-dark: #3D8C59;
    --green-light: #75C38D;
    --green-deeper: #2E6943;
    --forest: #1A2E1A;
    --meadow: #E8F5EC;
    --meadow-dark: #D1EBD9;
    --biscuit: #FF8C5A;
    --cream: #F5F0EB;
    --white: #FFFFFF;

    --text-primary: #1A2E1A;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;

    --font-display: 'Nunito', system-ui, -apple-system, sans-serif;
    --font-body: 'Poppins', system-ui, -apple-system, sans-serif;

    --section-padding: 96px 24px;
    --section-padding-mobile: 56px 16px;
    --max-width: 1140px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(26, 46, 26, 0.05);
    --shadow-md: 0 4px 16px rgba(26, 46, 26, 0.08);
    --shadow-lg: 0 20px 60px rgba(26, 46, 26, 0.15);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background: var(--cream);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
button { font-family: inherit; }
ul { padding: 0; margin: 0; list-style: none; }
blockquote { margin: 0; }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--forest);
    margin: 0 0 16px;
    line-height: 1.15;
}
h1 { font-weight: 900; font-size: clamp(34px, 5.2vw, 60px); letter-spacing: -0.02em; }
h2 { font-weight: 800; font-size: clamp(26px, 4vw, 42px); letter-spacing: -0.01em; }
h3 { font-weight: 700; font-size: clamp(18px, 2.4vw, 24px); }
h4 { font-weight: 700; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; }
p  { margin: 0 0 16px; }

/* ---------- layout ---------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
@media (max-width: 640px) {
    .container { padding: 0 16px; }
}

.section-title { text-align: center; }
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 640px;
    margin: 0 auto 56px;
}

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
    box-shadow: 0 4px 14px rgba(76, 175, 111, 0.28);
}
.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(76, 175, 111, 0.4);
}
.btn-secondary {
    background: var(--white);
    color: var(--forest);
    border-color: var(--meadow-dark);
}
.btn-secondary:hover {
    border-color: var(--green);
    color: var(--forest);
}
.btn-white {
    background: var(--white);
    color: var(--forest);
    border-color: var(--white);
}
.btn-white:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--forest);
}
.btn-large {
    padding: 18px 36px;
    font-size: 17px;
    border-radius: var(--radius-lg);
}
.btn-nav {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: var(--radius-md);
}
.nav-links a.btn-nav,
.nav-links a.btn-nav:link,
.nav-links a.btn-nav:visited,
.nav-links a.btn-nav:hover,
.nav-links a.btn-nav:focus,
.nav-links a.btn-nav:active {
    color: #ffffff;
}

/* ---------- card ---------- */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 2px solid var(--meadow);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ---------- nav ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--forest);
    transition: box-shadow 0.2s, background 0.2s;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(26, 46, 26, 0.25); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 16px;
}
.nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    flex: 0 0 auto;
}
.nav-logo img {
    height: 32px;
    width: auto;
    display: block;
}
.nav-logo-bar { color: var(--green); }
.nav-logo-clo { color: var(--white); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    color: #A3D7B3;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-login { color: var(--white); }

.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    margin: -6px;
    border-radius: var(--radius-sm);
    -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.06); }
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0.2); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 768px) {
    .nav-inner { gap: 12px; }
    .nav-toggle { display: flex; }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--forest);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        transition: max-height 0.3s ease, visibility 0s linear 0.3s;
    }
    .nav-links.active {
        max-height: calc(100dvh - 64px);
        overflow-y: auto;
        visibility: visible;
        transition: max-height 0.35s ease, visibility 0s linear 0s;
    }
    .nav-links a {
        display: block;
        padding: 18px 24px;
        font-size: 16px;
        color: #D1EBD9;
        border: none;
    }
    .nav-links a:hover,
    .nav-links a:focus-visible {
        background: rgba(255, 255, 255, 0.05);
        color: var(--white);
        outline: none;
    }
    .nav-links .nav-login {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-links .btn-nav {
        display: flex;
        width: auto;
        margin: 16px 24px 24px;
        padding: 14px 24px;
        font-size: 15px;
        justify-content: center;
        border-radius: var(--radius-md);
    }
}

@media (max-width: 768px) {
    body.nav-open { overflow: hidden; }
}

/* ---------- shared section bits ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin: 0 0 14px;
}
.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}
.eyebrow-light { color: var(--green-light); }
.eyebrow-light::before { background: var(--green-light); }

/* ---------- hero ---------- */
.hero {
    position: relative;
    padding: 88px 0 120px;
    text-align: center;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, var(--meadow) 0%, transparent 65%),
        var(--cream);
    overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; }
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    color: var(--green);
    opacity: 0.18;
}
.hero-path {
    position: absolute;
    top: 18%;
    left: 0;
    right: 0;
    width: 100%;
    height: 240px;
}
.hero-paw {
    position: absolute;
    width: 36px;
    height: 36px;
    color: var(--biscuit);
    opacity: 0.55;
    transform: rotate(-18deg);
}
.hero-paw-1 { top: 12%; left: 7%; }
.hero-paw-2 { top: 26%; right: 9%; transform: rotate(22deg); }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--forest);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px 8px 12px;
    border-radius: var(--radius-full);
    margin: 0 0 24px;
    box-shadow: 0 2px 10px rgba(26, 46, 26, 0.06);
    border: 1px solid var(--meadow-dark);
    letter-spacing: 0.02em;
}
.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(76, 175, 111, 0.18);
}

.hero-title { margin: 0 auto 22px; max-width: 880px; }
.hero-title-paw {
    display: inline-block;
    width: 0.78em;
    height: 0.78em;
    margin-left: 0.18em;
    color: var(--biscuit);
    vertical-align: -0.05em;
    transform: rotate(-12deg);
}
.hero-highlight {
    color: var(--green);
    position: relative;
    display: inline-block;
}
.hero-highlight::after {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    bottom: 0.06em;
    height: 0.18em;
    background: rgba(255, 140, 90, 0.32);
    border-radius: 999px;
    z-index: -1;
}
.hero-subtitle {
    color: var(--text-secondary);
    font-size: clamp(17px, 1.6vw, 19px);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.55;
}
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.hero-trust {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 72px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.hero-trust-sep { color: var(--green); }

.hero-mockup {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}
.hero-mockup-browser {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--meadow-dark);
}
.hero-mockup-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--forest);
    padding: 14px 18px;
}
.hero-mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
}
.hero-mockup-dot:first-child { background: var(--biscuit); }
.hero-mockup-dot:nth-child(2) { background: #f5d93a; }
.hero-mockup-dot:nth-child(3) { background: var(--green); }
.hero-mockup-url {
    margin-left: 16px;
    color: #A3D7B3;
    font-size: 13px;
    font-family: var(--font-body);
}
.hero-mockup-content { padding: 0; background: linear-gradient(180deg, #FBFBF8 0%, var(--white) 100%); }

/* fake dashboard */
.dash {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 360px;
    text-align: left;
    font-family: var(--font-body);
}
.dash-side {
    background: linear-gradient(180deg, #F7FAF6 0%, #ECF5EF 100%);
    border-right: 1px solid var(--meadow-dark);
    padding: 18px 14px;
}
.dash-side-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--forest);
    color: var(--green);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.dash-side-nav { display: flex; flex-direction: column; gap: 4px; }
.dash-side-nav li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}
.dash-side-nav li.active {
    background: var(--white);
    color: var(--forest);
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(26,46,26,0.06);
}
.dash-side-nav .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #C7DECF;
}
.dash-side-nav li.active .dot { background: var(--green); }

.dash-main { padding: 20px 22px 22px; }
.dash-main-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}
.dash-kicker {
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
}
.dash-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--forest);
    margin: 4px 0 0;
}
.dash-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--meadow);
    color: var(--green-deeper);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}
.dash-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.dash-list { display: flex; flex-direction: column; gap: 8px; }
.dash-row {
    display: grid;
    grid-template-columns: 56px 36px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--meadow);
    transition: border-color 0.2s;
}
.dash-row.live { border-color: var(--biscuit); background: #FFF7F2; }
.dash-row.done { opacity: 0.7; }
.dash-time {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--forest);
    font-size: 13px;
}
.dash-bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dash-bubble.bubble-2 { background: var(--biscuit); }
.dash-bubble.bubble-3 { background: var(--green-dark); }
.dash-bubble.bubble-4 { background: #C58A5C; }
.dash-meta { min-width: 0; }
.dash-name {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--forest);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dash-name em {
    font-style: normal;
    color: var(--text-secondary);
    font-weight: 400;
}
.dash-warn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #FFE0CD;
    color: #B85A2C;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 11px;
    margin-left: 4px;
    vertical-align: 1px;
}
.dash-sub {
    margin: 2px 0 0;
    font-size: 11.5px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dash-status {
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
}
.status-done { background: var(--meadow); color: var(--green-deeper); }
.status-live {
    background: var(--biscuit);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.status-live .pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white);
    animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
}
.status-pending { background: #F1F1ED; color: var(--text-secondary); }

.hero-mockup-phone {
    position: absolute;
    right: -16px;
    bottom: -52px;
    width: 168px;
    height: 320px;
    background: var(--forest);
    border-radius: 28px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(26, 46, 26, 0.28);
    border: 2px solid #2E6943;
    transform: rotate(4deg);
}
.hero-mockup-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(160deg, #F7FAF6 0%, var(--white) 100%);
    padding: 14px 12px;
    overflow: hidden;
    text-align: left;
}
.phone-card { font-family: var(--font-body); }
.phone-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.phone-bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--biscuit);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-card-head strong {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--forest);
}
.phone-card-head em {
    font-style: normal;
    font-size: 11px;
    color: var(--text-muted);
}
.phone-map {
    background: #F1F5EE;
    border-radius: 12px;
    padding: 10px 8px;
    margin-bottom: 12px;
}
.phone-map svg { width: 100%; height: 60px; display: block; }
.phone-stats {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-secondary);
}
.phone-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--forest);
    line-height: 1;
}

@media (max-width: 900px) {
    .dash { grid-template-columns: 1fr; min-height: 0; }
    .dash-side { display: none; }
}
@media (max-width: 720px) {
    .hero { padding: 56px 0 88px; }
    .hero-trust { margin-bottom: 40px; }
    .hero-mockup-phone { display: none; }
    .hero-paw { display: none; }
    .dash-row { grid-template-columns: 44px 32px 1fr; gap: 10px; padding: 10px; }
    .dash-row .dash-status { display: none; }
}

/* ---------- trust bar ---------- */
.trustbar {
    background: var(--white);
    padding: 28px 0;
    border-top: 1px solid var(--meadow-dark);
    border-bottom: 1px solid var(--meadow-dark);
}
.trustbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.trustbar-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--meadow-dark), transparent);
}
.trustbar-text {
    margin: 0;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
}
@media (max-width: 600px) {
    .trustbar-line { max-width: 30px; }
    .trustbar-text { font-size: 11px; }
}

/* ---------- problem ---------- */
.problem {
    background: var(--cream);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}
.problem::before {
    content: "";
    position: absolute;
    top: 60px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 140, 90, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.problem-inner { position: relative; max-width: 880px; margin: 0 auto; }
.problem-head { text-align: left; margin-bottom: 56px; }
.problem-title {
    text-align: left;
    font-size: clamp(28px, 4.4vw, 46px);
    line-height: 1.12;
    max-width: 720px;
}
.problem-list {
    list-style: none;
    counter-reset: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 40px;
    padding: 0;
    border-top: 1px solid var(--meadow-dark);
}
.problem-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: baseline;
    padding: 28px 0;
    border-bottom: 1px solid var(--meadow-dark);
}
.problem-item:nth-child(even) { padding-left: 40px; }
.problem-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 18px;
    color: var(--green);
    letter-spacing: 0.08em;
}
.problem-item p {
    margin: 0;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.4;
    color: var(--forest);
    font-weight: 400;
}
.problem-item p strong { font-weight: 700; }
.problem-payoff {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    border-left: 4px solid var(--green);
    box-shadow: 0 4px 24px rgba(26, 46, 26, 0.06);
}
.problem-payoff-line {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(20px, 2.4vw, 26px);
    color: var(--forest);
    line-height: 1.3;
}
.problem-payoff-pitch {
    margin: 0;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.55;
}
.problem-payoff-pitch strong { color: var(--green-deeper); }
@media (max-width: 720px) {
    .problem { padding: var(--section-padding-mobile); }
    .problem-head { margin-bottom: 36px; }
    .problem-item { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
    .problem-item:nth-child(even) { padding-left: 0; }
    .problem-payoff { padding: 24px 22px; }
}

/* ---------- walkflow (vertical narrative) ---------- */
.walkflow {
    background: var(--forest);
    padding: var(--section-padding);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.walkflow-bg {
    position: absolute;
    inset: 0;
    color: var(--green-light);
    opacity: 0.18;
    pointer-events: none;
}
.walkflow-bg svg { position: absolute; right: -120px; top: 0; height: 100%; width: 800px; }
.walkflow-inner { position: relative; }
.walkflow-head { text-align: center; margin-bottom: 56px; }
.walkflow .section-title,
.walkflow-title { color: var(--white); }
.walkflow-sub,
.walkflow .section-subtitle { color: var(--green-light); }

.walkflow-timeline {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 760px;
    position: relative;
}
.walkflow-timeline::before {
    content: "";
    position: absolute;
    left: 31px;
    top: 18px;
    bottom: 24px;
    width: 0;
    border-left: 2px dashed rgba(117, 195, 141, 0.4);
}
.walkflow-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    align-items: flex-start;
    padding: 8px 0 36px;
    position: relative;
}
.walkflow-step:last-child { padding-bottom: 0; }
.walkflow-marker {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green-deeper);
    color: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(117, 195, 141, 0.35);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.walkflow-marker svg { width: 28px; height: 28px; }
.walkflow-step:nth-child(2) .walkflow-marker { background: var(--green); color: var(--white); border-color: var(--green); }
.walkflow-step:nth-child(3) .walkflow-marker { background: var(--biscuit); color: var(--white); border-color: var(--biscuit); }
.walkflow-step:nth-child(4) .walkflow-marker { background: #2E6943; color: var(--green-light); }

.walkflow-content { padding-top: 6px; }
.walkflow-time {
    margin: 0 0 4px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--biscuit);
}
.walkflow-content h3 {
    color: var(--white);
    font-size: clamp(20px, 2.4vw, 26px);
    margin: 0 0 10px;
}
.walkflow-content p {
    color: #C7E1D0;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
    max-width: 580px;
}
.walkflow-caption {
    text-align: center;
    color: var(--green-light);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(20px, 2.4vw, 26px);
    margin: 56px auto 0;
    max-width: 600px;
}
@media (max-width: 640px) {
    .walkflow { padding: var(--section-padding-mobile); }
    .walkflow-step { grid-template-columns: 48px 1fr; gap: 18px; padding-bottom: 28px; }
    .walkflow-marker { width: 48px; height: 48px; }
    .walkflow-marker svg { width: 22px; height: 22px; }
    .walkflow-timeline::before { left: 23px; }
}

/* ---------- features ---------- */
.features {
    background: var(--white);
    padding: var(--section-padding);
}
.features-head { text-align: center; margin-bottom: 64px; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1080px;
    margin: 0 auto;
}
.feature-card {
    position: relative;
    background: var(--cream);
    border-radius: 22px;
    padding: 36px 32px 32px;
    border: 1px solid transparent;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(76, 175, 111, 0.14) 0%, transparent 70%);
    pointer-events: none;
}
.feature-card.tone-biscuit { background: #FFF6F0; }
.feature-card.tone-biscuit::before {
    background: radial-gradient(circle, rgba(255, 140, 90, 0.16) 0%, transparent 70%);
}
.feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--meadow-dark);
    box-shadow: 0 14px 40px rgba(26, 46, 26, 0.08);
}
.feature-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--white);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 22px;
    border: 1px solid var(--meadow-dark);
    box-shadow: 0 2px 8px rgba(26, 46, 26, 0.04);
    position: relative;
    z-index: 1;
}
.feature-card.tone-biscuit .feature-card-icon { color: var(--biscuit); }
.feature-card-icon svg { width: 26px; height: 26px; }

.feature-kicker {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-dark);
    position: relative;
    z-index: 1;
}
.feature-card.tone-biscuit .feature-kicker { color: #C7591F; }
.feature-headline {
    font-size: clamp(20px, 2.4vw, 26px);
    margin: 0 0 14px;
    line-height: 1.2;
    color: var(--forest);
    position: relative;
    z-index: 1;
}
.feature-body {
    margin: 0;
    color: var(--text-secondary);
    font-size: 15.5px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
@media (max-width: 760px) {
    .features { padding: var(--section-padding-mobile); }
    .features-head { margin-bottom: 40px; }
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .feature-card { padding: 28px 24px 26px; }
}

/* ---------- who ---------- */
.who {
    background: var(--meadow);
    padding: var(--section-padding);
    position: relative;
}
.who-head { text-align: center; margin-bottom: 56px; }
.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}
.who-grid > .who-card:nth-child(4),
.who-grid > .who-card:nth-child(5) {
    /* keep 5-card grid balanced — last row centers */
}
.who-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--meadow-dark);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.who-card:hover {
    transform: translateY(-3px);
    border-color: var(--green);
    box-shadow: 0 10px 30px rgba(26, 46, 26, 0.08);
}
.who-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.who-card:nth-child(2) .who-card-icon { background: var(--biscuit); }
.who-card:nth-child(3) .who-card-icon { background: var(--green-deeper); }
.who-card:nth-child(4) .who-card-icon { background: var(--forest); }
.who-card:nth-child(5) .who-card-icon { background: var(--green-dark); }
.who-card-icon svg { width: 26px; height: 26px; }
.who-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
}
.who-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.55;
}
.who-card p em { font-style: italic; color: var(--forest); }
@media (max-width: 900px) { .who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
    .who { padding: var(--section-padding-mobile); }
    .who-grid { grid-template-columns: 1fr; }
}

/* ---------- pricing (single plan) ---------- */
.pricing {
    background: var(--white);
    padding: var(--section-padding);
}
.pricing-head { text-align: center; margin-bottom: 56px; }
.pricing-wrap {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.pricing-card {
    background: var(--white);
    border: 2px solid var(--green);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(76, 175, 111, 0.18);
    position: relative;
}
.pricing-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(76, 175, 111, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.pricing-card-top {
    padding: 36px 36px 32px;
    text-align: center;
    background: linear-gradient(180deg, #F5FBF7 0%, var(--white) 100%);
    border-bottom: 1px dashed var(--meadow-dark);
    position: relative;
}
.pricing-plan {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-dark);
}
.pricing-price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 14px;
}
.pricing-currency {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 32px;
    color: var(--forest);
}
.pricing-amount {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(56px, 8vw, 84px);
    line-height: 0.9;
    color: var(--forest);
    letter-spacing: -0.03em;
}
.pricing-period { color: var(--text-secondary); font-size: 18px; font-weight: 500; }
.pricing-blurb {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0 auto 24px;
    max-width: 360px;
}
.pricing-cta { width: 100%; max-width: 320px; margin: 0 auto 12px; }
.pricing-fineprint {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
}

.pricing-card-bottom {
    padding: 28px 36px 36px;
}
.pricing-included {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-align: center;
}
.pricing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    font-size: 14.5px;
    color: var(--forest);
}
.pricing-features li {
    position: relative;
    padding-left: 26px;
    line-height: 1.45;
}
.pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--meadow);
}
.pricing-features li::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 9px;
    width: 8px;
    height: 4px;
    border-left: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(-45deg);
}

.pricing-soon {
    background: var(--meadow);
    border-radius: 16px;
    padding: 22px 28px;
    border: 1px dashed var(--green);
}
.pricing-soon-kicker {
    margin: 0 0 6px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-deeper);
}
.pricing-soon-body {
    margin: 0;
    color: var(--forest);
    font-size: 14.5px;
    line-height: 1.55;
}
.pricing-soon-body strong { color: var(--green-deeper); }

@media (max-width: 600px) {
    .pricing { padding: var(--section-padding-mobile); }
    .pricing-card-top { padding: 28px 24px 26px; }
    .pricing-card-bottom { padding: 22px 24px 28px; }
    .pricing-features { grid-template-columns: 1fr; gap: 10px; }
    .pricing-soon { padding: 18px 22px; }
}

/* ---------- testimonial ---------- */
.testimonial {
    background: var(--cream);
    padding: var(--section-padding);
}
.testimonial-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.testimonial-mark {
    display: block;
    font-family: var(--font-display);
    font-size: 140px;
    font-weight: 900;
    line-height: 0.85;
    color: var(--green);
    opacity: 0.32;
    margin: 0 0 -52px;
    user-select: none;
}
.testimonial blockquote {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--forest);
    line-height: 1.35;
    margin: 0 0 28px;
    letter-spacing: -0.01em;
}
.testimonial cite {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-style: normal;
    font-weight: 500;
    font-size: 14.5px;
}
.testimonial cite strong { color: var(--forest); font-weight: 700; }
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--biscuit);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 640px) {
    .testimonial { padding: var(--section-padding-mobile); }
    .testimonial blockquote { font-size: 19px; }
    .testimonial-mark { font-size: 96px; margin-bottom: -36px; }
}

/* ---------- faq ---------- */
.faq {
    background: var(--white);
    padding: var(--section-padding);
}
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--meadow-dark);
    padding: 0;
}
.faq-item:first-child { border-top: 1px solid var(--meadow-dark); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 8px 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--forest);
    line-height: 1.35;
}
.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--meadow);
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.25s ease;
}
.faq-toggle svg { width: 18px; height: 18px; }
.faq-item[open] .faq-toggle {
    background: var(--green);
    color: var(--white);
    transform: rotate(180deg);
}
.faq-item:hover summary .faq-q { color: var(--green-deeper); }
.faq-a {
    padding: 0 8px 22px 0;
    color: var(--text-secondary);
    font-size: 15.5px;
    line-height: 1.65;
    max-width: 640px;
}
.faq-a p { margin: 0; }
.faq-a a {
    color: var(--green-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.faq-a code {
    background: var(--meadow);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.92em;
    color: var(--forest);
}
@media (max-width: 640px) {
    .faq { padding: var(--section-padding-mobile); }
    .faq-item summary { padding: 18px 4px 18px 0; }
}

/* ---------- final CTA ---------- */
.finalcta {
    position: relative;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(117, 195, 141, 0.6) 0%, transparent 70%),
        var(--green);
    color: var(--white);
    padding: 96px 16px;
    text-align: center;
    overflow: hidden;
}
.finalcta-bg { position: absolute; inset: 0; pointer-events: none; }
.finalcta-bg svg { position: absolute; top: 30%; left: 0; width: 100%; height: 100px; }
.finalcta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.finalcta-title {
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--white);
    font-size: clamp(30px, 4.6vw, 48px);
    line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.finalcta-sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    margin: 0 0 32px;
}
.finalcta .eyebrow { justify-content: center; }
@media (max-width: 600px) { .finalcta { padding: 64px 16px; } }

/* ---------- cta banner ---------- */
.cta-banner {
    background: var(--green);
    padding: 88px 16px;
    text-align: center;
}
.cta-banner h2 {
    color: var(--white);
    font-weight: 900;
    margin: 0 0 16px;
}
.cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 17px;
    margin: 0 0 32px;
}
@media (max-width: 640px) {
    .cta-banner { padding: 64px 16px; }
}

/* ---------- footer ---------- */
.footer {
    background: var(--forest);
    color: #A3D7B3;
    padding: 72px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}
.footer-logo img {
    height: 44px;
    width: auto;
    display: block;
}
.footer-tagline {
    color: #A3D7B3;
    font-size: 14px;
    margin: 0;
    max-width: 260px;
}
.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    color: #75C38D;
    font-size: 14px;
    transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #2E6943;
    color: #64748B;
    font-size: 12px;
}
.footer-bottom p { margin: 0 0 4px; }
@media (max-width: 800px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- 404 ---------- */
.page-404 {
    padding: 120px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.page-404-inner { max-width: 560px; margin: 0 auto; }
.page-404-kicker {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 96px;
    color: var(--green);
    margin: 0 0 8px;
    line-height: 1;
}
.page-404 h1 { margin-bottom: 16px; }
.page-404 p { color: var(--text-secondary); margin-bottom: 32px; }

/* ---------- legal pages (privacy, terms) ---------- */
.legal-page {
    padding: 64px 0 96px;
    background: var(--cream);
}
.legal-page .container { max-width: 820px; }

.legal-header {
    text-align: center;
    padding: 32px 0 48px;
    border-bottom: 1px solid var(--meadow-dark);
    margin-bottom: 48px;
}
.legal-kicker {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green);
    margin: 0 0 12px;
}
.legal-header h1 {
    font-size: clamp(32px, 4.5vw, 48px);
    margin: 0 0 16px;
}
.legal-updated {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0;
}

.legal-prose {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-primary);
}
.legal-prose h2 {
    font-size: clamp(22px, 2.6vw, 28px);
    margin: 56px 0 16px;
    padding-top: 8px;
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose h3 {
    font-size: 19px;
    margin: 32px 0 12px;
    color: var(--green-deeper);
}
.legal-prose p {
    margin: 0 0 16px;
    color: var(--text-primary);
}
.legal-prose a {
    color: var(--green-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.legal-prose a:hover {
    color: var(--green-deeper);
    text-decoration-thickness: 2px;
}
.legal-prose hr {
    border: 0;
    height: 1px;
    background: var(--meadow-dark);
    margin: 48px 0;
}
.legal-prose strong { color: var(--forest); font-weight: 600; }

.legal-list {
    list-style: disc;
    padding-left: 24px;
    margin: 0 0 20px;
}
.legal-list li {
    margin-bottom: 10px;
    padding-left: 4px;
}
.legal-list li::marker { color: var(--green); }

.legal-table-wrap {
    overflow-x: auto;
    margin: 0 0 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--meadow-dark);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.legal-table th,
.legal-table td {
    text-align: left;
    padding: 14px 16px;
    vertical-align: top;
    border-bottom: 1px solid var(--meadow-dark);
}
.legal-table thead th {
    background: var(--meadow);
    color: var(--forest);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.legal-table tbody tr:last-child td { border-bottom: 0; }
.legal-table tbody tr:nth-child(even) td { background: rgba(232, 245, 236, 0.35); }

.legal-affirm {
    background: var(--meadow);
    border-left: 4px solid var(--green);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin: 32px 0 0;
    font-size: 16px;
}

@media (max-width: 640px) {
    .legal-page { padding: 40px 0 64px; }
    .legal-header { padding: 16px 0 32px; margin-bottom: 32px; }
    .legal-prose h2 { margin: 40px 0 12px; }
    .legal-prose hr { margin: 32px 0; }
    .legal-table th, .legal-table td { padding: 10px 12px; font-size: 14px; }
}

/* ---------- scroll reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ---------- Register-interest modal ---------- */
.interest-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.interest-modal.open { display: flex; }
body.interest-open { overflow: hidden; }

.interest-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 46, 26, 0.62);
    backdrop-filter: blur(3px);
    animation: interestFade 0.2s ease-out;
}
.interest-modal-dialog {
    position: relative;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 440px;
    padding: 32px 28px 28px;
    animation: interestPop 0.25s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
}
@keyframes interestFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes interestPop {
    from { opacity: 0; transform: translateY(14px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.interest-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--text-secondary);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
}
.interest-modal-close:hover { background: rgba(0,0,0,0.06); color: var(--forest); }

.interest-modal-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: rgba(76, 175, 111, 0.12);
    padding: 5px 12px;
    border-radius: 999px;
    margin: 0 0 12px;
}
.interest-modal-dialog h2 {
    margin: 0 0 8px;
    font-size: 1.6rem;
    color: var(--forest);
}
.interest-modal-sub {
    margin: 0 0 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.interest-form { display: flex; flex-direction: column; gap: 14px; }
.interest-field { display: flex; flex-direction: column; gap: 6px; }
.interest-field > span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest);
}
.interest-field em { font-style: normal; color: var(--text-secondary); font-weight: 400; }
.interest-field input {
    width: 100%;
    padding: 12px 14px;
    font: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--cream);
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.interest-field input:focus {
    outline: none;
    border-color: var(--green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(76, 175, 111, 0.18);
}
.interest-field input[aria-invalid="true"] { border-color: #d64545; }

.interest-hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.interest-error {
    margin: 0;
    min-height: 1.2em;
    font-size: 0.85rem;
    color: #d64545;
}
.interest-submit { margin-top: 4px; width: 100%; }
.interest-submit[disabled] { opacity: 0.7; cursor: progress; }
.interest-fineprint {
    margin: 10px 0 0;
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
}

.interest-modal-success { text-align: center; padding-top: 10px; }
.interest-modal-success h2 { margin-top: 14px; }
.interest-modal-success p { color: var(--text-secondary); margin: 6px 0 22px; }
.interest-tick {
    width: 64px;
    height: 64px;
    margin: 6px auto 0;
    border-radius: 50%;
    background: rgba(76, 175, 111, 0.15);
    color: var(--green-dark);
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

@media (max-width: 480px) {
    .interest-modal { padding: 12px; }
    .interest-modal-dialog { padding: 28px 20px 22px; border-radius: 14px; }
    .interest-modal-dialog h2 { font-size: 1.4rem; }
}
