/* ============================================================
   APEX CHAIN ASSETS — Main Website Stylesheet
   Fonts: Clash Display (headings) + Cabinet Grotesk (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Barlow:wght@300;400;500;600;700&display=swap');

/* We'll use Space Grotesk for display and Barlow for body */

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

:root {
  /* Core palette */
  --bg:           #050b18;
  --bg-2:         #080f1e;
  --bg-3:         #0c1629;
  --bg-card:      #0e1a2e;
  --bg-card-2:    #111f36;
  --border:       #162033;
  --border-2:     #1e2f4a;

  /* Accent */
  --blue:         #1d6ff0;
  --blue-light:   #4d90f7;
  --blue-glow:    rgba(29,111,240,0.22);
  --cyan:         #06b6d4;
  --gold:         #f59e0b;
  --gold-light:   #fbbf24;
  --green:        #10b981;
  --red:          #ef4444;

  /* Text */
  --txt-1:        #eef2ff;
  --txt-2:        #94a3c0;
  --txt-3:        #4a607a;

  /* Fonts */
  --f-display:    'Space Grotesk', sans-serif;
  --f-body:       'Barlow', sans-serif;

  /* Misc */
  --radius:       14px;
  --radius-sm:    8px;
  --shadow:       0 20px 60px rgba(0,0,0,0.5);
  --trans:        0.22s ease;
  --section-gap:  120px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--txt-1);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section spacing ────────────────────────────────────────── */
section { padding: var(--section-gap) 0; }

/* ── Section label ──────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-display); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(29,111,240,0.1);
  border: 1px solid rgba(29,111,240,0.25);
  border-radius: 100px; padding: 6px 14px;
  margin-bottom: 20px;
}
.section-label i { font-size: 10px; }

.section-heading {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; line-height: 1.15;
  color: var(--txt-1); letter-spacing: -0.5px;
}
.section-heading em  { color: var(--blue-light); font-style: normal; }
.section-heading span.gold { color: var(--gold); }

.section-sub {
  font-size: 17px; color: var(--txt-2); max-width: 560px;
  line-height: 1.75; margin-top: 16px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-family: var(--f-display); font-size: 14px; font-weight: 600;
  cursor: pointer; border: none; transition: all var(--trans);
  text-decoration: none; letter-spacing: 0.2px;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 24px var(--blue-glow);
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(29,111,240,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--txt-1);
  border: 1px solid var(--border-2);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue-light);
  background: var(--blue-glow);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #000; font-weight: 700;
  box-shadow: 0 4px 24px rgba(245,158,11,0.3);
}
.btn-gold:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-lg { padding: 17px 36px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  transition: background var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: rgba(5,11,24,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: var(--f-display); font-size: 22px; font-weight: 700;
  color: var(--txt-1); letter-spacing: -0.5px;
  display: flex; align-items: center;
}
.nav-logo span { color: var(--blue-light); }
.nav-logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
@media (max-width: 600px) {
  .nav-logo-img { height: 32px; max-width: 160px; }
}

.nav-links {
  display: flex; align-items: center; gap: 6px; list-style: none;
}
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-family: var(--f-body); font-size: 14px; font-weight: 500;
  color: var(--txt-2); transition: color var(--trans), background var(--trans);
}
.nav-links a:hover, .nav-links a.active { color: var(--txt-1); background: rgba(255,255,255,0.05); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--txt-2); border-radius: 2px;
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none; position: fixed; inset: 70px 0 0 0; z-index: 999;
  background: rgba(5,11,24,0.97); backdrop-filter: blur(20px);
  padding: 32px 24px; overflow-y: auto;
  flex-direction: column; gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 500; color: var(--txt-2);
  border: 1px solid transparent;
  transition: all var(--trans);
}
.nav-mobile a:hover { color: var(--txt-1); background: var(--bg-card); border-color: var(--border); }
.nav-mobile a i { color: var(--blue-light); width: 18px; text-align: center; }
.nav-mobile-actions {
  display: flex; flex-direction: column; gap: 10px; margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.nav-mobile-actions .btn { justify-content: center; }

@media (max-width: 860px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(29,111,240,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(6,182,212,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 10%, rgba(245,158,11,0.06) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(29,111,240,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,111,240,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(29,111,240,0.1);
  border: 1px solid rgba(29,111,240,0.3);
  border-radius: 100px; padding: 8px 18px;
  font-size: 13px; font-weight: 500; color: var(--blue-light);
  margin-bottom: 28px; animation: fadeUp 0.6s ease both;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -1.5px; color: var(--txt-1);
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title .accent { color: var(--blue-light); }
.hero-title .gold   { color: var(--gold); }

.hero-sub {
  font-size: 18px; color: var(--txt-2); max-width: 580px;
  line-height: 1.75; margin-bottom: 40px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex; gap: 36px; flex-wrap: wrap;
  margin-top: 64px; padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-stat-item .num {
  font-family: var(--f-display); font-size: 28px; font-weight: 700;
  color: var(--txt-1); display: block; letter-spacing: -0.5px;
}
.hero-stat-item .num .unit { color: var(--blue-light); font-size: 20px; }
.hero-stat-item .lbl {
  font-size: 13px; color: var(--txt-3); text-transform: uppercase;
  letter-spacing: 0.8px; margin-top: 4px; display: block;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Ticker (activity feed) ─────────────────────────────────── */
.activity-ticker {
  position: fixed; bottom: 28px; left: 24px; z-index: 500;
  display: flex; flex-direction: column; gap: 8px; pointer-events: none;
}
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(14,26,46,0.92);
  border: 1px solid var(--border-2);
  border-radius: 10px; padding: 10px 16px;
  font-size: 13px; color: var(--txt-2);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: slideInLeft 0.4s ease both, fadeOut 0.4s 4.5s ease forwards;
  max-width: 300px;
}
.ticker-item i { font-size: 12px; flex-shrink: 0; }
.ticker-item.deposit i  { color: var(--green); }
.ticker-item.withdraw i { color: var(--gold); }
.ticker-item strong { color: var(--txt-1); font-weight: 600; }

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeOut {
  to { opacity: 0; transform: translateX(-20px); }
}

/* ═══════════════════════════════════════════════════════════
   CRYPTO PRICES WIDGET
═══════════════════════════════════════════════════════════ */
.crypto-ticker-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 0;
}
.crypto-ticker-inner {
  display: flex; gap: 0;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}
.crypto-ticker-inner:hover { animation-play-state: paused; }
.crypto-coin-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 32px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.crypto-coin-item .coin-name {
  font-family: var(--f-display); font-size: 13px; font-weight: 600;
  color: var(--txt-1);
}
.crypto-coin-item .coin-price {
  font-size: 13px; font-weight: 600; color: var(--txt-1);
}
.crypto-coin-item .coin-change {
  font-size: 12px; font-weight: 600; padding: 2px 8px;
  border-radius: 4px;
}
.coin-change.up   { color: var(--green); background: rgba(16,185,129,0.12); }
.coin-change.down { color: var(--red);   background: rgba(239,68,68,0.12); }
.coin-icon { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   CARDS — General
═══════════════════════════════════════════════════════════ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* ═══════════════════════════════════════════════════════════
   PLANS SECTION
═══════════════════════════════════════════════════════════ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 56px;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: all var(--trans);
  display: flex; flex-direction: column;
}
.plan-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(29,111,240,0.15);
}
.plan-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245,158,11,0.06) 100%);
}
.plan-card.featured:hover { border-color: var(--gold-light); box-shadow: 0 24px 60px rgba(245,158,11,0.15); }
.plan-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: #000;
  font-family: var(--f-display); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  padding: 4px 10px; border-radius: 4px;
}
.plan-name {
  font-family: var(--f-display); font-size: 18px; font-weight: 700;
  color: var(--txt-1); margin-bottom: 20px;
}
.plan-roi {
  font-family: var(--f-display); font-size: 44px; font-weight: 700;
  color: var(--blue-light); letter-spacing: -1px; line-height: 1;
  margin-bottom: 4px;
}
.plan-roi span { font-size: 22px; color: var(--txt-2); font-weight: 400; }
.plan-duration {
  font-size: 13px; color: var(--txt-3); margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.plan-range {
  font-size: 14px; color: var(--txt-2); margin-bottom: 24px;
  background: var(--bg-3); border-radius: var(--radius-sm);
  padding: 10px 14px; border: 1px solid var(--border);
}
.plan-range strong { color: var(--txt-1); }
.plan-features { list-style: none; flex: 1; margin-bottom: 28px; }
.plan-features li {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--txt-2);
  padding: 6px 0; border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li i { color: var(--green); font-size: 11px; }

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════════════════ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
@media (max-width: 860px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  transition: all var(--trans);
}
.feature-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--f-display); font-size: 17px; font-weight: 700;
  color: var(--txt-1); margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--txt-2); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials-slider {
  margin-top: 56px; overflow: hidden; position: relative;
}
.testimonials-track {
  display: flex; gap: 24px;
  animation: testimonialScroll 40s linear infinite;
  width: max-content;
}
.testimonials-track:hover { animation-play-state: paused; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  min-width: 320px; max-width: 320px;
  flex-shrink: 0;
}
.testimonial-stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 14px; color: var(--txt-2); line-height: 1.75;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 14px; font-weight: 700;
  color: #fff; flex-shrink: 0;
}
.author-name { font-family: var(--f-display); font-size: 14px; font-weight: 600; color: var(--txt-1); }
.author-loc  { font-size: 12px; color: var(--txt-3); }
.author-badge { font-size: 11px; color: var(--green); }

@keyframes testimonialScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   BTC BLOCKCHAIN WIDGET
═══════════════════════════════════════════════════════════ */
.blockchain-widget {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.widget-header {
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.widget-header h3 {
  font-family: var(--f-display); font-size: 15px; font-weight: 700;
  color: var(--txt-1); display: flex; align-items: center; gap: 8px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.5s infinite;
  display: inline-block;
}
.tx-list { padding: 8px 0; max-height: 300px; overflow-y: auto; }
.tx-list::-webkit-scrollbar { width: 4px; }
.tx-list::-webkit-scrollbar-track { background: transparent; }
.tx-list::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 2px; }
.tx-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px; border-bottom: 1px solid var(--border);
  font-size: 13px; transition: background var(--trans);
  animation: txFadeIn 0.4s ease both;
}
.tx-item:hover { background: rgba(255,255,255,0.02); }
.tx-item:last-child { border-bottom: none; }
@keyframes txFadeIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.tx-hash { color: var(--blue-light); font-family: monospace; font-size: 12px; }
.tx-amount { font-family: var(--f-display); font-weight: 600; color: var(--gold); }
.tx-time { color: var(--txt-3); font-size: 11px; }

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 56px; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 34px; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}
@media (max-width: 860px) { .steps-grid { grid-template-columns: 1fr 1fr; } .steps-grid::before { display: none; } }
@media (max-width: 540px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  text-align: center; padding: 32px 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--trans);
}
.step-card:hover { border-color: var(--blue); transform: translateY(-4px); }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #0c3fb5);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 22px; font-weight: 700;
  color: #fff; margin: 0 auto 20px;
  box-shadow: 0 8px 24px var(--blue-glow);
  position: relative; z-index: 1;
}
.step-card h3 {
  font-family: var(--f-display); font-size: 16px; font-weight: 700;
  color: var(--txt-1); margin-bottom: 10px;
}
.step-card p { font-size: 13px; color: var(--txt-2); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, rgba(29,111,240,0.15) 0%, rgba(6,182,212,0.08) 100%);
  border: 1px solid rgba(29,111,240,0.2);
  border-radius: 24px; padding: 72px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: -1px;
  background: linear-gradient(135deg, rgba(29,111,240,0.3), transparent 50%, rgba(6,182,212,0.15));
  border-radius: 24px; z-index: -1;
}
.cta-banner h2 {
  font-family: var(--f-display); font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: var(--txt-1); margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cta-banner p { font-size: 17px; color: var(--txt-2); margin-bottom: 36px; }
.cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 56px; border-bottom: 1px solid var(--border);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo {
  font-family: var(--f-display); font-size: 22px; font-weight: 700;
  color: var(--txt-1); letter-spacing: -0.5px; margin-bottom: 16px;
  display: block;
}
.footer-brand .logo span { color: var(--blue-light); }
.footer-logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
@media (max-width: 600px) {
  .footer-logo-img { height: 30px; max-width: 160px; }
}
.footer-brand p { font-size: 14px; color: var(--txt-2); line-height: 1.75; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--txt-3); font-size: 14px;
  transition: all var(--trans);
}
.social-btn:hover { color: var(--blue-light); border-color: var(--blue); background: var(--blue-glow); }
.footer-col h4 {
  font-family: var(--f-display); font-size: 13px; font-weight: 700;
  color: var(--txt-1); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px; color: var(--txt-2);
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--blue-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 28px;
}
.footer-bottom p { font-size: 13px; color: var(--txt-3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--txt-3); transition: color var(--trans); }
.footer-bottom-links a:hover { color: var(--txt-2); }

/* ═══════════════════════════════════════════════════════════
   PAGE HEADER (inner pages)
═══════════════════════════════════════════════════════════ */
.page-header {
  padding: 140px 0 72px;
  background: linear-gradient(to bottom, rgba(29,111,240,0.06), transparent);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-header h1 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700; color: var(--txt-1); letter-spacing: -1px;
  margin-bottom: 16px;
}
.page-header p { font-size: 18px; color: var(--txt-2); max-width: 560px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-gap: 88px; }
}
@media (max-width: 768px) {
  :root { --section-gap: 72px; }
  .hero-stats { gap: 24px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-banner { padding: 48px 28px; }
}
@media (max-width: 480px) {
  .plans-grid { grid-template-columns: 1fr; }
  .hero-title { letter-spacing: -0.5px; }
}