/* ═══════════════════════════════════════
   MAREA GLOBAL — Shared Stylesheet
   Zero external dependencies
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:  #080808;
  --dark:   #111111;
  --card:   #181818;
  --border: #272727;
  --muted:  #4a4a4a;
  --mid:    #888888;
  --light:  #c8c8c8;
  --white:  #f7f5f1;
  --coral:  #e85d3a;
  --coral2: #ff7855;
  --gold:   #c9a96e;
  --gold2:  #e2c084;
  --green:  #4ade80;
  --purple: #a855f7;
  --teal:   #2dd4bf;
  --font:   -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --serif:  Georgia, 'Times New Roman', serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--black); color: var(--white);
  font-family: var(--font); font-size: 16px; line-height: 1.6;
  overflow-x: hidden;
}

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
section { position: relative; }

/* ── TYPE ── */
.serif     { font-family: var(--serif); font-style: italic; }
.coral     { color: var(--coral); }
.gold      { color: var(--gold); }
.muted-txt { color: var(--mid); }

/* ── TAG ── */
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--coral); border: 1px solid rgba(232,93,58,.35);
  border-radius: 100px; padding: 5px 14px;
}
.tag .dot { width: 5px; height: 5px; background: var(--coral); border-radius: 50%; }
.tag.gold-tag {
  color: var(--gold); border-color: rgba(201,169,110,.3);
  background: rgba(201,169,110,.08);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 8px; font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none; font-family: var(--font);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral2); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--mid); background: rgba(255,255,255,.04); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold2); }
.btn-lg { font-size: 16px; padding: 15px 34px; }

/* ── SECTION HEADER ── */
.sec-hd { margin-bottom: 56px; }
.sec-hd .tag { margin-bottom: 16px; }
.sec-title {
  font-size: clamp(28px, 3.8vw, 46px); font-weight: 900;
  letter-spacing: -.022em; line-height: 1.12; max-width: 580px;
}
.sec-title em { font-family: var(--serif); font-style: italic; color: var(--coral); }
.sec-title.center { max-width: none; text-align: center; }
.sec-sub { font-size: 17px; color: var(--mid); margin-top: 14px; max-width: 520px; line-height: 1.72; }
.sec-sub.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.check-list li {
  font-size: 14px; color: var(--mid);
  display: flex; align-items: center; gap: 9px;
}
.check-list li::before {
  content: '';
  width: 17px; height: 17px; flex-shrink: 0; border-radius: 50%;
  background: rgba(232,93,58,.12) url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3.2 5.8L8 1' stroke='%23e85d3a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
  border: 1px solid rgba(232,93,58,.28);
}

/* ── CARDS ── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  transition: border-color .2s, background .2s;
}
.card:hover { border-color: var(--muted); }
.card.gold-card { border-color: rgba(201,169,110,.3); background: rgba(201,169,110,.05); }

/* ── SCROLL FADE — progressive enhancement only ── */
/* Elements are visible by default; JS adds .js-ready to <html> to enable animation */
.fu { transition: opacity .55s ease, transform .55s ease; }
.js-ready .fu { opacity: 0; transform: translateY(22px); }
.js-ready .fu.vis { opacity: 1; transform: none; }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 18px 0; border-bottom: 1px solid transparent;
  transition: background .3s, padding .3s, border-color .3s;
}
#nav.stuck {
  background: rgba(8,8,8,.94); backdrop-filter: blur(18px);
  padding: 12px 0; border-color: var(--border);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; }
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-box {
  width: 36px; height: 36px; background: var(--coral); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-box svg { width: 22px; height: 22px; }
.logo-name { font-size: 21px; font-weight: 900; letter-spacing: .05em; color: var(--white); }
.logo-name span { color: var(--coral); }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  color: var(--mid); font-size: 14px; font-weight: 500;
  text-decoration: none; transition: color .2s; padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); border-color: var(--coral); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--white); font-size: 22px; padding: 4px;
}

/* mobile nav */
.nav-mobile {
  display: none; position: fixed; top: 63px; left: 0; right: 0;
  background: rgba(8,8,8,.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); z-index: 998;
  padding: 20px 32px; flex-direction: column; gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--mid); font-size: 16px; font-weight: 500;
  text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--white); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  display: flex; align-items: center;
  padding: 130px 0 80px; overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: orb-drift 9s ease-in-out infinite alternate;
}
.hero-orb.o1 {
  top: -180px; right: -160px; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(232,93,58,.13) 0%, transparent 68%);
}
.hero-orb.o2 {
  bottom: -80px; left: -120px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(201,169,110,.09) 0%, transparent 70%);
  animation-delay: 2s; animation-direction: alternate-reverse;
}
@keyframes orb-drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(35px,25px) scale(1.06); }
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow { margin-bottom: 24px; }
.hero-h1 {
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 900; line-height: 1.05; letter-spacing: -.025em; margin-bottom: 22px;
}
.hero-h1 em { font-family: var(--serif); font-style: italic; color: var(--coral); display: block; }
.hero-sub { font-size: 18px; color: var(--mid); line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 16px;
  margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--border);
}
.avatars { display: flex; }
.av {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--dark);
  background: var(--card); margin-right: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--gold);
}
.trust-txt { font-size: 13px; color: var(--mid); }
.trust-txt strong { color: var(--white); }

/* hero dashboard */
.hero-vis { position: relative; padding: 28px; }
.dash-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 24px;
}
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-lbl { font-size: 12px; font-weight: 600; color: var(--mid); }
.live-pill {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: var(--green);
  background: rgba(74,222,128,.1); padding: 3px 10px; border-radius: 100px;
}
.live-dot { width: 5px; height: 5px; background: var(--green); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.big-val { font-size: 40px; font-weight: 900; letter-spacing: -.025em; }
.big-val .c { color: var(--coral); }
.val-sub { font-size: 13px; color: var(--mid); margin-top: 2px; }
.spark { display: flex; align-items: flex-end; gap: 4px; height: 44px; margin-top: 16px; }
.sp { flex: 1; background: var(--border); border-radius: 3px; }
.sp.hi { background: var(--coral); }
.mkpis { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: 10px; }
.mkpi { background: var(--dark); border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
.mkpi-v { font-size: 18px; font-weight: 800; }
.mkpi-l { font-size: 10px; color: var(--muted); margin-top: 1px; }
.mkpi-d { font-size: 10px; color: var(--green); font-weight: 700; }
.fbadge {
  position: absolute; background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 10px 14px; display: flex; align-items: center; gap: 10px;
}
.fbadge.f1 { top: 0; right: -10px; animation: float 3.2s ease-in-out infinite alternate; }
.fbadge.f2 { bottom: 0; left: -10px; animation: float 3.8s ease-in-out infinite alternate-reverse; }
@keyframes float { from{transform:translateY(0)} to{transform:translateY(-10px)} }
.fb-ico { width: 30px; height: 30px; border-radius: 7px; display:flex;align-items:center;justify-content:center;font-size:16px; }
.fb-t { font-size: 12px; }
.fb-t strong { display: block; font-size: 13px; font-weight: 700; }

/* ══════════════════════════════════
   PLATFORMS BAR
══════════════════════════════════ */
.plat-bar {
  padding: 42px 0; background: var(--dark);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.plat-lbl {
  text-align: center; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px;
}
.plat-row { display: flex; align-items: center; justify-content: center; gap: 42px; flex-wrap: wrap; }
.plat-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--muted);
  opacity: .55; transition: opacity .2s;
}
.plat-item:hover { opacity: 1; }
.plat-item .pi { width: 28px; height: 28px; background: var(--border); border-radius: 6px; display:flex;align-items:center;justify-content:center;font-size:15px; }

/* ══════════════════════════════════
   STATS
══════════════════════════════════ */
.stats-section { padding: 96px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
}
.stat-box { background: var(--dark); padding: 38px 30px; transition: background .2s; }
.stat-box:hover { background: var(--card); }
.stat-n { font-size: 50px; font-weight: 900; letter-spacing: -.03em; line-height: 1; }
.stat-n .a { color: var(--coral); }
.stat-lbl { font-size: 14px; color: var(--mid); margin-top: 8px; }
.stat-sub { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ══════════════════════════════════
   SERVICE CARDS
══════════════════════════════════ */
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
}
.svc { background: var(--dark); padding: 36px 32px; transition: background .2s; }
.svc:hover { background: var(--card); }
.svc-ico { width: 46px; height: 46px; border-radius: 12px; display:flex;align-items:center;justify-content:center;font-size:22px;margin-bottom:18px; }
.svc-name { font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.svc-desc { font-size: 14px; color: var(--mid); line-height: 1.7; }

/* ══════════════════════════════════
   HOW GRID
══════════════════════════════════ */
.how-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; margin-top: 52px;
}
.how-box { background: var(--dark); padding: 34px 26px; transition: background .2s; }
.how-box:hover { background: var(--card); }
.how-n { font-size: 44px; font-weight: 900; color: var(--border); letter-spacing: -.03em; line-height: 1; margin-bottom: 16px; }
.how-t { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.how-d { font-size: 13px; color: var(--mid); line-height: 1.7; }

/* ══════════════════════════════════
   BROWSER MOCK
══════════════════════════════════ */
.browser { background: var(--card); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.brow-bar {
  background: var(--dark); padding: 12px 18px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.dots { display: flex; gap: 5px; }
.d { width: 10px; height: 10px; border-radius: 50%; }
.brow-url { flex: 1; background: var(--black); border-radius: 6px; padding: 4px 12px; font-size: 11px; color: var(--muted); }
.brow-body { padding: 22px; }
.brow-sec { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.kpi3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.kp { background: var(--dark); border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
.kp-v { font-size: 19px; font-weight: 800; }
.kp-k { font-size: 10px; color: var(--muted); margin-top: 1px; }
.kp-u { font-size: 10px; color: var(--green); font-weight: 700; }
.chart-wrap { background: var(--dark); border: 1px solid var(--border); border-radius: 10px; padding: 14px; display: flex; align-items: flex-end; gap: 3px; height: 90px; }
.cb-w { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.cb { width: 100%; border-radius: 3px 3px 0 0; background: linear-gradient(to top, var(--coral), rgba(232,93,58,.15)); }
.cl { font-size: 8px; color: var(--muted); }
.row2 { display: flex; gap: 8px; margin-top: 8px; }
.info-box { flex: 1; background: var(--dark); border: 1px solid var(--border); border-radius: 8px; padding: 9px 12px; font-size: 11px; }
.info-box .ib-l { color: var(--muted); margin-bottom: 3px; font-size: 10px; }
.info-box .ib-v { font-weight: 700; }

/* ══════════════════════════════════
   STEPS
══════════════════════════════════ */
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 18px; position: relative; }
.step:not(:last-child)::after { content: ''; position: absolute; left: 17px; top: 38px; bottom: 0; width: 1px; background: var(--border); }
.snum { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: var(--dark); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; position: relative; z-index: 1; }
.snum.hi { border-color: var(--coral); color: var(--coral); }
.snum.gold { border-color: var(--gold); color: var(--gold); }
.scont { padding: 6px 0 36px; }
.scont.last { padding-bottom: 0; }
.stit { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.sdesc { font-size: 13px; color: var(--mid); line-height: 1.65; }
.sdur { display: inline-block; margin-top: 7px; font-size: 11px; font-weight: 700; color: var(--coral); background: rgba(232,93,58,.1); padding: 3px 10px; border-radius: 100px; }

/* ══════════════════════════════════
   MARKET BARS
══════════════════════════════════ */
.mkt-bars { display: flex; flex-direction: column; gap: 20px; }
.mb-lbl { display: flex; justify-content: space-between; margin-bottom: 6px; }
.mb-lbl span { font-size: 13px; color: var(--mid); }
.mb-lbl strong { font-size: 13px; font-weight: 600; }
.mb-bg { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.mb-fill { height: 100%; border-radius: 3px; background: linear-gradient(to right, var(--coral), var(--gold)); }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 52px; }
.tcard { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.tstars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.ttext { font-size: 14px; line-height: 1.75; color: var(--light); font-style: italic; margin-bottom: 22px; }
.tauthor { display: flex; align-items: center; gap: 12px; }
.tav { width: 38px; height: 38px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: var(--gold); flex-shrink: 0; }
.t-name { font-size: 13px; font-weight: 700; }
.t-role { font-size: 11px; color: var(--mid); }

/* ══════════════════════════════════
   CTA BAND
══════════════════════════════════ */
.cta-section { padding: 110px 0; }
.cta-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 80px; text-align: center; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 320px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232,93,58,.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title { font-size: clamp(32px, 4.8vw, 52px); font-weight: 900; letter-spacing: -.022em; line-height: 1.1; margin-bottom: 18px; position: relative; }
.cta-title em { font-family: var(--serif); font-style: italic; color: var(--coral); }
.cta-sub { font-size: 17px; color: var(--mid); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; line-height: 1.7; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-note { font-size: 12px; color: var(--muted); margin-top: 16px; position: relative; }

/* ══════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════ */
.page-hero {
  padding: 140px 0 80px; background: var(--dark);
  border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.page-hero-orb {
  position: absolute; top: -100px; right: -100px; width: 500px; height: 500px;
  border-radius: 50%; background: radial-gradient(circle, rgba(232,93,58,.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero-tag { margin-bottom: 20px; }
.page-h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 900; letter-spacing: -.025em; line-height: 1.08; margin-bottom: 20px; }
.page-h1 em { font-family: var(--serif); font-style: italic; color: var(--coral); }
.page-sub { font-size: 18px; color: var(--mid); line-height: 1.75; max-width: 560px; }

/* ══════════════════════════════════
   FORM
══════════════════════════════════ */
.form-wrap { max-width: 680px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid.full { grid-template-columns: 1fr; }
.fg { display: flex; flex-direction: column; }
.fg.span2 { grid-column: span 2; }
.fl { font-size: 11px; font-weight: 700; color: var(--mid); margin-bottom: 6px; letter-spacing: .04em; text-transform: uppercase; }
.fi {
  background: var(--card); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 14px; color: var(--white); font-size: 14px; font-family: var(--font);
  outline: none; transition: border-color .2s; width: 100%;
}
.fi:focus { border-color: var(--coral); }
.fi::placeholder { color: var(--muted); }
.fi option { background: var(--dark); }
.fsub {
  width: 100%; background: var(--coral); color: #fff; border: none;
  border-radius: 8px; padding: 15px; font-size: 16px; font-weight: 700;
  cursor: pointer; font-family: var(--font); transition: background .2s; margin-top: 8px;
}
.fsub:hover { background: var(--coral2); }
.form-success {
  display: none; text-align: center; padding: 48px 24px;
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
}
.form-success .big-check { font-size: 48px; margin-bottom: 16px; }
.form-success h3 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.form-success p { color: var(--mid); }

/* ══════════════════════════════════
   MODAL
══════════════════════════════════ */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.88);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
  backdrop-filter: blur(10px);
}
.overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--dark); border: 1px solid var(--border); border-radius: 20px;
  padding: 44px; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto;
  position: relative; transform: translateY(18px); transition: transform .3s;
}
.overlay.open .modal { transform: translateY(0); }
.modal-x {
  position: absolute; top: 18px; right: 18px; background: var(--border); border: none;
  color: var(--mid); width: 30px; height: 30px; border-radius: 50%; cursor: pointer;
  font-size: 15px; display: flex; align-items: center; justify-content: center;
  transition: background .2s; font-family: var(--font);
}
.modal-x:hover { background: var(--card); color: var(--white); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer { border-top: 1px solid var(--border); padding: 58px 0 36px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.foot-tag { font-size: 13px; color: var(--mid); line-height: 1.65; margin-top: 14px; }
.foot-loc { font-size: 12px; color: var(--muted); margin-top: 12px; }
.fcol-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.fcol-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fcol-links a { font-size: 13px; color: var(--mid); text-decoration: none; transition: color .2s; }
.fcol-links a:hover { color: var(--white); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); }
.foot-bottom a { color: var(--mid); text-decoration: none; }
.foot-bottom a:hover { color: var(--white); }
.foot-right { display: flex; gap: 18px; }

/* ══════════════════════════════════
   PRICING CARDS
══════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px; position: relative;
}
.price-card.featured { border-color: var(--coral); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 4px 14px; border-radius: 100px;
}
.price-name { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.price-desc { font-size: 13px; color: var(--mid); margin-bottom: 20px; }
.price-val { font-size: 38px; font-weight: 900; letter-spacing: -.02em; margin-bottom: 4px; }
.price-val span { font-size: 16px; font-weight: 400; color: var(--mid); }
.price-note { font-size: 12px; color: var(--muted); margin-bottom: 24px; }
.price-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q {
  padding: 20px 24px; font-size: 15px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; color: var(--white); font-family: var(--font);
  width: 100%; text-align: left;
}
.faq-q:hover { background: rgba(255,255,255,.03); }
.faq-icon { flex-shrink: 0; font-size: 18px; color: var(--coral); transition: transform .3s; }
.faq-a { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--mid); line-height: 1.75; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════
   MODULES (platform tabs)
══════════════════════════════════ */
.modules { display: flex; flex-direction: column; gap: 3px; }
.mod {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: all .2s;
}
.mod:hover, .mod.on { background: var(--card); border-color: var(--border); }
.mod.on .mod-ico { background: var(--coral); }
.mod-ico { width: 38px; height: 38px; border-radius: 9px; background: var(--border); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; transition: background .2s; }
.mod-name { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.mod-desc { font-size: 12px; color: var(--mid); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
/* ══════════════════════════════════
   APPLY PAGE FOOTER CLASSES
══════════════════════════════════ */
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; margin-bottom: 36px; }
.footer-brand p { font-size: .82rem; color: var(--mid); max-width: 220px; line-height: 1.6; margin-top: 10px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fl-col { display: flex; flex-direction: column; gap: 10px; }
.fl-col h5 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.fl-col a { font-size: 13px; color: var(--mid); text-decoration: none; transition: color .2s; }
.fl-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 8px; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-vis { display: block; margin-top: 32px; padding: 0; }
  .hero-vis img { border-radius: 16px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(3,1fr); }
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .nav-mobile-toggle { display: block; }
  .form-grid { grid-template-columns: 1fr; }
  .fg.span2 { grid-column: span 1; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 44px 22px; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .foot-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .foot-right { flex-wrap: wrap; justify-content: center; }
  .modal { padding: 32px 22px; }
  .page-hero { padding: 120px 0 60px; }
  .hero-h1 { font-size: clamp(32px, 8vw, 52px); }
  .sec-title { font-size: clamp(24px, 6vw, 38px); }
}
/* Samsung Fold 7 outer screen ~373px */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .btn-lg { font-size: 14px; padding: 13px 22px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .stat-n { font-size: 38px; }
  .cta-box { padding: 36px 16px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .nav-actions .btn-primary { font-size: 12px; padding: 8px 14px; }
}
