/*
 Theme Name:   FAMAFAMI Child
 Template:     twentytwentyfive
 Version:      1.0.0
*/

<style>
/* ═══════════════════════════════════════════
   RESET & TOKENS
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg:        #0A0A0F;
  --bg-card:   #13131C;
  --bg-raised: #1C1C28;
  --border:    rgba(255,255,255,.08);
  --border-hi: rgba(255,255,255,.15);
  --text:      #F0F0F8;
  --text-2:    #8888A8;
  --text-3:    #55556A;
  --indigo:    #6C47FF;
  --indigo-dk: #5234D6;
  --indigo-lt: rgba(108,71,255,.12);
  --indigo-md: rgba(108,71,255,.25);
  --green:     #22C55E;
  --amber:     #F59E0B;
  --radius:    16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --ff-head: 'Plus Jakarta Sans', sans-serif;
  --ff-body: 'DM Sans', sans-serif;
  --shadow: 0 1px 3px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.3);
  --shadow-lg: 0 2px 8px rgba(0,0,0,.5), 0 24px 64px rgba(0,0,0,.4);
  --glow: 0 0 48px rgba(108,71,255,.2);
}

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.container {
  width: min(100%, 1160px);
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 48px);
}

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--indigo-lt);
  border: 1px solid var(--indigo-md);
  color: #A58BFF;
  font-family: var(--ff-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.pill-dot {
  width: 6px; height: 6px; background: var(--indigo); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(.7); }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ff-head); font-size: 14px; font-weight: 700;
  padding: 13px 24px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; transition: all .2s ease;
  white-space: nowrap; text-decoration: none;
}
.btn-primary {
  background: var(--indigo); color: #fff;
  box-shadow: 0 4px 20px rgba(108,71,255,.4);
}
.btn-primary:hover { background: var(--indigo-dk); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(108,71,255,.5); }
.btn-ghost {
  background: var(--bg-raised); color: var(--text);
  border: 1px solid var(--border-hi);
}
.btn-ghost:hover { border-color: var(--indigo); color: #A58BFF; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-full { width: 100%; }

.tag {
  display: inline-block;
  font-family: var(--ff-head); font-size: 10px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
}
.tag-pro   { background: rgba(108,71,255,.2); color: #A58BFF; border: 1px solid var(--indigo-md); }
.tag-free  { background: rgba(34,197,94,.15); color: #4ADE80; border: 1px solid rgba(34,197,94,.3); }
.tag-new   { background: rgba(245,158,11,.15); color: #FCD34D; border: 1px solid rgba(245,158,11,.3); }
.tag-hot   { background: rgba(239,68,68,.15); color: #FCA5A5; border: 1px solid rgba(239,68,68,.3); }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,10,15,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 24px;
}
.nav-logo {
  font-family: var(--ff-head); font-weight: 800; font-size: 22px;
  letter-spacing: -.03em; color: var(--text); flex-shrink: 0;
}
.nav-logo span { color: var(--indigo); }
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
  font-family: var(--ff-head); font-size: 13px; font-weight: 600;
  color: var(--text-2); padding: 7px 14px; border-radius: var(--radius-xs);
  transition: all .15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-raised); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cart-btn {
  position: relative; width: 40px; height: 40px; border-radius: var(--radius-xs);
  background: var(--bg-raised); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color .15s;
}
.cart-btn:hover { border-color: var(--border-hi); }
.cart-btn svg { width: 18px; height: 18px; stroke: var(--text-2); fill: none; stroke-width: 1.8; }
.cart-count {
  position: absolute; top: -5px; right: -5px;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--indigo); color: #fff;
  font-family: var(--ff-head); font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
}
.member-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-raised); border: 1px solid var(--border-hi);
  border-radius: var(--radius-xs); padding: 6px 12px 6px 8px; cursor: pointer;
  transition: border-color .15s;
}
.member-chip:hover { border-color: var(--indigo); }
.chip-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo) 0%, #9B5DE5 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: 10px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.chip-label { font-family: var(--ff-head); font-size: 12px; font-weight: 700; color: var(--text); }
.chip-tier { font-size: 10px; color: #A58BFF; font-weight: 600; }
.hamburger {
  display: none; width: 40px; height: 40px;
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: var(--radius-xs); flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; cursor: pointer;
}
.hamburger span { display: block; width: 18px; height: 1.5px; background: var(--text-2); transition: all .2s; }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  padding: 16px;
}
.mobile-menu a {
  font-family: var(--ff-head); font-size: 15px; font-weight: 600;
  color: var(--text-2); padding: 12px 16px; border-radius: var(--radius-xs);
  display: block; transition: all .15s;
}
.mobile-menu a:hover { background: var(--bg-raised); color: var(--text); }
.mobile-menu.open { display: flex; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  padding: clamp(64px, 10vw, 120px) 0 0;
  position: relative; overflow: hidden;
}
/* Noise texture overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 100% 60% at 50% -10%,
    rgba(108,71,255,.18) 0%,
    rgba(108,71,255,.04) 50%,
    transparent 80%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding-bottom: clamp(40px, 6vw, 72px);
}
.hero-eyebrow { margin-bottom: 28px; }
.hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(36px, 7.5vw, 88px);
  font-weight: 800; line-height: 1.04;
  letter-spacing: -.04em;
  color: var(--text);
  max-width: 900px;
  margin-bottom: 24px;
}
.hero-h1 .accent {
  background: linear-gradient(135deg, #A58BFF 0%, var(--indigo) 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px); color: var(--text-2);
  max-width: 500px; margin: 0 auto 36px;
  font-weight: 300; line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-social-proof {
  display: flex; align-items: center; gap: 12px;
  margin-top: 40px;
}
.avatars { display: flex; }
.avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--bg); margin-left: -10px;
  font-family: var(--ff-head); font-size: 11px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.av-a { background: linear-gradient(135deg,#6C47FF,#9B5DE5); margin-left:0!important; }
.av-b { background: linear-gradient(135deg,#F59E0B,#EF4444); }
.av-c { background: linear-gradient(135deg,#22C55E,#0EA5E9); }
.av-d { background: linear-gradient(135deg,#EC4899,#8B5CF6); }
.av-e { background: linear-gradient(135deg,#F97316,#EAB308); }
.proof-text { font-size: 13px; color: var(--text-2); font-weight: 400; }
.proof-text strong { color: var(--text); font-weight: 600; }
.proof-stars { color: var(--amber); font-size: 12px; letter-spacing: 1px; }

/* Scrolling product ticker */
.ticker-wrap {
  width: 100%; overflow: hidden;
  padding: 32px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  position: relative; z-index: 1;
}
.ticker-track {
  display: flex; gap: 16px;
  width: max-content;
  animation: ticker 35s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-card {
  flex-shrink: 0;
  width: clamp(180px, 25vw, 220px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px; cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.ticker-card:hover { border-color: var(--indigo); transform: translateY(-2px); }
.ticker-thumb {
  height: 88px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin-bottom: 12px;
}
.tc-1 { background: linear-gradient(135deg, rgba(108,71,255,.25), rgba(155,93,229,.15)); }
.tc-2 { background: linear-gradient(135deg, rgba(245,158,11,.2), rgba(239,68,68,.1)); }
.tc-3 { background: linear-gradient(135deg, rgba(34,197,94,.2), rgba(14,165,233,.1)); }
.tc-4 { background: linear-gradient(135deg, rgba(236,72,153,.2), rgba(139,92,246,.1)); }
.tc-5 { background: linear-gradient(135deg, rgba(249,115,22,.2), rgba(234,179,8,.1)); }
.tc-6 { background: linear-gradient(135deg, rgba(14,165,233,.2), rgba(99,102,241,.1)); }
.ticker-name {
  font-family: var(--ff-head); font-size: 13px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ticker-meta { display: flex; justify-content: space-between; align-items: center; }
.ticker-price { font-family: var(--ff-head); font-size: 13px; font-weight: 700; color: var(--indigo); }

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.statsbar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.statsbar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center; padding: 8px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-n {
  font-family: var(--ff-head); font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800; color: var(--text); letter-spacing: -.03em;
  line-height: 1;
}
.stat-n span { color: var(--indigo); }
.stat-l { font-size: 12px; color: var(--text-2); margin-top: 4px; font-weight: 400; }

/* ═══════════════════════════════════════════
   SECTION SHELL
═══════════════════════════════════════════ */
.sec { padding: clamp(64px, 8vw, 112px) 0; }
.sec-head { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head h2 {
  font-family: var(--ff-head);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800; letter-spacing: -.03em; color: var(--text);
  margin: 14px 0 14px; line-height: 1.1;
}
.sec-head p { font-size: clamp(14px, 1.8vw, 16px); color: var(--text-2); max-width: 480px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════════ */
.products-sec { background: var(--bg); }
.filter-row {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 32px;
}
.filter-btn {
  font-family: var(--ff-head); font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: var(--radius-xs);
  border: 1px solid var(--border); background: transparent; color: var(--text-2);
  cursor: pointer; transition: all .15s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--indigo-lt); border-color: var(--indigo-md); color: #A58BFF;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 16px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: rgba(108,71,255,.4);
  transform: translateY(-3px);
  box-shadow: var(--glow);
}
.p-thumb {
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; position: relative; overflow: hidden;
}
.p-thumb-inner { position: relative; z-index: 1; }
.p-t1 { background: linear-gradient(135deg, #1a1240 0%, #2d1b69 100%); }
.p-t2 { background: linear-gradient(135deg, #1a1208 0%, #2d2208 100%); }
.p-t3 { background: linear-gradient(135deg, #081a12 0%, #082d1a 100%); }
.p-t4 { background: linear-gradient(135deg, #1a081a 0%, #2d0829 100%); }
.p-t5 { background: linear-gradient(135deg, #08121a 0%, #081a2d 100%); }
.p-t6 { background: linear-gradient(135deg, #1a1208 0%, #2d1a08 100%); }
.p-tag-wrap { position: absolute; top: 12px; left: 12px; z-index: 2; }
.p-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.p-cat {
  font-family: var(--ff-head); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--indigo);
  margin-bottom: 6px;
}
.p-name {
  font-family: var(--ff-head); font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 8px; line-height: 1.35;
}
.p-desc { font-size: 13px; color: var(--text-2); line-height: 1.55; flex: 1; }
.p-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.p-price {
  font-family: var(--ff-head); font-size: 17px; font-weight: 800; color: var(--text);
}
.p-price .was {
  font-size: 12px; color: var(--text-3); font-weight: 400;
  text-decoration: line-through; margin-left: 5px;
}
.p-price .free-label { color: var(--green); font-size: 14px; }
.p-price .member-label { color: #A58BFF; font-size: 13px; }
.p-add {
  width: 36px; height: 36px; border-radius: var(--radius-xs);
  background: var(--indigo); color: #fff; border: none; cursor: pointer;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: all .15s; flex-shrink: 0;
}
.p-add:hover { background: var(--indigo-dk); transform: scale(1.05); }

/* ═══════════════════════════════════════════
   HOW IT WORKS (PMP + WOO)
═══════════════════════════════════════════ */
.how-sec { background: var(--bg-card); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.step-item {
  background: var(--bg-card);
  padding: clamp(24px, 4vw, 36px);
}
.step-num {
  font-family: var(--ff-head); font-size: 11px; font-weight: 800;
  color: var(--indigo); letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.step-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--indigo-lt); border: 1px solid var(--indigo-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.step-title {
  font-family: var(--ff-head); font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.step-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ═══════════════════════════════════════════
   MEMBERSHIP PLANS
═══════════════════════════════════════════ */
.plans-sec { background: var(--bg); }
.billing-toggle {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px; margin-bottom: 48px;
}
.toggle-opt {
  font-family: var(--ff-head); font-size: 13px; font-weight: 700;
  padding: 8px 20px; border-radius: 100px; cursor: pointer;
  transition: all .2s; color: var(--text-2);
}
.toggle-opt.active { background: var(--indigo); color: #fff; box-shadow: 0 4px 16px rgba(108,71,255,.4); }
.save-chip {
  background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.3);
  color: #4ADE80; font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 100px; text-transform: uppercase; letter-spacing: .06em;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 16px; align-items: start;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  position: relative; transition: border-color .2s;
}
.plan-card:hover { border-color: var(--border-hi); }
.plan-card.featured {
  background: var(--bg-raised);
  border-color: var(--indigo);
  box-shadow: var(--glow);
}
.popular-chip {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--indigo); color: #fff;
  font-family: var(--ff-head); font-size: 10px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--ff-head); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-2); margin-bottom: 8px;
}
.plan-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 6px;
}
.plan-amount {
  font-family: var(--ff-head); font-size: clamp(36px, 5vw, 48px);
  font-weight: 800; color: var(--text); letter-spacing: -.04em; line-height: 1;
}
.plan-currency { font-family: var(--ff-head); font-size: 20px; font-weight: 700; color: var(--text-2); align-self: flex-start; margin-top: 6px; }
.plan-period { font-size: 14px; color: var(--text-2); }
.plan-desc { font-size: 13px; color: var(--text-2); margin-bottom: 24px; line-height: 1.5; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.plan-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--text-2);
}
.feat-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--indigo-lt); border: 1px solid var(--indigo-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  font-size: 10px; color: var(--indigo); font-weight: 700;
}
.plan-card.featured .feat-check { background: rgba(34,197,94,.15); border-color: rgba(34,197,94,.3); color: #4ADE80; }
.plan-card.featured .plan-features li { color: var(--text); }

/* ═══════════════════════════════════════════
   CONTENT LOCK DEMO
═══════════════════════════════════════════ */
.lock-sec { background: var(--bg-card); }
.lock-demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 16px;
}
.lock-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.lock-card-head { padding: 24px 24px 0; }
.lock-card-head h3 {
  font-family: var(--ff-head); font-size: 16px; font-weight: 700;
  color: var(--text); margin: 10px 0 8px;
}
.lock-card-head p { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.lock-body { padding: 16px 24px 24px; position: relative; }
.lock-text { font-size: 13px; color: var(--text-2); line-height: 1.7; }
.lock-blur-wrap { position: relative; }
.lock-blur { filter: blur(6px); user-select: none; pointer-events: none; opacity: .5; }
.lock-gate {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  background: linear-gradient(to top, var(--bg) 50%, transparent 100%);
}
.lock-gate-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-raised); border: 1px solid var(--border-hi);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  margin-bottom: 4px;
}
.lock-gate h4 { font-family: var(--ff-head); font-size: 14px; font-weight: 700; color: var(--text); }
.lock-gate p { font-size: 12px; color: var(--text-2); text-align: center; max-width: 180px; }
.unlocked-content { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; }
.unlocked-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.unlocked-row:last-child { border-bottom: none; }
.unlocked-row .icon { font-size: 18px; }
.unlocked-row .label { font-size: 13px; color: var(--text); font-weight: 500; flex: 1; }
.unlocked-row .dl-btn {
  font-family: var(--ff-head); font-size: 11px; font-weight: 700;
  background: var(--indigo-lt); border: 1px solid var(--indigo-md);
  color: #A58BFF; padding: 4px 10px; border-radius: var(--radius-xs); cursor: pointer;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testi-sec { background: var(--bg); }
.testi-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 16px;
}
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.testi-stars { color: var(--amber); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-weight: 300; }
.testi-quote::before { content: '\201C'; color: var(--indigo); font-size: 28px; line-height: 0; vertical-align: -10px; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: 12px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.tav1 { background: linear-gradient(135deg,#6C47FF,#9B5DE5); }
.tav2 { background: linear-gradient(135deg,#F59E0B,#EF4444); }
.tav3 { background: linear-gradient(135deg,#22C55E,#0EA5E9); }
.testi-name { font-family: var(--ff-head); font-size: 13px; font-weight: 700; color: var(--text); }
.testi-role { font-size: 11px; color: var(--text-3); }

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-sec {
  padding: clamp(64px, 8vw, 112px) 0;
  position: relative; overflow: hidden;
  background: var(--bg-card);
}
.cta-sec::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(108,71,255,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--ff-head);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800; letter-spacing: -.03em; color: var(--text);
  margin: 14px 0 18px;
}
.cta-inner p { font-size: clamp(14px, 1.8vw, 17px); color: var(--text-2); margin-bottom: 36px; max-width: 440px; margin-inline: auto; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.trust-badges {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  margin-top: 32px;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-3); font-weight: 500;
}
.trust-item::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: 48px;
}
.footer-logo-wrap .nav-logo { display: inline-block; margin-bottom: 12px; font-size: 20px; }
.footer-tagline { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 20px; max-width: 220px; }
.tech-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tech-chip {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xs); padding: 4px 10px;
  font-family: var(--ff-head); font-size: 10px; font-weight: 700;
  color: var(--text-3); text-transform: uppercase; letter-spacing: .05em;
}
.footer-col h4 {
  font-family: var(--ff-head); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em; color: var(--text-3);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px; color: var(--text-2);
  transition: color .15s;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-3); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .member-chip .chip-label { display: none; }
  .member-chip .chip-tier { display: none; }
  .hamburger { display: flex; }

  .statsbar-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .billing-toggle { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero-actions .btn { width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }

  .statsbar-inner { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
</style>
