/* fw-binance.com — Deep Blue Search-API theme (algolia-inspired) */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark:      #080f1e;
  --bg-card:      #0d1a33;
  --bg-card2:     #0f2044;
  --blue-pri:     #1a6cf5;
  --blue-lgt:     #3b82f6;
  --blue-acc:     #60a5fa;
  --blue-pale:    #93c5fd;
  --cyan:         #22d3ee;
  --white:        #ffffff;
  --txt-main:     #e2e8f0;
  --txt-muted:    #94a3b8;
  --border:       rgba(59,130,246,0.22);
  --shadow-glow:  0 0 40px rgba(26,108,245,0.35);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --font-sans:    'Inter','Segoe UI',Arial,sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--txt-main);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--blue-acc); text-decoration: none; }
a:hover { color: var(--white); }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3 { font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; color: var(--white); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { color: var(--txt-muted); font-size: 1rem; }

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }

/* ── Navbar ───────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,15,30,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo span {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--txt-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta-wrap { display: flex; align-items: center; gap: 12px; }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--txt-main);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--blue-lgt); color: var(--white); }

.btn-primary {
  background: var(--blue-pri);
  border: none;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--blue-lgt); box-shadow: 0 0 18px rgba(26,108,245,0.55); }

/* mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--txt-main);
  border-radius: 2px;
  transition: transform 0.25s;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #080f1e 0%, #0a1628 40%, #0d2a6e 100%);
}

/* grid noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* top-right glow blob */
.hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,108,245,0.28) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,108,245,0.15);
  border: 1px solid rgba(59,130,246,0.35);
  color: var(--blue-acc);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-badge::before { content: '●'; color: var(--cyan); font-size: 0.7rem; }

.hero-title { margin-bottom: 20px; }
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue-lgt), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  color: var(--txt-muted);
  max-width: 520px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.btn-hero-primary {
  background: var(--blue-pri);
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-hero-primary:hover { background: var(--blue-lgt); box-shadow: 0 0 32px rgba(26,108,245,0.6); }

.btn-hero-sec {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--txt-main);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-hero-sec:hover { border-color: var(--blue-lgt); background: rgba(26,108,245,0.08); }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--white); }
.hero-stat span { font-size: 0.8rem; color: var(--txt-muted); }

/* Hero visual panel */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(26,108,245,0.15);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.panel-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.dot-r { background: #ff5f56; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #27c93f; }

.panel-title {
  font-size: 0.8rem;
  color: var(--txt-muted);
  margin-left: 4px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 16px;
}
.search-bar svg { flex-shrink: 0; }
.search-bar span {
  font-size: 0.9rem;
  color: var(--txt-muted);
}
.search-cursor {
  display: inline-block;
  width: 2px; height: 14px;
  background: var(--blue-acc);
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}
@keyframes blink { 50% { opacity: 0; } }

.result-list { display: flex; flex-direction: column; gap: 10px; }

.result-item {
  background: rgba(26,108,245,0.07);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.2s;
}
.result-item:hover { border-color: var(--blue-lgt); }
.result-item strong { font-size: 0.88rem; color: var(--white); display: block; margin-bottom: 3px; }
.result-item span { font-size: 0.78rem; color: var(--txt-muted); }
.result-tag {
  display: inline-block;
  background: rgba(26,108,245,0.25);
  color: var(--blue-acc);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  margin-top: 5px;
}

/* ── Logo band ────────────────────────────────────────────── */
.logo-band {
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}

.logo-band-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--txt-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.logo-band-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px 52px;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--txt-muted);
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.trust-logo:hover { opacity: 1; }
.trust-logo svg { flex-shrink: 0; }

/* ── Features (what Binance offers) ──────────────────────── */
.features { background: transparent; }

.section-label {
  display: inline-block;
  background: rgba(26,108,245,0.14);
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--blue-acc);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { max-width: 560px; margin: 14px auto 0; font-size: 1.05rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feat-card:hover {
  border-color: var(--blue-lgt);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,108,245,0.18);
}

.feat-icon {
  width: 48px; height: 48px;
  background: rgba(26,108,245,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feat-card h3 { margin-bottom: 10px; }
.feat-card p { font-size: 0.9rem; line-height: 1.6; }

/* ── Download section ─────────────────────────────────────── */
.download-section {
  background: linear-gradient(135deg, #0a1628 0%, #0d2a6e 100%);
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,108,245,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.dl-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.dl-content h2 { margin-bottom: 16px; }
.dl-content p { font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }

.dl-btns { display: flex; flex-direction: column; gap: 14px; max-width: 340px; }

.btn-dl-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-dl {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-dl:hover { border-color: var(--blue-lgt); background: rgba(26,108,245,0.1); }
.btn-dl svg { flex-shrink: 0; }
.btn-dl-txt { text-align: left; }
.btn-dl-txt small { display: block; font-size: 0.7rem; color: var(--txt-muted); }
.btn-dl-txt strong { display: block; font-size: 0.9rem; color: var(--white); font-weight: 700; }

.btn-dl-large {
  background: var(--blue-pri);
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: 100%;
  box-shadow: var(--shadow-glow);
  transition: background 0.2s;
}
.btn-dl-large:hover { background: var(--blue-lgt); }

/* Download visual */
.dl-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 28px;
  width: 240px;
  padding: 24px 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(26,108,245,0.2);
}

.phone-notch {
  width: 60px; height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  margin: 0 auto 20px;
}

.phone-screen {
  background: var(--bg-dark);
  border-radius: 14px;
  padding: 16px;
}

.phone-ticker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  margin-bottom: 12px;
}
.phone-ticker span { color: var(--txt-muted); }
.phone-ticker strong { color: var(--white); }
.up { color: #22c55e; }
.down { color: #ef4444; }

.mini-chart { margin: 10px 0; }
.mini-chart svg { width: 100%; }

.phone-coins { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.coin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.73rem;
}
.coin-sym { color: var(--white); font-weight: 700; }
.coin-name { color: var(--txt-muted); }
.coin-price { color: var(--white); }
.coin-chg-up { color: #22c55e; }
.coin-chg-dn { color: #ef4444; }

/* ── Steps section ────────────────────────────────────────── */
.steps-section { background: rgba(255,255,255,0.01); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 16.66%; right: 16.66%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  z-index: 0;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue-pri), var(--blue-lgt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(26,108,245,0.4);
}

.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; }

.steps-cta {
  text-align: center;
  margin-top: 44px;
}

/* ── Security section ─────────────────────────────────────── */
.security-section { background: transparent; }

.sec-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sec-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sec-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  transition: border-color 0.2s;
}
.sec-card:hover { border-color: var(--blue-lgt); }
.sec-card:first-child {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg-card2), rgba(26,108,245,0.08));
  border-color: rgba(59,130,246,0.3);
}

.sec-icon {
  width: 40px; height: 40px;
  background: rgba(26,108,245,0.18);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

.sec-card h3 { font-size: 1rem; margin-bottom: 8px; }
.sec-card p { font-size: 0.82rem; line-height: 1.55; }

.sec-content h2 { margin-bottom: 16px; }
.sec-content > p { margin-bottom: 28px; font-size: 1rem; }

.sec-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.sec-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--txt-muted);
}
.sec-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: rgba(26,108,245,0.2);
  border: 1px solid var(--blue-lgt);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%233b82f6' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* ── Numbers / Social proof ───────────────────────────────── */
.numbers-section {
  background: linear-gradient(135deg, rgba(26,108,245,0.06) 0%, rgba(8,15,30,0) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.num-item strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--white), var(--blue-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.num-item span { font-size: 0.85rem; color: var(--txt-muted); }

/* ── Platform cards ───────────────────────────────────────── */
.platform-section { background: transparent; }

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.plat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.plat-card:hover { border-color: var(--blue-lgt); transform: translateY(-4px); }

.plat-icon {
  width: 56px; height: 56px;
  background: rgba(26,108,245,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.plat-card h3 { font-size: 1rem; margin-bottom: 8px; }
.plat-card p { font-size: 0.82rem; line-height: 1.55; }

.platform-cta { text-align: center; margin-top: 40px; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0d2a6e 0%, #1a6cf5 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-banner-inner { position: relative; z-index: 1; }

.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  border: none;
  color: var(--blue-pri);
  font-size: 1rem;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.55);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #050c1a;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--txt-muted);
  line-height: 1.7;
  margin: 14px 0 20px;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-logo img { height: 30px; }
.footer-logo span { font-size: 1rem; font-weight: 700; color: var(--white); }

.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--txt-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.social-btn:hover { background: var(--blue-pri); color: #fff; border-color: var(--blue-pri); }

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--txt-muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--txt-muted);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--txt-muted); }
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(148,163,184,0.55);
  max-width: 600px;
  line-height: 1.55;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid  { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }

  .nav-links, .nav-cta-wrap { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner  { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { order: -1; }
  .search-panel { max-width: 100%; }

  .dl-inner { grid-template-columns: 1fr; gap: 40px; }
  .dl-visual { order: -1; }

  .sec-inner { grid-template-columns: 1fr; gap: 40px; }
  .sec-visual { grid-template-columns: 1fr 1fr; }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .numbers-grid  { grid-template-columns: 1fr 1fr; }

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

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
  .platform-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .phone-mockup { width: 200px; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}
