:root {
    --teal:       #009e9d;
    --teal-deep:  #007a7a;
    --teal-dark:  #005858;
    --teal-tint:  #e6fafa;
    --teal-mid:   #b2e8e8;
    --ink:        #0d1a1a;
    --ink-soft:   #3a5454;
    --ink-muted:  #6b9090;
    --bg:         #f7fefe;
    --white:      #ffffff;
    --border:     #d0eaea;
    --error:     #cc4444;
    --panel-dark: #0a1f1f;
    --panel-dark-2: #06302f;
}
/**, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }*/
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(247,254,254,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5vw;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.nav-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800; font-size: 1.4rem;
    color: var(--teal);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.nav-logo span { color: var(--ink); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
    font-size: 0.9rem; font-weight: 500;
    color: var(--ink-soft); text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
    background: var(--teal) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 8px;
}
.nav-cta:hover { background: var(--teal-deep) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; display: block; }

/* ── HERO ── */
.hero-outer { max-width: 1280px; margin: 0 auto; padding: 0 5vw; }
.hero {
    min-height: calc(100vh - 64px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 0 4rem;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--teal-tint);
    border: 1px solid var(--teal-mid);
    color: var(--teal-deep);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem; letter-spacing: 0.06em;
    padding: 0.35rem 0.8rem; border-radius: 100px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.hero-eyebrow::before {
    content: ''; width: 7px; height: 7px;
    background: var(--teal); border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }
.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 1.4rem;
}
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-sub {
    font-size: 1.1rem;
    color: var(--ink-soft);
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-primary {
    background: var(--teal); color: var(--white);
    padding: 0.85rem 2rem; border-radius: 10px;
    font-weight: 600; font-size: 0.95rem;
    text-decoration: none; transition: background 0.2s, transform 0.15s;
    display: inline-block;
}
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-1px); }
.btn-secondary {
    color: var(--teal-deep); padding: 0.85rem 2rem; border-radius: 10px;
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    border: 2px solid var(--teal-mid); transition: border-color 0.2s, background 0.2s;
    display: inline-block;
}
.btn-secondary:hover { border-color: var(--teal); background: var(--teal-tint); }

/* ── STORE BADGES (App Store / Google Play official spec) ── */
.store-badges { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.store-badge {
    display: inline-flex; align-items: center; gap: 0.65rem;
    background: #000000; color: #ffffff;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 0.55rem 1.1rem 0.55rem 0.95rem;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    min-width: 168px;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); background: #1a1a1a; }
.store-badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge .store-text { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge .store-pre { font-size: 0.62rem; font-weight: 400; letter-spacing: 0.02em; color: #ffffff; opacity: 0.9; }
.store-badge .store-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 600; color: #ffffff; letter-spacing: -0.01em; }
.store-badge.disabled { opacity: 0.55; cursor: not-allowed; pointer-events: none; }
.store-note { font-size: 0.78rem; color: var(--ink-muted); margin-top: 0.6rem; }
.store-note.light { color: rgba(255,255,255,0.55); }

/* Download CTA band */
.download-band {
    background: linear-gradient(135deg, #0d2222 0%, #003a3a 100%);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
    color: var(--white);
}
.download-band .eyebrow { color: var(--teal-mid); }
.download-band h2 { color: var(--white); }
.download-band p { color: rgba(255,255,255,0.65); }
.download-band-visual { display: flex; justify-content: center; }
.qr-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(0,158,157,0.3);
    border-radius: 18px;
    padding: 1.5rem;
    display: flex; align-items: center; gap: 1.2rem;
    max-width: 320px;
}
.qr-box {
    width: 84px; height: 84px; background: #fff; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    padding: 6px;
}
.qr-card-text strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; display: block; margin-bottom: 0.3rem; }
.qr-card-text p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-store-badges { display: flex; gap: 0.6rem; margin-top: 1.3rem; flex-wrap: wrap; }
.store-badge.small { min-width: 0; padding: 0.4rem 0.8rem 0.4rem 0.65rem; gap: 0.45rem; border-radius: 8px; }
.store-badge.small svg { width: 18px; height: 18px; }
.store-badge.small .store-pre { font-size: 0.55rem; }
.store-badge.small .store-name { font-size: 0.82rem; }
.hero-trust {
    margin-top: 2.5rem;
    display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
}
.hero-trust span {
    font-size: 0.8rem; color: var(--ink-muted);
    display: flex; align-items: center; gap: 0.4rem;
}
.hero-trust svg { color: var(--teal); }

/* ── PHONE MOCKUP ── */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.phone-wrap { position: relative; width: 280px; }
.phone-shell {
    width: 280px; background: var(--ink); border-radius: 42px;
    padding: 14px 10px;
    box-shadow: 0 40px 80px rgba(0,158,157,0.18), 0 0 0 1px rgba(255,255,255,0.06);
}
.phone-notch {
    width: 90px; height: 24px; background: var(--ink);
    border-radius: 0 0 18px 18px; margin: 0 auto 8px;
}
.phone-screen { background: #0a1a1a; border-radius: 28px; overflow: hidden; height: 500px; }
.phone-status {
    background: #0d2222; padding: 8px 16px;
    display: flex; justify-content: space-between; align-items: center;
}
.phone-status span { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.62rem; color: var(--teal-mid); }
.phone-header { background: #0d2222; padding: 12px 16px 16px; border-bottom: 1px solid rgba(0,158,157,0.2); }
.phone-header-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--white); }
.phone-header-sub { font-size: 0.65rem; color: var(--teal); margin-top: 2px; font-family: 'Plus Jakarta Sans', sans-serif; }
.phone-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px 12px 0; }
.phone-stat { background: rgba(0,158,157,0.12); border: 1px solid rgba(0,158,157,0.25); border-radius: 12px; padding: 10px; }
.phone-stat-label { font-size: 0.55rem; color: var(--teal); letter-spacing: 0.06em; text-transform: uppercase; }
.phone-stat-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--white); margin-top: 2px; }
.phone-feed-label { font-size: 0.6rem; color: var(--ink-muted); letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 12px 4px; }
.phone-feed { overflow: hidden; height: 200px; }
.phone-feed-inner { display: flex; flex-direction: column; animation: feedScroll 12s linear infinite; }
@keyframes feedScroll { 0%{transform:translateY(0)} 100%{transform:translateY(-50%)} }
.feed-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 7px 12px; border-bottom: 1px solid rgba(0,158,157,0.08);
}
.feed-item-left { display: flex; flex-direction: column; }
.feed-item-name { font-size: 0.68rem; color: var(--white); font-weight: 500; }
.feed-item-time { font-size: 0.55rem; color: var(--ink-muted); margin-top: 1px; }
.feed-item-amt { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.72rem; font-weight: 700; color: var(--teal); }
.feed-item-amt.expense { color: #ff8080; }
.badge-float {
    position: absolute; background: var(--white); border-radius: 14px;
    padding: 10px 16px; box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    display: flex; align-items: center; gap: 10px; white-space: nowrap;
}
.badge-float .badge-icon {
    width: 36px; height: 36px; background: var(--teal-tint); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.badge-float .badge-text { font-size: 0.78rem; }
.badge-float .badge-text strong { display: block; font-weight: 700; color: var(--ink); font-size: 0.85rem; }
.badge-float .badge-text span { color: var(--ink-muted); font-size: 0.7rem; }
.badge-1 { left: -60px; top: 120px; animation: floatBadge 4s ease-in-out infinite; }
.badge-2 { right: -55px; bottom: 130px; animation: floatBadge 4s ease-in-out infinite 2s; }
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 1.5rem 5vw; text-align: center;
}
.trust-bar p { font-size: 0.78rem; color: var(--ink-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.trust-logos { display: flex; gap: 1rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.trust-chip {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--bg); border: 1px solid var(--border); border-radius: 100px;
    padding: 0.4rem 1rem; font-size: 0.8rem; font-weight: 600; color: var(--ink-soft);
}
.trust-chip .dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }

/* ── GENERIC SECTION WRAPPER ── */
.section-wrap { padding: 5rem 5vw; max-width: 1280px; margin: 0 auto; }
.section-eyebrow {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem; display: block;
}
.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.025em; line-height: 1.12; color: var(--ink); margin-bottom: 1.1rem;
}
.section-sub { font-size: 1rem; color: var(--ink-soft); max-width: 540px; line-height: 1.65; }

/* ── FEATURES ── */
.features-box { background: var(--white); border-radius: 24px; padding: 3rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.5rem; }
.feature-card {
    background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 1.6rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: var(--teal-mid); box-shadow: 0 6px 24px rgba(0,158,157,0.1); transform: translateY(-2px); }
.feature-icon {
    width: 48px; height: 48px; background: var(--teal-tint); border-radius: 13px;
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem;
}
.feature-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; }
.addon-strip {
    margin-top: 2rem; padding: 1.2rem 1.5rem;
    background: var(--teal-tint); border: 1px dashed var(--teal-mid); border-radius: 14px;
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.addon-strip strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; display: block; margin-bottom: 2px; }
.addon-strip p { font-size: 0.83rem; color: var(--ink-soft); }
.addon-strip a { margin-left: auto; color: var(--teal-deep); font-weight: 600; font-size: 0.85rem; text-decoration: none; white-space: nowrap; }
.addon-strip a:hover { text-decoration: underline; }

/* ── HOW IT WORKS ── */
.how-box {
    background: linear-gradient(135deg, #0d2222 0%, #003a3a 100%);
    border-radius: 24px; padding: 3.5rem 3rem; color: var(--white);
}
.how-box .section-eyebrow { color: var(--teal-mid); }
.how-box .section-title { color: var(--white); }
.how-box .section-sub { color: rgba(255,255,255,0.65); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 2rem; margin-top: 3rem; }
.step-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--teal); opacity: 0.35; line-height: 1; margin-bottom: 1rem; }
.step h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--white); margin-bottom: 0.5rem; }
.step p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ── MULTI-BUSINESS ── */
.multi-box {
    background: var(--teal-tint); border: 1px solid var(--teal-mid); border-radius: 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 3rem;
}
.multi-visual { display: flex; flex-direction: column; gap: 0.75rem; }
.biz-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 14px;
    padding: 1rem 1.2rem; display: flex; align-items: center; gap: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.biz-card:hover { border-color: var(--teal-mid); box-shadow: 0 4px 14px rgba(0,158,157,0.1); }
.biz-avatar {
    width: 42px; height: 42px; background: var(--teal-tint); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.biz-info h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.biz-info p { font-size: 0.75rem; color: var(--ink-muted); margin-top: 1px; }
.biz-status {
    margin-left: auto; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.7rem; color: var(--teal-deep);
    background: var(--teal-tint); padding: 0.25rem 0.6rem; border-radius: 100px; border: 1px solid var(--teal-mid);
}

/* ── PRICING ── */
.pricing-center { text-align: center; }
.pricing-card {
    display: inline-block; background: var(--white); border: 2px solid var(--teal); border-radius: 24px;
    padding: 3rem 4rem; max-width: 520px; width: 100%;
    box-shadow: 0 20px 60px rgba(0,158,157,0.12); text-align: left; position: relative; overflow: hidden;
}
.pricing-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--teal-deep));
}
.pricing-badge {
    display: inline-flex; background: var(--teal-tint); color: var(--teal-deep);
    border: 1px solid var(--teal-mid); border-radius: 100px;
    padding: 0.3rem 0.9rem; font-size: 0.75rem; font-weight: 600; margin-bottom: 1.5rem;
}
.pricing-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--ink); margin-bottom: 0.5rem; }
.pricing-price { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.5rem; }
.pricing-currency { font-size: 1.1rem; font-weight: 700; color: var(--teal); }
.pricing-amount { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 3.5rem; color: var(--ink); line-height: 1; letter-spacing: -0.04em; }
.pricing-period { font-size: 0.9rem; color: var(--ink-muted); }
.pricing-note { font-size: 0.82rem; color: var(--ink-muted); margin-bottom: 2rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.9rem; color: var(--ink-soft); }
.pricing-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-cta { width: 100%; text-align: center; padding: 1rem; font-size: 1rem; }
.pricing-sub { font-size: 0.8rem; color: var(--ink-muted); margin-top: 1rem; text-align: center; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
details {
    background: var(--white); border: 1px solid var(--border); border-radius: 14px;
    padding: 1.2rem 1.5rem; cursor: pointer;
}
details[open] { border-color: var(--teal-mid); }
summary {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; color: var(--ink);
    list-style: none; display: flex; justify-content: space-between; align-items: center;
    user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.4rem; color: var(--teal); font-weight: 400; }
details[open] summary::after { content: '−'; }
details p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; margin-top: 0.9rem; }

/* ── CTA BAND ── */
.cta-band {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    border-radius: 24px; padding: 4rem 5vw; text-align: center; color: var(--white);
}
.cta-band h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: -0.025em; margin-bottom: 1rem; }
.cta-band p { font-size: 1rem; opacity: 0.8; margin-bottom: 2rem; }
.btn-white {
    background: var(--white); color: var(--teal-deep);
    padding: 0.9rem 2.2rem; border-radius: 10px; font-weight: 700; font-size: 0.95rem;
    text-decoration: none; display: inline-block; transition: transform 0.15s, box-shadow 0.15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ── FOOTER ── */
footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 3rem 5vw 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--teal); margin-bottom: 0.8rem; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.65; max-width: 320px; }
.footer-col h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--white); margin-bottom: 1rem; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.78rem; }
.footer-bottom a { color: var(--teal); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .store-badges { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { display: none; }
    .multi-box { grid-template-columns: 1fr; }
    .download-band { grid-template-columns: 1fr; text-align: center; }
    .download-band .store-badges { justify-content: center; }
    .download-band-visual { order: -1; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-store-badges { justify-content: center; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 64px; left: 0; right: 0;
        background: var(--white); border-bottom: 1px solid var(--border);
        padding: 1.5rem 5vw; gap: 1rem; z-index: 99;
    }
}
@media (max-width: 600px) {
    .badge-1, .badge-2 { display: none; }
    .pricing-card { padding: 2rem 1.5rem; }
    .features-box, .how-box, .multi-box, .download-band { padding: 2rem 1.5rem; }
    .qr-card { flex-direction: column; text-align: center; max-width: 100%; }
}
