:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-section: #fafbfc;
  --bg-card: #ffffff;
  --green: #10b981;
  --green-bright: #34d399;
  --green-deep: #047857;
  --green-soft: rgba(16, 185, 129, 0.05);
  --green-border: rgba(16, 185, 129, 0.18);
  --accent: #3b82f6;
  --accent-glow: rgba(59, 130, 246, 0.08);
  --orange: #f97316;
  --red: #ef4444;
  --pink: #ec4899;
  --purple: #a855f7;
  --text: #0f172a;
  --text-mid: #475569;
  --text-dim: #94a3b8;
  --border: rgba(15, 23, 42, 0.06);
  --border-strong: rgba(15, 23, 42, 0.1);
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.05);
  --shadow-md: 0 4px 8px rgba(15,23,42,0.04), 0 10px 24px rgba(15,23,42,0.06);
  /* Unified to one family across the brand. Outfit carries body, display,
     and numbers via weight hierarchy alone. The legacy `--serif` variable
     is removed — `--sans` is the single source of truth. */
  --sans: 'Outfit', -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--sans); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

.constellation { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; opacity: 0.55; }
.constellation canvas { width: 100%; height: 100%; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
section { padding: 100px 0; position: relative; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 14px 24px; background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
nav .inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 30px; width: auto; }
.logo-text { font-family: var(--sans); font-size: 22px; font-weight: 400; color: var(--text); letter-spacing: -0.5px; line-height: 1; margin-bottom: -2px; }
nav a.nav-link { color: var(--text-mid); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
nav a.nav-link:hover { color: var(--text); }
nav a.nav-link.active { color: var(--green-deep); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-cta { background: var(--green); color: #fff !important; padding: 9px 20px; border-radius: 10px; font-weight: 600; font-size: 13px !important; transition: transform 0.2s, background 0.2s, box-shadow 0.2s; }
.nav-cta:hover { transform: translateY(-1px); background: var(--green-deep); box-shadow: 0 6px 18px rgba(16,185,129,0.25); }

/* Hero — animated phone-frame rotates through 4 screens (home → savings →
   cancellation → smart money) so visitors SEE Catcher before they read
   about it. Text + waitlist form sit beside the phone on desktop, stack
   below on mobile. */
.hero { padding: 130px 0 100px; background: linear-gradient(180deg, #047857 0%, #059669 22%, #10b981 45%, #6ee7b7 68%, rgba(255,255,255,0.7) 86%, #ffffff 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(4,78,59,0.35), transparent 70%), radial-gradient(ellipse 400px 300px at 80% 10%, rgba(255,255,255,0.18), transparent 60%); pointer-events: none; }
.hero > * { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.hero-text { text-align: left; }
.hero-logo { height: 44px; width: auto; margin-bottom: 22px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08)); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 100px; background: rgba(255,255,255,0.25); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.4); font-size: 12px; font-weight: 600; color: #fff; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; box-shadow: 0 0 8px rgba(255,255,255,0.8); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }
.hero h1 { font-family: var(--sans); font-size: clamp(36px, 5vw, 60px); line-height: 1.05; letter-spacing: -1.8px; color: #fff; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(6,78,59,0.12); }
/* Em emphasis on hero h1 — Outfit doesn't ship in italic via our load,
   so the differentiator is now the underline pseudo-element only. Keeps
   the underline highlight visual without faking italic (which Outfit
   does poorly via browser-synthesised slant). */
.hero h1 em { font-style: normal; color: #fff; position: relative; display: inline-block; }
.hero h1 em::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.5); border-radius: 2px; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.92); max-width: 520px; margin: 0 0 32px; line-height: 1.6; }
.hero-form { display: flex; gap: 10px; max-width: 460px; margin: 0 0 14px; padding: 6px; background: rgba(255,255,255,0.5); border-radius: 14px; border: 1px solid rgba(255,255,255,0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 8px 32px rgba(6,78,59,0.12); }
.hero-form input { flex: 1; padding: 13px 18px; border-radius: 10px; border: none; background: #fff; color: var(--text); font-family: var(--sans); font-size: 15px; outline: none; transition: box-shadow 0.2s; min-width: 0; }
.hero-form input::placeholder { color: var(--text-dim); }
.hero-form input:focus { box-shadow: 0 0 0 2px rgba(16,185,129,0.25); }
.hero-form button { padding: 13px 22px; border-radius: 10px; border: none; background: var(--green-deep); color: #fff; font-family: var(--sans); font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: transform 0.15s, background 0.2s, box-shadow 0.2s; }
.hero-form button:hover { transform: translateY(-1px); background: #064e3b; box-shadow: 0 6px 16px rgba(4,78,59,0.3); }
.hero-form button:disabled { opacity: 0.85; cursor: not-allowed; }
.form-consent { font-size: 11px; color: rgba(255,255,255,0.85); max-width: 460px; margin: 0 0 22px; line-height: 1.5; }
.form-consent a { color: #fff; text-decoration: underline; font-weight: 500; }
.trust-line { font-size: 12px; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-weight: 500; }
.trust-line span { display: flex; align-items: center; gap: 6px; }
.trust-line svg { width: 14px; height: 14px; }

/* Hero phone stack — 4 absolutely-positioned screenshots fading between
   each other in a 16s loop (4s per screen). Same .phone-frame style is
   reused in Smart Money + Pricing sections so the visual vocabulary is
   consistent. */
/* iPhone-style device frame: thin dark bezel ring around the screenshot,
   multi-layer shadow (contact + mid + brand ambient) to ground the device
   in the layout. Bezel is created by giving the frame a dark background
   and inset-ing the screenshot 8px inside it. */
.phone-frame { position: relative; width: 100%; max-width: 320px; aspect-ratio: 9 / 19.5; margin: 0 auto; border-radius: 48px; overflow: hidden; background: #0f1115; box-shadow: 0 2px 4px rgba(15,23,42,0.04), 0 12px 28px rgba(15,23,42,0.10), 0 32px 64px rgba(15,23,42,0.14), 0 50px 100px rgba(16,185,129,0.10); transform: rotate(-2deg); }
.phone-frame img { position: absolute; inset: 8px; width: calc(100% - 16px); height: calc(100% - 16px); border-radius: 40px; object-fit: cover; }
.hero-phone-stack { position: relative; }
.hero-phone-stack img { animation: phone-rotate 16s ease-in-out infinite; opacity: 0; }
.hero-phone-stack img:nth-child(1) { animation-delay: 0s; }
.hero-phone-stack img:nth-child(2) { animation-delay: 4s; }
.hero-phone-stack img:nth-child(3) { animation-delay: 8s; }
.hero-phone-stack img:nth-child(4) { animation-delay: 12s; }
@keyframes phone-rotate {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  22%  { opacity: 1; }
  25%  { opacity: 0; }
  100% { opacity: 0; }
}

@media (max-width: 880px) {
  .hero { padding: 110px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-text { text-align: center; }
  .hero h1 { font-size: clamp(34px, 8vw, 46px); }
  .hero-sub, .hero-form, .form-consent { margin-left: auto; margin-right: auto; }
  .trust-line { justify-content: center; }
  .phone-frame { max-width: 280px; transform: none; }
}

.section-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--green); font-weight: 700; margin-bottom: 14px; }
.section-title { font-family: var(--sans); font-size: clamp(32px, 4vw, 52px); letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px; color: var(--text); }
.section-sub { font-size: 16px; color: var(--text-mid); max-width: 560px; line-height: 1.65; }
.section-head { text-align: center; }
.section-head .section-sub { margin: 0 auto; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.step { padding: 36px 28px; border-radius: 20px; background: var(--bg-card); border: 1px solid var(--border); position: relative; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-border); }
.step-num { font-family: var(--sans); font-size: 72px; font-weight: 800; color: rgba(16,185,129,0.08); position: absolute; top: -10px; right: 18px; line-height: 1; }
.step-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; font-size: 24px; }
.step h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.step p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

.showcase-section { padding: 120px 0; background: var(--bg-section); }
.showcase-intro { text-align: center; margin-bottom: 80px; }
.showcase-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 120px; }
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row.reverse .showcase-phone { order: 2; }
.showcase-row.reverse .showcase-text { order: 1; }
.showcase-text .showcase-tag { display: inline-block; padding: 5px 13px; border-radius: 100px; background: var(--green-soft); border: 1px solid var(--green-border); color: var(--green-deep); font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 22px; }
.showcase-text h3 { font-family: var(--sans); font-size: clamp(30px, 3.4vw, 42px); line-height: 1.08; letter-spacing: -1.2px; margin-bottom: 20px; color: var(--text); }
/* Em emphasis on display headings — weight contrast + colour shift replaces
   the old serif-italic treatment. Outfit doesn't ship italic via our load,
   and faux-italic at display size looks cheap. Same pattern below on
   .final-cta h2 em and .page-hero h1 em. */
.showcase-text h3 em { font-style: normal; font-weight: 800; color: var(--green-deep); }
.showcase-text p { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 18px; }
.showcase-text .showcase-detail { font-size: 14px; color: var(--text-dim); padding-left: 16px; border-left: 3px solid var(--green); line-height: 1.6; margin-bottom: 0; }
/* Same bezel treatment for in-flow screenshots in the showcase rows.
   The IMG sits inside in normal flow with its own border-radius — the
   dark frame background creates the 8px bezel ring around it. */
.showcase-phone { position: relative; max-width: 320px; margin: 0 auto; border-radius: 48px; padding: 8px; background: #0f1115; box-shadow: 0 2px 4px rgba(15,23,42,0.04), 0 12px 28px rgba(15,23,42,0.10), 0 32px 64px rgba(15,23,42,0.14), 0 50px 100px rgba(16,185,129,0.06); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.showcase-phone:hover { transform: translateY(-8px); box-shadow: 0 4px 8px rgba(15,23,42,0.06), 0 20px 40px rgba(15,23,42,0.12), 0 40px 80px rgba(15,23,42,0.16), 0 60px 120px rgba(16,185,129,0.12); }
.showcase-phone img { width: 100%; height: auto; display: block; border-radius: 40px; }

.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
.feature-card { padding: 30px; border-radius: 20px; background: var(--bg-card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.feature-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.feature-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.feature-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; }
.feature-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.feature-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; }
.feature-example { margin-top: 16px; padding: 13px 16px; border-radius: 12px; background: var(--green-soft); border-left: 3px solid var(--green); font-size: 12.5px; color: var(--text-mid); line-height: 1.6; }

.smart-section { background: var(--bg-section); }
.smart-layout { display: grid; grid-template-columns: 320px 1fr; gap: 60px; align-items: center; margin-top: 56px; }
.smart-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.smart-card { padding: 24px 22px; border-radius: 16px; background: var(--bg-card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s; }
.smart-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.smart-icon-wrap { width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: var(--green-soft); margin-bottom: 14px; font-size: 22px; }
.smart-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.smart-card p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.smart-phone { transform: rotate(2deg); }

.smart-gallery { margin-top: 80px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.smart-gallery-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.smart-gallery-item .showcase-phone { max-width: 220px; transform: none; margin-bottom: 18px; }
.smart-gallery-item h5 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.smart-gallery-item p { font-size: 12.5px; color: var(--text-mid); line-height: 1.55; }
.smart-gallery-heading { text-align: center; margin-top: 80px; }
.smart-gallery-heading h3 { font-size: 24px; font-weight: 600; color: var(--text); margin-bottom: 8px; letter-spacing: -0.02em; }
.smart-gallery-heading p { font-size: 15px; color: var(--text-mid); }
@media (max-width: 900px) {
  .smart-gallery { grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
}
@media (max-width: 540px) {
  .smart-gallery { grid-template-columns: 1fr; gap: 32px; }
  .smart-gallery-item .showcase-phone { max-width: 240px; }
}
@media (max-width: 880px) {
  .smart-layout { grid-template-columns: 1fr; gap: 40px; }
  .smart-phone { max-width: 260px; transform: none; }
}

.model-section { text-align: center; background: var(--bg); }
.model-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: center; max-width: 980px; margin: 56px auto 0; }
.model-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.model-card { padding: 32px 26px; border-radius: 22px; text-align: left; transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.model-card.free { background: var(--bg-card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.model-card.free:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.model-card.pro { background: linear-gradient(160deg, #ffffff, #f0fdf4); border: 1.5px solid var(--green-border); box-shadow: 0 8px 24px rgba(16,185,129,0.1), 0 24px 48px rgba(16,185,129,0.08); }
.pro-phone { transform: rotate(-2deg); }
@media (max-width: 880px) {
  .model-layout { grid-template-columns: 1fr; gap: 40px; }
  .model-cards { grid-template-columns: 1fr; }
  .pro-phone { max-width: 260px; transform: none; }
}
.model-card.pro:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(16,185,129,0.15), 0 32px 56px rgba(16,185,129,0.1); }
.pro-badge { position: absolute; top: -12px; right: 24px; background: var(--green); color: #fff; padding: 5px 14px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; box-shadow: 0 4px 12px rgba(16,185,129,0.3); }
.model-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.model-tagline { font-size: 13px; color: var(--text-dim); margin-bottom: 24px; }
.model-price { font-family: var(--sans); font-size: 52px; color: var(--text); margin: 0; letter-spacing: -2px; line-height: 1; }
.price-unit { font-family: var(--sans); font-size: 16px; color: var(--text-dim); font-weight: 400; margin-left: 4px; }
.model-price-sub { font-size: 13px; color: var(--text-dim); margin-top: 6px; margin-bottom: 4px; }
.model-price-alt { font-size: 12px; color: var(--green-deep); margin-bottom: 28px; font-weight: 500; min-height: 18px; }
.model-features { list-style: none; }
.model-features li { padding: 11px 0; font-size: 14px; color: var(--text-mid); display: flex; align-items: flex-start; gap: 10px; border-bottom: 1px solid var(--border); line-height: 1.5; }
.model-features li:last-child { border: none; padding-bottom: 0; }
.model-features li strong { color: var(--text); font-weight: 600; }
.check { color: var(--green); font-weight: bold; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--green-soft); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; margin-top: 2px; }

.security-section { background: var(--bg-section); }
.security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.sec-item { padding: 30px 22px; border-radius: 20px; text-align: center; background: var(--bg-card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.sec-icon-wrap { width: 52px; height: 52px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: var(--green-soft); margin-bottom: 16px; font-size: 24px; }
.sec-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.sec-item p { font-size: 12.5px; color: var(--text-mid); line-height: 1.65; }
.privacy-detail-card { padding: 32px; border-radius: 20px; background: var(--bg-card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); margin-top: 24px; }
.privacy-detail-card h4 { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; color: var(--green-deep); }
.privacy-detail-card.accent h4 { color: #0284c7; }
.privacy-detail-card p { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.privacy-detail-card p strong { color: var(--text); font-weight: 600; }

.faq-section { background: var(--bg); }
.faq-list { max-width: 720px; margin: 56px auto 0; }
.faq-item { border: 1px solid var(--border); cursor: pointer; border-radius: 14px; margin-bottom: 12px; background: var(--bg-card); transition: border-color 0.2s, box-shadow 0.2s; }
.faq-item:hover { border-color: var(--border-strong); }
.faq-item.open { border-color: var(--green-border); box-shadow: 0 4px 16px rgba(16,185,129,0.06); }
.faq-q { padding: 20px 24px; font-size: 16px; font-weight: 500; display: flex; justify-content: space-between; align-items: center; color: var(--text); }
.faq-q .arrow { color: var(--green); transition: transform 0.3s; font-size: 18px; }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 24px 22px; }

.final-cta { text-align: center; padding: 140px 0; background: radial-gradient(ellipse 700px 400px at 50% 50%, rgba(16,185,129,0.1), transparent 70%), linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%); }
.final-cta h2 { font-family: var(--sans); font-size: clamp(36px, 5vw, 60px); letter-spacing: -2px; margin-bottom: 18px; color: var(--text); line-height: 1.05; }
.final-cta h2 em { font-style: normal; font-weight: 800; color: var(--green-deep); }
.final-cta p { font-size: 16px; color: var(--text-mid); margin-bottom: 36px; }
.final-cta .hero-form { background: rgba(255,255,255,0.9); border-color: var(--border); box-shadow: var(--shadow-md); }
.final-cta .hero-form input { background: var(--bg-soft); }
.final-cta .form-consent { color: var(--text-dim); }
.final-cta .form-consent a { color: var(--text-mid); }

/* Footer — multi-column on desktop with Product / Company / Security &
   Legal sections; collapses to single column on mobile. */
footer { padding: 64px 0 40px; border-top: 1px solid var(--border); background: var(--bg); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.footer-brand img { height: 28px; width: auto; margin-bottom: 14px; opacity: 0.85; }
.footer-brand p { font-size: 13px; color: var(--text-mid); line-height: 1.6; max-width: 280px; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-mid); text-decoration: none; font-size: 13.5px; transition: color 0.2s; }
.footer-col a:hover { color: var(--green-deep); }
.footer-bottom { max-width: 1100px; margin: 48px auto 0; padding: 24px 24px 0; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-dim); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom .copyright { line-height: 1.6; }
.footer-legal { font-size: 11px; color: var(--text-dim); margin-top: 18px; line-height: 1.7; max-width: 1100px; margin-left: auto; margin-right: auto; padding: 0 24px; text-align: center; }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

.cookie-banner { position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 600px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 20px 24px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; z-index: 200; box-shadow: 0 16px 48px rgba(15,23,42,0.12); }
.cookie-banner p { font-size: 13px; color: var(--text-mid); flex: 1; min-width: 240px; line-height: 1.6; }
.cookie-banner a { color: var(--green-deep); text-decoration: underline; font-weight: 500; }
.cookie-buttons { display: flex; gap: 8px; }
.cookie-btn { padding: 9px 18px; border-radius: 10px; border: none; font-family: var(--sans); font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.cookie-btn.accept { background: var(--green); color: #fff; }
.cookie-btn.accept:hover { background: var(--green-deep); }
.cookie-btn.decline { background: transparent; color: var(--text-mid); border: 1px solid var(--border-strong); }
.cookie-btn.decline:hover { background: var(--bg-soft); }
.cookie-banner.hidden { display: none; }

/* Page hero — used by sub-pages (features, smart-money, pricing, etc.)
   for a compact intro band without the full marketing hero treatment. */
.page-hero { padding: 130px 0 70px; background: linear-gradient(180deg, #047857 0%, #10b981 60%, rgba(255,255,255,0.8) 100%); position: relative; overflow: hidden; text-align: center; color: #fff; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 800px 300px at 50% 0%, rgba(4,78,59,0.4), transparent 70%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .page-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.85); font-weight: 700; margin-bottom: 14px; }
.page-hero h1 { font-family: var(--sans); font-size: clamp(38px, 5vw, 56px); line-height: 1.05; letter-spacing: -1.8px; color: #fff; margin-bottom: 18px; text-shadow: 0 2px 20px rgba(6,78,59,0.12); }
.page-hero h1 em { font-style: normal; font-weight: 800; color: #fff; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.92); max-width: 620px; margin: 0 auto; line-height: 1.6; }

/* About-page specific blocks. */
.about-prose { max-width: 720px; margin: 0 auto; }
.about-prose p { font-size: 17px; line-height: 1.7; color: var(--text-mid); margin-bottom: 22px; }
.about-prose p strong { color: var(--text); font-weight: 600; }
.about-prose blockquote { font-family: var(--sans); font-size: clamp(22px, 2.6vw, 30px); font-weight: 500; line-height: 1.35; letter-spacing: -0.5px; color: var(--text); border-left: 3px solid var(--green); padding: 4px 0 4px 28px; margin: 40px 0; }
.about-pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.about-pillar { padding: 32px; border-radius: 20px; background: var(--bg-card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.about-pillar .pillar-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--green-soft); color: var(--green-deep); display: inline-flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.about-pillar h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.about-pillar p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
@media (max-width: 720px) {
  .about-pillars { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .steps, .smart-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .model-cards { grid-template-columns: 1fr; max-width: 420px; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-form { flex-direction: column; padding: 8px; }
  .hero-form input, .hero-form button { width: 100%; }
  .nav-links .nav-link:not(.nav-cta) { display: none; }
  section { padding: 72px 0; }
  .hero { padding: 140px 0 80px; }
  .page-hero { padding: 110px 0 56px; }
  .showcase-section { padding: 80px 0; }
  .showcase-row { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
  .showcase-row.reverse .showcase-phone, .showcase-row.reverse .showcase-text { order: unset; }
  .showcase-phone { max-width: 280px; }
  .showcase-intro { margin-bottom: 60px; }
  .final-cta { padding: 90px 0; }
}
@media (max-width: 480px) {
  .security-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; letter-spacing: -1.5px; }
}

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
