/* ===========================================================
   PEGASUS VCC — Shared Design System
   Used by: homepage, /solutions/*, /blog/*
   =========================================================== */

:root {
  --bg-obsidian: #0B0B0C;
  --bg-slate: #131316;
  --bg-card: #16161a;
  --gold: #D4AF37;
  --gold-bright: #F2D479;
  --mint: #00F5B7;
  --text-primary: #F5F5F7;
  --text-muted: #9A9AA3;
  --border: rgba(212, 175, 55, 0.14);
  --radius: 18px;
  --maxw: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  background: var(--bg-obsidian);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient background glows */
body::before {
  content: '';
  position: fixed;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(212,175,55,0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

a { text-decoration: none; color: inherit; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .3s ease, background .3s ease;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1408;
  box-shadow: 0 8px 28px rgba(212,175,55,0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(212,175,55,0.55); }

.btn-ghost {
  background: rgba(255,255,255,0.03);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-3px); }

.btn-mint {
  background: linear-gradient(135deg, var(--mint), #00c894);
  color: #042b21;
  box-shadow: 0 8px 28px rgba(0,245,183,0.30);
}
.btn-mint:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(0,245,183,0.45); }

/* Pulsing glow for hero CTA */
.btn-pulse { animation: pulseGlow 2.4s ease-in-out infinite; }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 8px 28px rgba(212,175,55,0.35); }
  50% { box-shadow: 0 8px 44px rgba(212,175,55,0.75); }
}

/* ---------- Header ----------
   Scoped to #header so it does NOT affect other <header> elements
   (e.g. <header class="article-hero"> inside blog articles). */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background: rgba(11,11,12,0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 1px;
}
.logo-mark {
  height: 46px; width: auto;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.logo-mark img { height: 46px; width: auto; object-fit: contain; filter: drop-shadow(0 3px 10px rgba(212,175,55,0.4)); }
.cc-brand img { height: 30px; width: auto; filter: brightness(0) opacity(0.82); }
.logo span { background: linear-gradient(90deg, #fff, var(--gold-bright)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--text-muted); font-weight: 500; font-size: .95rem; transition: color .2s; }
.nav-links a:hover { color: var(--gold-bright); }

.menu-toggle { display: none; background: none; border: none; color: var(--text-primary); cursor: pointer; }

/* ---------- Section base ---------- */
section { padding: 110px 0; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(212,175,55,0.05);
  margin-bottom: 22px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 620px; margin-top: 16px; }
.text-gold { background: linear-gradient(90deg, var(--gold-bright), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.text-mint { color: var(--mint); }
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Hero ---------- */
.hero { padding-top: 160px; padding-bottom: 90px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.85rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero p.lead { color: var(--text-muted); font-size: 1.15rem; max-width: 540px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; flex-wrap: wrap; }
.stat .num { font-size: 1.9rem; font-weight: 800; }
.stat .lbl { color: var(--text-muted); font-size: .85rem; }

/* ---------- Credit Card Mockup ---------- */
.card-stage { display: flex; justify-content: center; align-items: center; perspective: 1400px; }
.credit-card {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 1.586 / 1;
  border-radius: 22px;
  padding: 30px;
  position: relative;
  color: #1c1402;
  background:
    linear-gradient(135deg, #f7e9b0 0%, #d4af37 38%, #a8851f 70%, #f2d479 100%);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.55),
    inset 0 1px 1px rgba(255,255,255,0.6);
  transform: rotateY(-14deg) rotateX(6deg);
  transition: transform .5s ease;
  overflow: hidden;
  animation: floatCard 6s ease-in-out infinite;
}
.credit-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 48%, transparent 62%);
  transform: translateX(-100%);
  animation: shine 5s ease-in-out infinite;
}
@keyframes shine { 0%,100% { transform: translateX(-120%); } 50% { transform: translateX(120%); } }
@keyframes floatCard {
  0%,100% { transform: rotateY(-14deg) rotateX(6deg) translateY(0); }
  50% { transform: rotateY(-10deg) rotateX(4deg) translateY(-14px); }
}
.card-stage:hover .credit-card { transform: rotateY(0deg) rotateX(0deg); }

.cc-top { display: flex; justify-content: space-between; align-items: flex-start; position: relative; z-index: 2; }
.cc-brand { font-weight: 800; font-size: 1.1rem; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; }
.cc-wifi { transform: rotate(90deg); opacity: .85; }
.cc-chip {
  width: 52px; height: 40px;
  border-radius: 8px;
  margin: 26px 0 22px;
  background: linear-gradient(135deg, #f9e9a8, #b8941f);
  position: relative; z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15);
}
.cc-chip::before, .cc-chip::after {
  content:''; position:absolute; left:8px; right:8px; height:1px; background: rgba(0,0,0,0.25);
}
.cc-chip::before { top: 14px; } .cc-chip::after { top: 26px; }
.cc-number { font-family: 'Inter', monospace; font-size: 1.32rem; letter-spacing: 3px; font-weight: 600; position: relative; z-index: 2; }
.cc-bottom { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 18px; position: relative; z-index: 2; }
.cc-label { font-size: .58rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: .7; }
.cc-name { font-weight: 700; font-size: .95rem; letter-spacing: 1px; }
.cc-mc { display: flex; }
.cc-mc span { width: 30px; height: 30px; border-radius: 50%; }
.cc-mc span:first-child { background: rgba(255,255,255,0.55); }
.cc-mc span:last-child { background: rgba(28,20,2,0.55); margin-left: -12px; }

/* ---------- Advantages / Feature Grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.feature {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, var(--gold), transparent 40%, transparent 60%, var(--mint));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s ease;
}
.feature:hover { transform: translateY(-7px); background: #1a1a1f; }
.feature:hover::before { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(212,175,55,0.10);
  border: 1px solid var(--border);
  color: var(--gold-bright);
  margin-bottom: 22px;
  transition: transform .3s ease;
}
.feature:hover .feature-icon { transform: scale(1.08) rotate(-4deg); }
.feature h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.feature p { color: var(--text-muted); font-size: .96rem; }
/* feature card as a link */
a.feature { display: block; }
a.feature .feature-arrow { color: var(--gold-bright); font-weight: 600; font-size: .9rem; margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Whales / Enterprise ---------- */
.whale {
  position: relative;
  border-radius: 28px;
  padding: 70px 60px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(212,175,55,0.14), transparent 60%),
    linear-gradient(180deg, var(--bg-slate), var(--bg-card));
  border: 1px solid var(--border);
  overflow: hidden;
}
.whale::before {
  content: '👑';
  position: absolute; top: 30px; right: 40px; font-size: 3rem; opacity: .12;
}
.whale h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; letter-spacing: -1px; }
.whale p { color: var(--text-muted); font-size: 1.1rem; max-width: 680px; margin: 20px auto 34px; }

/* ---------- Onboarding Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 40px 30px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: transform .3s ease, border-color .3s ease;
}
.step:hover { transform: translateY(-6px); border-color: var(--border); }
.step-num {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 1.5rem; font-weight: 800;
  color: var(--gold-bright);
  background: rgba(212,175,55,0.08);
  border: 1.5px solid var(--border);
}
.step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: .96rem; }
.step-line { display: none; }

/* ---------- Trust / Social Proof Bar ---------- */
.trust { padding: 56px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.trust-head { text-align: center; color: var(--text-muted); font-size: .85rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 30px; }
.trust-head b { color: var(--gold-bright); }
.trust-logos {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  gap: 44px 56px;
}
.trust-logos .brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-muted); font-weight: 700; font-size: 1.35rem;
  opacity: .75; transition: opacity .3s ease, color .3s ease, transform .3s ease;
}
.trust-logos .brand i { font-size: 1.7rem; }
.trust-logos .brand:hover { opacity: 1; color: var(--text-primary); transform: translateY(-3px); }
.trust-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 920px; margin: 48px auto 0; text-align: center;
}
.trust-stats .num { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; }
.trust-stats .lbl { color: var(--text-muted); font-size: .9rem; margin-top: 4px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  padding: 38px 32px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.07);
  transition: transform .3s ease, border-color .3s ease;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--border); }
.price-card.featured {
  background: linear-gradient(180deg, rgba(212,175,55,0.10), var(--bg-card));
  border-color: var(--gold);
  box-shadow: 0 18px 50px rgba(212,175,55,0.18);
}
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #1a1408;
  font-size: .72rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.price-name { font-size: 1.15rem; font-weight: 700; }
.price-desc { color: var(--text-muted); font-size: .9rem; margin: 6px 0 22px; min-height: 40px; }
.price-amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -1px; }
.price-amount small { font-size: .95rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.price-list { list-style: none; margin: 26px 0 30px; display: flex; flex-direction: column; gap: 14px; }
.price-list li { display: flex; align-items: flex-start; gap: 11px; font-size: .95rem; color: #cfcfd6; }
.price-list li i { color: var(--mint); width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.price-card .btn { margin-top: auto; width: 100%; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testi {
  padding: 32px 30px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06);
  transition: transform .3s ease, border-color .3s ease;
}
.testi:hover { transform: translateY(-6px); border-color: var(--border); }
.testi-stars { color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; }
.testi-quote { font-size: 1rem; color: #d6d6dc; line-height: 1.65; }
.testi-author { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-weight: 800; color: #1a1408;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}
.testi-name { font-weight: 700; font-size: .95rem; }
.testi-role { color: var(--text-muted); font-size: .82rem; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 56px auto 0; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.07); border-radius: 14px;
  margin-bottom: 14px; background: var(--bg-card); overflow: hidden;
  transition: border-color .3s ease;
}
.faq-item.open { border-color: var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 26px; cursor: pointer; font-weight: 600; font-size: 1.05rem;
  list-style: none; user-select: none;
}
.faq-q i { color: var(--gold); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-a p { color: var(--text-muted); padding: 0 26px; font-size: .96rem; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-item.open .faq-a p { padding-bottom: 24px; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
  background: var(--bg-slate);
}
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { max-width: 340px; display: flex; flex-direction: column; gap: 18px; }
.footer-brand .footer-disclaimer { margin-top: 0; }
.footer-col h4 { font-size: .95rem; font-weight: 700; margin-bottom: 16px; color: var(--text-primary); }
.footer-col a { display: block; color: var(--text-muted); font-size: .92rem; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-social { display: flex; gap: 14px; }
.social-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all .25s ease;
}
.social-icon i { font-size: 1.25rem; }
.social-icon:hover { color: var(--gold-bright); border-color: var(--gold); transform: translateY(-3px); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 40px 0 26px; }
.footer-copy { color: var(--text-muted); font-size: .9rem; }
.footer-disclaimer { color: #6b6b73; font-size: .82rem; max-width: 760px; margin-top: 12px; line-height: 1.6; }

/* ---------- Floating Telegram Widget ---------- */
.tg-widget {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 200;
  display: flex; align-items: center; gap: 0;
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  color: #fff;
  border-radius: 999px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(34,158,217,0.5);
  font-weight: 700;
  transition: padding .3s ease, transform .25s ease, box-shadow .3s ease;
  overflow: hidden;
}
.tg-widget .tg-label { max-width: 0; opacity: 0; white-space: nowrap; transition: max-width .4s ease, opacity .3s ease, margin .3s ease; }
.tg-widget:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(34,158,217,0.7); }
.tg-widget:hover .tg-label { max-width: 180px; opacity: 1; margin: 0 10px 0 8px; }
.tg-widget::after {
  content: ''; position: absolute; inset: -4px; border-radius: 999px;
  border: 2px solid #2AABEE; opacity: .6;
  animation: ripple 2s ease-out infinite; z-index: -1;
}
@keyframes ripple { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.5); opacity: 0; } }

/* Mobile sticky hero CTA bar */
.mobile-cta-bar { display: none; }

/* Reveal on scroll — hidden state only applies when JS is active (html.js),
   so content stays visible if JS is disabled or fails to load. */
.reveal { transition: opacity .7s ease, transform .7s ease; }
html.js .reveal { opacity: 0; transform: translateY(30px); }
html.js .reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================================================
   SUB-PAGE / SILO / BLOG ADDITIONS
   =========================================================== */

/* Page hero (centered, no card) */
.page-hero { padding: 150px 0 60px; text-align: center; }
.page-hero h1 { font-size: clamp(2.1rem, 4.8vw, 3.4rem); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; max-width: 900px; margin: 18px auto 20px; }
.page-hero p.lead { color: var(--text-muted); font-size: 1.15rem; max-width: 660px; margin: 0 auto 32px; }

/* Breadcrumb */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .85rem; color: var(--text-muted); justify-content: center; margin-bottom: 8px; }
.breadcrumb a { color: var(--text-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb span { opacity: .45; }

/* Generic content section + prose */
.content-section { padding: 56px 0; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); font-weight: 800; letter-spacing: -.5px; margin: 44px 0 16px; line-height: 1.2; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.25rem; font-weight: 700; margin: 32px 0 12px; color: var(--gold-bright); }
.prose p { color: #cdcdd4; margin-bottom: 18px; font-size: 1.05rem; }
.prose ul, .prose ol { color: #cdcdd4; margin: 0 0 20px 1.3em; display: flex; flex-direction: column; gap: 10px; }
.prose li { font-size: 1.03rem; padding-left: 4px; }
.prose a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold); }
.prose strong { color: var(--text-primary); font-weight: 700; }
.prose blockquote { border-left: 3px solid var(--gold); padding: 6px 0 6px 22px; margin: 26px 0; color: var(--text-muted); font-style: italic; }

/* Two-column feature/benefit rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.reverse > :first-child { order: 2; }
.split h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -.5px; line-height: 1.2; margin-bottom: 16px; }
.split p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 16px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: #cfcfd6; font-size: 1rem; }
.check-list li i { color: var(--mint); width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; }
.split-visual {
  border-radius: var(--radius); padding: 40px;
  background: linear-gradient(160deg, rgba(212,175,55,0.08), var(--bg-card));
  border: 1px solid var(--border);
  display: grid; place-items: center; min-height: 280px;
}
.split-visual .big-icon { width: 96px; height: 96px; color: var(--gold-bright); }

/* CTA band */
.cta-band {
  border-radius: 24px; padding: 60px 40px; text-align: center; margin: 20px auto;
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.16), transparent 60%), linear-gradient(180deg, var(--bg-slate), var(--bg-card));
  border: 1px solid var(--border);
}
.cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; letter-spacing: -.5px; }
.cta-band p { color: var(--text-muted); max-width: 580px; margin: 16px auto 28px; font-size: 1.05rem; }

/* Blog listing */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.blog-card { display: flex; flex-direction: column; background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); overflow: hidden; transition: transform .3s ease, border-color .3s ease; }
.blog-card:hover { transform: translateY(-6px); border-color: var(--border); }
.blog-card .cover { aspect-ratio: 16/9; background: radial-gradient(circle at 30% 30%, rgba(212,175,55,0.18), transparent 60%), linear-gradient(135deg, #1a1a1f, #0e0e10); display: grid; place-items: center; color: var(--gold-bright); }
.blog-card .cover i { width: 46px; height: 46px; }
.blog-card .body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-card .tag { font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.blog-card h2, .blog-card h3 { font-size: 1.18rem; font-weight: 700; line-height: 1.35; letter-spacing: -.3px; }
.blog-card p { color: var(--text-muted); font-size: .93rem; flex: 1; }
.blog-card .read { color: var(--gold-bright); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }

/* Article */
.article-hero { padding: 140px 0 24px; text-align: center; }
.article-hero h1 { font-size: clamp(1.95rem, 4vw, 2.95rem); font-weight: 800; line-height: 1.15; letter-spacing: -1px; max-width: 840px; margin: 16px auto 0; }
.article-meta { display: flex; gap: 18px; flex-wrap: wrap; color: var(--text-muted); font-size: .88rem; margin-top: 20px; justify-content: center; }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-cover { max-width: 900px; margin: 36px auto 0; aspect-ratio: 16/7; border-radius: var(--radius); background: radial-gradient(circle at 30% 20%, rgba(212,175,55,0.2), transparent 55%), linear-gradient(135deg, #1a1a1f, #0e0e10); border: 1px solid var(--border); display: grid; place-items: center; color: var(--gold-bright); }
.article-cover i { width: 64px; height: 64px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero { padding-top: 140px; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
  .card-stage { order: -1; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .pricing-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .price-card.featured { order: -1; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split.reverse > :first-child { order: 0; }
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 76px; left: 0; right: 0;
    background: rgba(11,11,12,0.97); backdrop-filter: blur(16px);
    padding: 24px; gap: 20px; border-bottom: 1px solid var(--border);
  }
  .nav .btn-gold.nav-cta { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .grid-3 { grid-template-columns: 1fr; }
  section { padding: 80px 0; }
  .whale { padding: 50px 26px; }
  .hero-stats { gap: 26px; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Sticky mobile CTA */
  .mobile-cta-bar {
    display: block;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(11,11,12,0.92); backdrop-filter: blur(14px);
    border-top: 1px solid var(--border);
  }
  .mobile-cta-bar .btn { width: 100%; }
  .tg-widget { bottom: 80px; }
  body { padding-bottom: 70px; }
}

@media (min-width: 1800px) {
  :root { --maxw: 1480px; }
  body { font-size: 1.08rem; }
}
