/* Citrus Studio Theme — wps2
   Cream base + Orange primary + Forest Green secondary + Charcoal ink
*/
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #fffbeb;
  color: #1f2937;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

:root {
  --orange: #f97316;
  --orange-d: #ea580c;
  --green: #15803d;
  --green-d: #166534;
  --ink: #1f2937;
  --ink2: #374151;
  --cream: #fffbeb;
  --cream2: #fef3c7;
  --paper: #ffffff;
  --line: #fde8c5;
  --muted: #6b7280;
  --rose: #e11d48;
  --plum: #7c3aed;
  --sky: #0284c7;
  --amber: #d97706;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { scroll-margin-top: 80px; }

/* ========= NAV ========= */
.cs-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 251, 235, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.cs-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.cs-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: var(--ink); }
.cs-brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 18px;
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}
.cs-links { display: flex; align-items: center; gap: 4px; }
.cs-link {
  font-size: 14px; color: var(--ink2); padding: 8px 14px; border-radius: 999px;
  font-weight: 600; transition: all .18s ease;
}
.cs-link:hover { color: var(--orange-d); background: #fff5e6; }
.cs-link.on { background: var(--ink); color: #fff; }
.cs-cta {
  background: var(--orange); color: #fff; padding: 10px 18px; border-radius: 999px;
  font-weight: 700; font-size: 14px; transition: .18s; margin-left: 8px;
}
.cs-cta:hover { background: var(--orange-d); transform: translateY(-1px); }
.cs-toggle { display: none; background: none; border: 0; padding: 8px; }
.cs-toggle svg { width: 26px; height: 26px; color: var(--ink); }
.cs-mobile { display: none; flex-direction: column; gap: 4px; padding: 12px 0; border-top: 1px solid var(--line); }
.cs-mobile.show { display: flex; }
.cs-mobile .cs-link { padding: 10px 16px; }

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(249,115,22,0.32); }
.btn-orange:hover { background: var(--orange-d); transform: translateY(-2px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-d); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #111827; transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--ink); border: 2px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-d); }

/* ========= SECTION SHELLS ========= */
.sec { padding: 84px 0; }
.sec-paper { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-cream2 { background: var(--cream2); }
.sec-ink { background: var(--ink); color: #fff; }
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; background: #fff5e6; color: var(--orange-d);
  border: 1px solid var(--line);
}
.sec-eyebrow.eg { background: #ecfdf5; color: var(--green-d); border-color: #bbf7d0; }
.sec-eyebrow.ed { background: rgba(255,255,255,0.08); color: #fde68a; border-color: rgba(255,255,255,0.15); }
.sec-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.sec-title { font-size: 40px; font-weight: 900; line-height: 1.18; margin: 18px 0 14px; color: var(--ink); letter-spacing: -.5px; }
.sec-title.light { color: #fff; }
.sec-sub { font-size: 17px; color: var(--muted); }
.sec-sub.light { color: #cbd5e1; }
.hl { color: var(--orange); }
.hl2 { color: var(--green); }

/* ========= HERO ========= */
.hero { padding: 60px 0 90px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(249,115,22,0.18), transparent);
  z-index: 0;
}
.hero::after {
  content: ""; position: absolute; left: -100px; bottom: -160px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(21,128,61,0.14), transparent);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700; color: var(--orange-d); margin-bottom: 22px;
}
.hero-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(249,115,22,0.18); }
.hero-h1 { font-size: 60px; font-weight: 900; line-height: 1.06; letter-spacing: -1.2px; color: var(--ink); }
.hero-h1 .hl { background: linear-gradient(135deg, #f97316, #ea580c); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-p { font-size: 18px; color: var(--ink2); margin: 22px 0 30px; max-width: 540px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink2); font-weight: 600; }
.hero-trust-item svg { width: 18px; height: 18px; color: var(--green); }

/* hero visual */
.hero-vis { position: relative; }
.hv-card {
  background: #fff; border-radius: 24px; padding: 26px;
  box-shadow: 0 30px 70px -30px rgba(31,41,55,0.35), 0 0 0 1px rgba(0,0,0,0.04);
  position: relative;
}
.hv-top { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.hv-dot { width: 11px; height: 11px; border-radius: 50%; }
.hv-dot.r { background: #ef4444; }
.hv-dot.y { background: #eab308; }
.hv-dot.g { background: #22c55e; }
.hv-app-tag { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: .08em; }
.hv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hv-tile {
  border-radius: 16px; padding: 18px; color: #fff; min-height: 110px; position: relative; overflow: hidden;
}
.hv-tile h4 { font-size: 16px; font-weight: 800; }
.hv-tile p { font-size: 12px; opacity: .9; margin-top: 4px; }
.hv-tile.t1 { background: linear-gradient(135deg, #f97316, #ea580c); }
.hv-tile.t2 { background: linear-gradient(135deg, #15803d, #166534); }
.hv-tile.t3 { background: linear-gradient(135deg, #d97706, #b45309); }
.hv-tile.t4 { background: linear-gradient(135deg, #1f2937, #374151); }
.hv-tile-ico { width: 28px; height: 28px; opacity: .9; margin-bottom: 8px; }
.hv-stats {
  margin-top: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  background: var(--cream); border-radius: 14px; padding: 14px;
}
.hv-stat { text-align: center; }
.hv-stat-n { font-size: 20px; font-weight: 900; color: var(--ink); }
.hv-stat-l { font-size: 11px; color: var(--muted); margin-top: 2px; }
.hv-float {
  position: absolute; right: -20px; bottom: 30px;
  background: #fff; border-radius: 14px; padding: 12px 16px;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.18); display: flex; align-items: center; gap: 10px;
}
.hv-float-ico { width: 36px; height: 36px; border-radius: 10px; background: var(--green); color: #fff; display: grid; place-items: center; }
.hv-float-text strong { display: block; font-size: 13px; color: var(--ink); }
.hv-float-text span { font-size: 11px; color: var(--muted); }

/* hero stats band */
.hero-stats {
  margin-top: 70px; padding: 28px 32px; border-radius: 22px;
  background: var(--ink); color: #fff;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
  position: relative; z-index: 2;
}
.hs-item { text-align: center; }
.hs-num { font-size: 34px; font-weight: 900; letter-spacing: -.5px; }
.hs-num .ho { color: #fb923c; }
.hs-num .hg { color: #4ade80; }
.hs-num .ha { color: #fbbf24; }
.hs-num .hp { color: #c4b5fd; }
.hs-lbl { font-size: 13px; color: #cbd5e1; margin-top: 4px; }

/* ========= FEATURES ========= */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 28px 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,.18); border-color: transparent; }
.feat-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: 18px; color: #fff;
}
.feat-icon svg { width: 26px; height: 26px; }
.fi-orange { background: linear-gradient(135deg, #fb923c, #ea580c); }
.fi-green { background: linear-gradient(135deg, #22c55e, #15803d); }
.fi-amber { background: linear-gradient(135deg, #fbbf24, #d97706); }
.fi-rose { background: linear-gradient(135deg, #fb7185, #e11d48); }
.fi-sky { background: linear-gradient(135deg, #38bdf8, #0284c7); }
.fi-plum { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.feat-name { font-size: 19px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.feat-desc { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* in-depth feature rows */
.deep-stack { display: flex; flex-direction: column; gap: 60px; margin-top: 70px; }
.deep-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.deep-row.flip > .deep-info { order: 2; }
.deep-chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 800; letter-spacing: .08em;
}
.dc-orange { background: #ffedd5; color: var(--orange-d); }
.dc-green { background: #dcfce7; color: var(--green-d); }
.dc-amber { background: #fef3c7; color: #92400e; }
.dc-plum { background: #ede9fe; color: #5b21b6; }
.deep-h3 { font-size: 30px; font-weight: 900; color: var(--ink); margin: 14px 0 12px; line-height: 1.22; }
.deep-desc { font-size: 16px; color: var(--ink2); line-height: 1.75; margin-bottom: 18px; }
.deep-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.deep-list li { display: flex; gap: 12px; font-size: 15px; color: var(--ink2); }
.deep-list li svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--green); margin-top: 2px; }

.deep-vis {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 26px;
  box-shadow: 0 16px 40px -20px rgba(0,0,0,.12);
}
.dv-title { font-size: 12px; font-weight: 800; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; margin-bottom: 14px; }
.dv-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.dv-bar-lbl { width: 120px; font-size: 13px; font-weight: 700; color: var(--ink2); }
.dv-bar-track { flex: 1; height: 10px; background: #fef3c7; border-radius: 999px; overflow: hidden; }
.dv-bar-fill { height: 100%; border-radius: 999px; }
.dvb-orange { background: linear-gradient(90deg, #fb923c, #ea580c); }
.dvb-green { background: linear-gradient(90deg, #22c55e, #15803d); }
.dvb-amber { background: linear-gradient(90deg, #fbbf24, #d97706); }
.dvb-plum { background: linear-gradient(90deg, #a78bfa, #7c3aed); }
.dv-bar-val { width: 50px; text-align: right; font-weight: 800; font-size: 13px; color: var(--ink); }
.dv-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--line); }
.dv-stat { text-align: center; }
.dv-stat-n { font-size: 22px; font-weight: 900; color: var(--orange-d); }
.dv-stat-n.gn { color: var(--green-d); }
.dv-stat-n.am { color: var(--amber); }
.dv-stat-n.pl { color: var(--plum); }
.dv-stat-l { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ========= PLATFORMS ========= */
.plat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.plat-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 30px 24px; text-align: center; position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,.18); }
.plat-card.featured { background: linear-gradient(160deg, #1f2937, #111827); color: #fff; border-color: transparent; }
.plat-badge {
  position: absolute; top: 14px; right: 14px; background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 999px;
}
.plat-icon {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 16px;
  background: var(--cream2); display: grid; place-items: center; color: var(--ink);
}
.plat-card.featured .plat-icon { background: rgba(255,255,255,0.1); color: #fff; }
.plat-icon svg { width: 32px; height: 32px; }
.plat-name { font-size: 19px; font-weight: 800; margin-bottom: 4px; }
.plat-ver { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.plat-card.featured .plat-ver { color: #cbd5e1; }
.plat-req { font-size: 12px; color: var(--muted); margin-bottom: 18px; min-height: 32px; }
.plat-card.featured .plat-req { color: #94a3b8; }
.plat-btn {
  width: 100%; padding: 12px; border-radius: 12px; font-weight: 700; font-size: 14px;
  background: var(--ink); color: #fff; transition: .18s;
}
.plat-btn:hover { background: var(--orange); }
.plat-card.featured .plat-btn { background: var(--orange); }
.plat-card.featured .plat-btn:hover { background: var(--orange-d); }

/* ========= REVIEWS ========= */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 26px; transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.rev-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -18px rgba(0,0,0,.16); }
.rev-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.rev-stars svg { width: 18px; height: 18px; color: #f59e0b; }
.rev-text { font-size: 15px; color: var(--ink2); line-height: 1.72; flex: 1; }
.rev-foot { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.rev-avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; color: #fff; font-size: 16px;
}
.av-orange { background: linear-gradient(135deg, #fb923c, #ea580c); }
.av-green { background: linear-gradient(135deg, #22c55e, #15803d); }
.av-amber { background: linear-gradient(135deg, #fbbf24, #d97706); }
.av-rose { background: linear-gradient(135deg, #fb7185, #e11d48); }
.av-sky { background: linear-gradient(135deg, #38bdf8, #0284c7); }
.av-plum { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.rev-name { font-size: 14px; font-weight: 800; color: var(--ink); }
.rev-role { font-size: 12px; color: var(--muted); }

/* ========= SECURITY ========= */
.sec-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 50px; }
.sec-item {
  display: flex; gap: 16px; padding: 22px; background: #fff;
  border: 1px solid var(--line); border-radius: 18px;
}
.sec-item-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, #22c55e, #15803d);
}
.sec-item-icon svg { width: 24px; height: 24px; }
.sec-item-icon.io { background: linear-gradient(135deg, #fb923c, #ea580c); }
.sec-item-icon.ia { background: linear-gradient(135deg, #fbbf24, #d97706); }
.sec-item-icon.ip { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.sec-item h4 { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.sec-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }

.cmp-wrap { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.cmp-table { width: 100%; border-collapse: collapse; }
.cmp-table th, .cmp-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.cmp-table th { background: var(--cream); font-weight: 800; color: var(--ink); font-size: 13px; letter-spacing: .04em; }
.cmp-table th.cmp-hl { color: var(--orange-d); }
.cmp-table td { color: var(--ink2); }
.cmp-table tr:last-child th, .cmp-table tr:last-child td { border-bottom: none; }
.yes { color: var(--green); font-weight: 700; }
.no { color: #ef4444; }
.part { color: var(--amber); }

/* ========= VERSIONS ========= */
.ver-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ver-card {
  background: #fff; border: 2px solid var(--line); border-radius: 22px;
  padding: 32px 28px; position: relative; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ver-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -22px rgba(0,0,0,.18); }
.ver-card.featured { border-color: var(--orange); }
.ver-card.dark { background: linear-gradient(160deg, #1f2937, #111827); border-color: transparent; color: #fff; }
.ver-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; padding: 6px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 800; letter-spacing: .06em;
}
.ver-name { font-size: 20px; font-weight: 800; color: var(--ink); }
.ver-card.dark .ver-name { color: #fff; }
.ver-tagline { font-size: 13px; color: var(--muted); margin-top: 4px; }
.ver-card.dark .ver-tagline { color: #cbd5e1; }
.ver-price { margin: 22px 0 8px; display: flex; align-items: baseline; gap: 4px; }
.ver-price-num { font-size: 44px; font-weight: 900; color: var(--ink); letter-spacing: -1px; }
.ver-card.dark .ver-price-num { color: #fff; }
.ver-price-cur { font-size: 18px; font-weight: 700; color: var(--ink2); }
.ver-card.dark .ver-price-cur { color: #cbd5e1; }
.ver-price-unit { font-size: 14px; color: var(--muted); margin-left: 4px; }
.ver-price-free { font-size: 44px; font-weight: 900; color: var(--green); }
.ver-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 22px 0 26px; flex: 1; }
.ver-features li { display: flex; gap: 10px; font-size: 14px; color: var(--ink2); line-height: 1.55; }
.ver-features li svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--green); margin-top: 2px; }
.ver-card.dark .ver-features li { color: #d1d5db; }
.ver-card.dark .ver-features li svg { color: #4ade80; }
.ver-btn {
  display: block; text-align: center; padding: 13px; border-radius: 12px;
  font-weight: 800; font-size: 14px; transition: .18s;
}
.ver-btn.primary { background: var(--orange); color: #fff; }
.ver-btn.primary:hover { background: var(--orange-d); }
.ver-btn.outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.ver-btn.outline:hover { background: var(--ink); color: #fff; }
.ver-btn.dark-cta { background: #fff; color: var(--ink); }
.ver-btn.dark-cta:hover { background: var(--orange); color: #fff; }

/* ========= FAQ ========= */
.faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; transition: border-color .18s;
}
.faq-item:hover { border-color: var(--orange); }
.faq-item.open { border-color: var(--orange); background: #fffaf0; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; text-align: left; font-size: 16px; font-weight: 700; color: var(--ink);
  background: transparent;
}
.faq-chevron { width: 20px; height: 20px; color: var(--orange); transition: transform .25s ease; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 24px 22px; font-size: 15px; color: var(--ink2); line-height: 1.78; }

/* ========= CTA ========= */
.cta-band {
  background: linear-gradient(120deg, #f97316, #ea580c);
  border-radius: 26px; padding: 50px 50px; color: #fff; text-align: center;
  margin-top: 40px;
}
.cta-h2 { font-size: 34px; font-weight: 900; letter-spacing: -.5px; }
.cta-p { font-size: 16px; opacity: .92; margin: 12px 0 26px; }
.cta-btns { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ========= FOOTER ========= */
.cs-footer { background: var(--ink); color: #cbd5e1; padding: 40px 0; }
.cs-footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.cs-footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 16px; }
.cs-footer-brand-mark { width: 32px; height: 32px; border-radius: 9px; background: linear-gradient(135deg, #f97316, #ea580c); display: grid; place-items: center; color: #fff; font-weight: 900; }
.cs-footer-note { font-size: 13px; color: #94a3b8; }

/* ========= RESPONSIVE ========= */
@media (max-width: 980px) {
  .cs-links { display: none; }
  .cs-toggle { display: inline-grid; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-h1 { font-size: 44px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 22px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .deep-row { grid-template-columns: 1fr; gap: 32px; }
  .deep-row.flip > .deep-info { order: 1; }
  .plat-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: 1fr; }
  .sec-list-grid { grid-template-columns: 1fr; }
  .ver-grid { grid-template-columns: 1fr; }
  .sec-title { font-size: 32px; }
  .deep-h3 { font-size: 24px; }
  .cta-band { padding: 38px 24px; }
  .cta-h2 { font-size: 26px; }
}
@media (max-width: 560px) {
  .feat-grid { grid-template-columns: 1fr; }
  .plat-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 36px; }
  .sec { padding: 64px 0; }
  .cmp-table { font-size: 12px; }
  .cmp-table th, .cmp-table td { padding: 10px 8px; }
}
