/* Solantex — Shared Stylesheet
 * Version: 1.0.0
 * Location: /assets/sw.css
 */

/* ── Google Fonts: Inter + JetBrains Mono ──────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Design tokens ──────────────────────────────────────────────────────── */
:root {
  /* Amber — primary / Sunny brand */
  --sun:       #F59E0B;
  --sun-dk:    #D97706;
  --sun-xdk:   #B45309;
  --sun-glow:  rgba(245,158,11,.22);
  --sun-tint:  #FFFBEB;
  --sun-border:rgba(245,158,11,.32);

  /* Navy — base / authority */
  --navy:      #0A2540;
  --navy2:     #12335A;
  --navy3:     #1D4A78;
  --navy-glow: rgba(10,37,64,.08);

  /* Indigo — AI / tech accent */
  --indigo:    #4F46E5;
  --indigo-dk: #3730A3;
  --indigo-t:  #EEF2FF;
  --indigo-g:  rgba(79,70,229,.14);
  --indigo-b:  rgba(79,70,229,.28);

  /* Neutrals */
  --bg:        #F9FAFB;
  --frost:     #F3F4F6;
  --white:     #FFFFFF;
  --border:    #E5E7EB;
  --border-dk: #D1D5DB;

  /* Text */
  --text:      #111827;
  --text-b:    #374151;
  --text-c:    #6B7280;
  --text-d:    #9CA3AF;

  /* Semantic */
  --green:     #10B981;
  --green-t:   #D1FAE5;
  --red:       #EF4444;

  /* Type */
  --f:  'Inter', system-ui, -apple-system, sans-serif;
  --fm: 'JetBrains Mono', 'Fira Mono', monospace;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; overflow-x: hidden; }
body  { font-family: var(--f); background: var(--bg); color: var(--text);
        -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
img   { max-width: 100%; display: block; }

/* ── Keyframes ──────────────────────────────────────────────────────────── */
@keyframes rise    { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
@keyframes blink   { 0%,100%{opacity:1;} 50%{opacity:.35;} }
@keyframes ripple  { 0%{transform:scale(1);opacity:.6;} 100%{transform:scale(2.4);opacity:0;} }
@keyframes wave    { 0%,100%{height:4px;} 50%{height:22px;} }
@keyframes spin    { to{transform:rotate(360deg);} }
@keyframes slidein { from{transform:translateX(16px);opacity:0;} to{transform:none;opacity:1;} }

/* ── Header ─────────────────────────────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px;
  background: rgba(249,250,251,.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; gap: 16px; min-width: 0; overflow: hidden;
}
.h-logo { display:flex; align-items:center; gap:12px; flex-shrink:0; }
.h-mark  { width:38px; height:38px; flex-shrink:0; }
.h-words { display:flex; flex-direction:column; line-height:1; }
.h-wordmark { height:22px; width:auto; display:block; overflow:visible; }
.h-solan { color:var(--sun); }
.h-tag   { font-size:7px; font-weight:700; letter-spacing:2.2px; text-transform:uppercase;
           color:var(--text-c); margin-top:4px; }
.h-nav   { display:flex; align-items:center; gap:32px; flex-shrink:1; min-width:0; overflow:hidden; }
.h-nav a { font-size:13px; font-weight:600; color:var(--text-b); transition:color .15s; }
.h-nav a:hover, .h-nav a.active { color:var(--navy); }
.h-actions { display:flex; align-items:center; gap:12px; flex-shrink:0; }
.h-signin { font-size:13px; font-weight:600; color:var(--text-b); transition:color .15s; }
.h-signin:hover { color:var(--navy); }
.h-cta {
  background: var(--sun); color: var(--navy) !important;
  font-weight: 800 !important; font-size: 12px !important;
  letter-spacing: .6px; text-transform: uppercase;
  padding: 10px 20px; border-radius: 8px;
  box-shadow: 0 2px 14px var(--sun-glow);
  transition: background .15s, transform .15s !important;
}
.h-cta:hover { background: var(--sun-dk) !important; transform: translateY(-1px); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  font-family: var(--f); font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 10px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .15s, transform .15s, box-shadow .15s;
  text-decoration: none; line-height: 1;
}
.btn-sun {
  background: var(--sun); color: var(--navy);
  box-shadow: 0 4px 24px var(--sun-glow);
}
.btn-sun:hover { background: var(--sun-dk); transform: translateY(-2px); box-shadow: 0 8px 32px var(--sun-glow); }
.btn-sun-lg { font-size: 17px; font-weight: 800; padding: 17px 36px; border-radius: 12px; }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--border-dk);
}
.btn-outline:hover { border-color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy2); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.12); color: var(--white); border: 1px solid rgba(255,255,255,.2); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }

/* ── Layout helpers ──────────────────────────────────────────────────────── */
.section     { padding: 96px 52px; }
.section-alt { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-dk  { background: var(--navy); }
.inner       { max-width: 1180px; margin: 0 auto; }
.inner-sm    { max-width: 860px; margin: 0 auto; }

/* ── Section labels ──────────────────────────────────────────────────────── */
.sec-tag  { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
             color: var(--sun-xdk); margin-bottom: 12px; }
.sec-tag-i{ color: var(--indigo); }
.sec-h    { font-size: clamp(30px,3.8vw,48px); font-weight: 900; letter-spacing: -1.2px;
             line-height: 1.1; color: var(--navy); margin-bottom: 16px; }
.sec-h-wh { color: var(--white); }
.sec-p    { font-size: 17px; color: var(--text-b); line-height: 1.8; max-width: 560px; margin-bottom: 44px; }
.sec-p-wh { color: rgba(255,255,255,.72); }
.centered { text-align: center; }
.centered .sec-p { margin-left: auto; margin-right: auto; }

/* ── Eyebrow pill ────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sun-tint); border: 1px solid var(--sun-border);
  border-radius: 20px; padding: 5px 14px 5px 10px;
  margin-bottom: 20px;
}
.eyebrow-i {
  background: var(--indigo-t); border-color: var(--indigo-b);
}
.ey-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sun); flex-shrink:0; }
.ey-dot-i { background: var(--indigo); }
.ey-dot.live { animation: blink 2s ease infinite; }
.eyebrow span { font-size: 11px; font-weight: 700; letter-spacing: 1.8px;
                text-transform: uppercase; color: var(--sun-xdk); }
.eyebrow-i span { color: var(--indigo); }

/* ── Badges ──────────────────────────────────────────────────────────────── */
.badge     { display:inline-block; font-size:10px; font-weight:700; letter-spacing:1.5px;
              text-transform:uppercase; padding:4px 10px; border-radius:5px; }
.badge-sun { background:var(--sun-tint); color:var(--sun-xdk); border:1px solid var(--sun-border); }
.badge-ind { background:var(--indigo-t); color:var(--indigo-dk); border:1px solid var(--indigo-b); }
.badge-nav { background:rgba(10,37,64,.08); color:var(--navy); border:1px solid rgba(10,37,64,.14); }
.badge-grn { background:var(--green-t); color:#065F46; border:1px solid rgba(16,185,129,.28); }
.badge-live { animation:blink 3s ease infinite; }

/* ── Trust pills ─────────────────────────────────────────────────────────── */
.trust-row  { display:flex; flex-wrap:wrap; gap:10px; }
.trust-pill {
  display:flex; align-items:center; gap:6px;
  background:var(--frost); border:1px solid var(--border);
  border-radius:20px; padding:5px 14px;
  font-size:12px; font-weight:600; color:var(--text-b);
}
.tp { width:5px; height:5px; border-radius:50%; background:var(--green); flex-shrink:0; }

/* ── Cards ───────────────────────────────────────────────────────────────── */
.card {
  background:var(--white); border:1px solid var(--border);
  border-radius:16px; padding:28px;
  transition:box-shadow .2s, transform .2s;
}
.card:hover { box-shadow:0 12px 40px var(--navy-glow); transform:translateY(-3px); }
.card-sun { border-color:var(--sun-border); box-shadow:0 2px 12px var(--sun-glow); }

/* ── Grids ───────────────────────────────────────────────────────────────── */
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }

/* ── Page hero (inner pages) ─────────────────────────────────────────────── */
.page-hero {
  padding: calc(68px + 56px) 52px 56px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(245,158,11,.04) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(245,158,11,.04) 1px,transparent 1px);
  background-size:52px 52px; pointer-events:none;
}
.page-hero::after {
  content:''; position:absolute; top:-80px; right:-140px;
  width:640px; height:640px;
  background:radial-gradient(circle,rgba(245,158,11,.09) 0%,transparent 58%);
  pointer-events:none;
}
.page-hero-inner { max-width:1180px; margin:0 auto; position:relative; z-index:1; }

/* ── Feature list ────────────────────────────────────────────────────────── */
.feat-list { display:flex; flex-direction:column; gap:9px; margin-bottom:24px; }
.feat      { display:flex; align-items:flex-start; gap:10px; font-size:14px;
              color:var(--text-b); line-height:1.5; }
.feat-ck   { width:18px; height:18px; border-radius:50%; background:var(--sun-tint);
              color:var(--sun-xdk); display:flex; align-items:center; justify-content:center;
              font-size:9px; font-weight:900; flex-shrink:0; margin-top:1px; }
.feat-ck-i { background:var(--indigo-t); color:var(--indigo-dk); }

/* ── Stat strip ──────────────────────────────────────────────────────────── */
.strip {
  background:var(--white); border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  overflow-x:auto; scrollbar-width:none;
}
.strip::-webkit-scrollbar { display:none; }
.strip-inner {
  display:flex; align-items:stretch;
  max-width:1180px; margin:0 auto;
  min-width:max-content; padding:0 52px;
}
.si { padding:18px 28px; border-right:1px solid var(--border);
       display:flex; flex-direction:column; gap:2px; white-space:nowrap; }
.si:last-child { border-right:none; }
.si-lbl { font-size:9px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--text-d); }
.si-val { font-family:var(--fm); font-size:22px; font-weight:500; letter-spacing:-.5px; color:var(--navy); }
.si-val.s { color:var(--sun-dk); }
.si-val.i { color:var(--indigo); }
.si-val.g { color:var(--green); }

/* ── Voice mockup ────────────────────────────────────────────────────────── */
.voice-wrap  { position:relative; }
.voice-card  {
  background:var(--white); border:1px solid var(--border);
  border-radius:22px; overflow:hidden;
  box-shadow:0 28px 72px rgba(10,37,64,.12), 0 6px 20px rgba(10,37,64,.06);
}
.vc-header   {
  background:var(--navy); padding:16px 22px;
  display:flex; align-items:center; justify-content:space-between;
}
.vc-brand    { display:flex; align-items:center; gap:9px; }
.vc-sun-icon { width:28px; height:28px; }
.vc-name     { font-size:15px; font-weight:800; color:var(--white); }
.vc-name span{ color:var(--sun); }
.vc-status   {
  display:flex; align-items:center; gap:6px;
  font-size:10px; font-weight:600; letter-spacing:1.4px;
  text-transform:uppercase; color:rgba(255,255,255,.5);
}
.vc-live-dot { width:6px; height:6px; border-radius:50%; background:var(--green);
               animation:blink 2s ease infinite; flex-shrink:0; }
.vc-body     { padding:20px 22px; display:flex; flex-direction:column; gap:14px; }
.vc-msg      { display:flex; flex-direction:column; gap:4px; }
.vc-msg.user { align-items:flex-end; }
.vc-msg.sunny{ align-items:flex-start; }
.vc-label    { font-size:10px; font-weight:700; letter-spacing:1px; text-transform:uppercase;
               color:var(--text-d); }
.vc-bubble   {
  font-size:13px; line-height:1.6; color:var(--text);
  background:var(--frost); border-radius:12px; padding:11px 15px;
  max-width:88%; border:1px solid var(--border);
}
.vc-bubble.user-b { background:var(--navy); color:var(--white); border-color:transparent; }
.vc-bubble.sunny-b{
  background:var(--sun-tint); border-color:var(--sun-border);
  position:relative;
}
.vc-bubble.sunny-b::before {
  content:'☀'; position:absolute; top:-8px; left:12px;
  font-size:12px; line-height:1;
}
.vc-lang     {
  display:flex; align-items:center; gap:8px;
  padding:8px 22px; background:var(--frost);
  border-top:1px solid var(--border);
  font-size:11px; font-weight:600; color:var(--text-c);
}
.vc-lang-dot { width:8px; height:8px; border-radius:50%; background:var(--green); animation:blink 3s ease infinite; flex-shrink:0; }
.vc-ptt-area {
  padding:18px 22px 22px;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  border-top:1px solid var(--border);
}
.ptt-btn {
  width:64px; height:64px; border-radius:50%;
  background:var(--sun); border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  position:relative; box-shadow:0 6px 24px var(--sun-glow);
  transition:transform .15s;
}
.ptt-btn:hover { transform:scale(1.08); }
.ptt-btn::before, .ptt-btn::after {
  content:''; position:absolute; inset:-6px; border-radius:50%;
  background:var(--sun); opacity:.3; animation:ripple 2s ease infinite;
}
.ptt-btn::after { animation-delay:.7s; }
.ptt-lbl { font-size:11px; font-weight:600; color:var(--text-c); letter-spacing:.5px; }
.ptt-icon { width:26px; height:26px; position:relative; z-index:1; }

/* ── Waveform ────────────────────────────────────────────────────────────── */
.waveform { display:flex; align-items:center; gap:3px; height:28px; }
.wv-bar {
  width:3px; border-radius:3px;
  background:var(--sun); opacity:.7;
  animation:wave .8s ease infinite;
}
.wv-bar:nth-child(2) { animation-delay:.1s; height:8px; }
.wv-bar:nth-child(3) { animation-delay:.2s; }
.wv-bar:nth-child(4) { animation-delay:.3s; height:14px; }
.wv-bar:nth-child(5) { animation-delay:.4s; }
.wv-bar:nth-child(6) { animation-delay:.15s; height:10px; }
.wv-bar:nth-child(7) { animation-delay:.25s; }
.wv-bar:nth-child(8) { animation-delay:.35s; height:6px; }

/* ── Vertical cards ──────────────────────────────────────────────────────── */
.vert-grid  { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.vert-card  {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:14px; padding:22px 20px;
  display:flex; flex-direction:column; gap:10px;
  transition:border-color .2s, box-shadow .2s, transform .2s;
  position:relative; overflow:hidden; cursor:pointer; text-decoration:none;
}
.vert-card:hover {
  border-color:var(--sun); box-shadow:0 8px 32px var(--sun-glow);
  transform:translateY(-3px);
}
.vert-card.soon {
  opacity:.75; cursor:default;
}
.vert-card.soon:hover { transform:none; border-color:var(--border); box-shadow:none; }
.vert-icon  {
  width:44px; height:44px; border-radius:10px;
  background:var(--sun-tint); display:flex; align-items:center;
  justify-content:center; font-size:22px;
}
.vert-icon-i { background:var(--indigo-t); }
.vert-card-name { font-size:16px; font-weight:800; color:var(--navy); }
.vert-card-desc { font-size:12px; color:var(--text-c); line-height:1.5; }
.vert-badge { position:absolute; top:14px; right:14px; }
.vert-api   {
  font-size:10px; font-weight:600; color:var(--text-d);
  display:flex; align-items:center; gap:4px; margin-top:auto; padding-top:6px;
}
.vert-api-dot { width:5px; height:5px; border-radius:50%; background:var(--green); flex-shrink:0; }

/* ── Plan cards ──────────────────────────────────────────────────────────── */
.plan-grid   { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; max-width:960px; margin:0 auto; }
.plan-card   {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:18px; padding:32px 28px;
  display:flex; flex-direction:column;
  transition:box-shadow .2s, transform .2s;
  position:relative;
}
.plan-card.featured {
  border-color:var(--sun); box-shadow:0 8px 40px var(--sun-glow);
  transform:scale(1.03);
}
.plan-rec   {
  position:absolute; top:-12px; left:50%; transform:translateX(-50%);
  background:var(--sun); color:var(--navy); font-size:10px; font-weight:800;
  letter-spacing:1.5px; text-transform:uppercase;
  padding:5px 16px; border-radius:20px;
  white-space:nowrap;
}
.plan-name   { font-size:15px; font-weight:800; color:var(--navy); margin-bottom:6px; }
.plan-price  { font-family:var(--fm); font-size:38px; font-weight:500; letter-spacing:-1px;
               color:var(--navy); line-height:1; }
.plan-price sup { font-size:18px; font-weight:600; vertical-align:super; font-family:var(--f); }
.plan-price sub { font-size:13px; font-weight:500; color:var(--text-c); font-family:var(--f); }
.plan-desc   { font-size:13px; color:var(--text-c); line-height:1.55; margin:12px 0 20px; }
.plan-feats  { display:flex; flex-direction:column; gap:8px; margin-bottom:28px; flex:1; }
.pf          { display:flex; align-items:flex-start; gap:8px; font-size:13px; color:var(--text-b); }
.pf-ck       { width:16px; height:16px; border-radius:50%; background:var(--sun-tint);
               color:var(--sun-xdk); display:flex; align-items:center; justify-content:center;
               font-size:9px; font-weight:900; flex-shrink:0; margin-top:1px; }
.plan-toggle { display:flex; align-items:center; justify-content:center; gap:12px;
               margin-bottom:40px; font-size:13px; font-weight:600; color:var(--text-b); }
.toggle-sw   {
  width:48px; height:26px; border-radius:13px; background:var(--border);
  position:relative; cursor:pointer; transition:background .2s;
}
.toggle-sw.on { background:var(--sun); }
.toggle-knob {
  width:20px; height:20px; border-radius:50%; background:var(--white);
  position:absolute; top:3px; left:3px; transition:left .2s;
  box-shadow:0 1px 4px rgba(0,0,0,.2);
}
.toggle-sw.on .toggle-knob { left:25px; }
.plan-save   { color:var(--green); font-weight:700; }

/* ── How it works steps ──────────────────────────────────────────────────── */
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.step-card  {
  background:var(--white); border:1px solid var(--border);
  border-radius:16px; padding:28px; position:relative;
}
.step-num   {
  width:40px; height:40px; border-radius:10px;
  background:var(--navy); color:var(--sun); font-size:18px; font-weight:900;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.step-connector {
  display:none; /* shown on desktop via JS or CSS grid trick */
}
.step-h { font-size:17px; font-weight:800; color:var(--navy); margin-bottom:8px; }
.step-p { font-size:13px; color:var(--text-c); line-height:1.6; }
.step-time { font-size:11px; font-weight:700; color:var(--sun-dk); margin-top:12px;
              display:flex; align-items:center; gap:5px; }

/* ── Dark CTA section ────────────────────────────────────────────────────── */
.cta-section {
  background:var(--navy); padding:96px 52px;
  position:relative; overflow:hidden;
}
.cta-section::before {
  content:''; position:absolute; left:-8%; top:-30%;
  width:700px; height:700px;
  background:radial-gradient(circle,rgba(245,158,11,.09) 0%,transparent 58%);
  pointer-events:none;
}
.cta-section::after {
  content:''; position:absolute; right:-6%; bottom:-30%;
  width:600px; height:600px;
  background:radial-gradient(circle,rgba(79,70,229,.08) 0%,transparent 58%);
  pointer-events:none;
}
.cta-inner { position:relative; z-index:1; max-width:700px; margin:0 auto; text-align:center; }

/* ── Reveal animation ────────────────────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(18px); transition:opacity .55s ease,transform .55s ease; }
.reveal.in { opacity:1; transform:none; }
.d1{transition-delay:.07s;} .d2{transition-delay:.14s;}
.d3{transition-delay:.21s;} .d4{transition-delay:.28s;}
.d5{transition-delay:.35s;} .d6{transition-delay:.42s;}

/* ── Forms ───────────────────────────────────────────────────────────────── */
.form-input, .form-select {
  font-family:var(--f); font-size:14px; color:var(--text);
  background:var(--frost); border:1.5px solid var(--border);
  border-radius:9px; padding:12px 16px; outline:none; width:100%;
  transition:border-color .15s, box-shadow .15s;
}
.form-input:focus, .form-select:focus {
  border-color:var(--sun); box-shadow:0 0 0 3px var(--sun-glow);
}

/* ── Mobile nav drawer ───────────────────────────────────────────────────── */
.h-burger {
  display:none; background:none; border:none; cursor:pointer;
  padding:8px 6px; flex-direction:column; justify-content:center;
  gap:5px; z-index:300; flex-shrink:0; margin-left:auto;
}
.h-burger span {
  display:block; width:24px; height:2px; background:var(--navy);
  border-radius:1px; transition:transform .25s ease, opacity .25s ease;
}
body.sw-open .h-burger span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
body.sw-open .h-burger span:nth-child(2) { opacity:0; }
body.sw-open .h-burger span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
#sw-drawer {
  display:none; position:fixed; top:68px; left:0; right:0; z-index:199;
  background:var(--white); border-bottom:2px solid var(--border);
  box-shadow:0 14px 48px rgba(10,37,64,.14);
  flex-direction:column;
}
body.sw-open #sw-drawer { display:flex; }
body.sw-open { overflow:hidden !important; }
#sw-drawer a {
  font-size:17px; font-weight:700; color:var(--navy);
  padding:17px 24px; border-bottom:1px solid var(--border); display:block;
}
#sw-drawer a:last-child {
  background:var(--sun); color:var(--navy); font-weight:800;
  text-transform:uppercase; font-size:14px; letter-spacing:.6px; border-bottom:none;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  background:var(--navy); color:rgba(255,255,255,.72);
  padding:72px 52px 40px;
}
.ft-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:52px; }
.ft-wordmark { height:20px; width:auto; display:block; overflow:visible; margin-bottom:2px; }
.ft-wordmark-solan { color:var(--sun); }
.ft-logo-tag  { font-size:9px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
                color:rgba(255,255,255,.35); margin-bottom:16px; }
.ft-desc { font-size:13px; line-height:1.75; color:rgba(255,255,255,.5); max-width:260px; }
.ft-col-h { font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
             color:rgba(255,255,255,.4); margin-bottom:16px; }
.ft-col-h { display:block; }
footer ul { display:flex; flex-direction:column; gap:10px; }
footer ul li a { font-size:13px; color:rgba(255,255,255,.55); transition:color .15s; }
footer ul li a:hover { color:var(--white); }
.ft-bot {
  border-top:1px solid rgba(255,255,255,.1); padding-top:28px;
  display:flex; align-items:center; justify-content:space-between;
  font-size:12px; color:rgba(255,255,255,.35);
}
.ft-bot a { color:rgba(255,255,255,.35); }
.ft-bot a:hover { color:rgba(255,255,255,.65); }
.ft-cw-link { display:flex; align-items:center; gap:6px; }
.ft-cw-link a { display:flex; align-items:center; gap:5px; color:rgba(255,255,255,.4); }
.ft-cw-link a:hover { color:var(--sun); }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width:1024px) {
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .vert-grid { grid-template-columns:repeat(2,1fr); }
  .plan-grid { grid-template-columns:1fr; max-width:400px; }
  .plan-card.featured { transform:none; }
}

@media (max-width:860px) {
  header { padding:0 20px; }
  .h-nav, .h-actions .h-signin { display:none; }
  .h-burger { display:flex; }
  .h-actions .h-cta { display:none; }
  .section { padding:64px 20px; }
  .page-hero { padding:calc(68px + 40px) 20px 40px; }
  .strip-inner { padding:0 20px; }
  .ft-top { grid-template-columns:1fr 1fr; gap:28px; }
  .grid-2, .grid-3 { grid-template-columns:1fr; }
  .vert-grid { grid-template-columns:1fr 1fr; }
  .steps-grid { grid-template-columns:1fr; }
  footer { padding:52px 20px 32px; }
  .ft-bot { flex-direction:column; gap:10px; text-align:center; }
}

@media (max-width:560px) {
  .vert-grid { grid-template-columns:1fr; }
  .ft-top { grid-template-columns:1fr; }
  .trust-row { gap:8px; }
  .plan-grid { max-width:100%; }
}
