/* ─── Variables ──────────────────────────────────────────────────────────── */
:root {
  --primary:       #7C4DFF;
  --primary-dark:  #5C35CC;
  --primary-light: #9E72FF;
  --accent:        #FF6534;
  --bg:            #0A0E1A;
  --surface:       #141829;
  --card:          #1A1F35;
  --border:        #252A42;
  --text:          #FFFFFF;
  --text-sec:      #8892B0;
  --text-muted:    #4A5070;
  --green:         #00C896;
  --yellow:        #FFCA28;
  --red:           #FF3D57;
  --radius:        16px;
  --radius-sm:     8px;
  --radius-full:   999px;
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── Animations ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ─── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 77, 255, 0.15);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-sec);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.btn-nav {
  background: var(--primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.btn-nav:hover { background: var(--primary-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(124, 77, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(124, 77, 255, 0.5); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 15px 32px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--primary); background: rgba(124, 77, 255, 0.08); }

/* ─── Section Wrapper ────────────────────────────────────────────────────── */
.section { padding: 100px 48px; max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  background: rgba(124, 77, 255, 0.15);
  color: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(124, 77, 255, 0.25);
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-sec);
  max-width: 560px;
  line-height: 1.7;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(124, 77, 255, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(255, 101, 52, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(124, 77, 255, 0.10) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,77,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,77,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 200, 150, 0.12);
  color: var(--green);
  border: 1px solid rgba(0, 200, 150, 0.25);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-title {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.hero-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
}
.hero-stat span {
  font-size: 13px;
  color: var(--text-sec);
}

/* ─── Phone Mockup ───────────────────────────────────────────────────────── */
.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 5s ease-in-out infinite;
  position: relative;
}
.phone-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,77,255,0.35) 0%, transparent 70%);
  border-radius: 50%;
}
.phone {
  width: 280px;
  background: var(--surface);
  border-radius: 40px;
  border: 2px solid var(--border);
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(124,77,255,0.2),
    inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}
.phone-notch {
  width: 90px; height: 26px;
  background: var(--bg);
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
}
.phone-screen { padding: 16px; }
.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.phone-header-title { font-size: 16px; font-weight: 800; }
.phone-search {
  background: var(--card);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.phone-card {
  background: var(--card);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
}
.phone-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.phone-card-name { font-size: 12px; font-weight: 700; }
.phone-card-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 99px;
}
.badge-safe { background: rgba(0,200,150,0.15); color: var(--green); }
.badge-scam { background: rgba(255,61,87,0.15); color: var(--red); }
.badge-warn { background: rgba(255,202,40,0.15); color: var(--yellow); }
.phone-stars { color: var(--yellow); font-size: 11px; margin-bottom: 4px; }
.phone-card-sub { font-size: 10px; color: var(--text-sec); }
.phone-card-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}
.phone-card-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--primary));
}
.phone-alert {
  background: rgba(255,61,87,0.1);
  border: 1px solid rgba(255,61,87,0.2);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-alert-icon { font-size: 16px; }
.phone-alert-text { font-size: 10px; color: var(--red); font-weight: 600; }

/* ─── Trust Stats Bar ────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 48px;
}
.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item span { font-size: 14px; color: var(--text-sec); margin-top: 4px; display: block; }

/* ─── Feature Cards ──────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,77,255,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-sec); line-height: 1.7; }

/* ─── How It Works ───────────────────────────────────────────────────────── */
.how-section { background: var(--surface); }
.how-section .section { border-radius: 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(16.67% + 16px); right: calc(16.67% + 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
}
.step { text-align: center; }
.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(124,77,255,0.4);
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-sec); line-height: 1.7; }

/* ─── Platforms ──────────────────────────────────────────────────────────── */
.platforms-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.platform-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  transition: border-color 0.2s, transform 0.2s;
}
.platform-chip:hover { transform: translateY(-2px); }
.platform-chip.instagram { border-color: rgba(225,48,108,0.3); }
.platform-chip.youtube { border-color: rgba(255,0,0,0.3); }
.platform-chip.facebook { border-color: rgba(24,119,242,0.3); }
.platform-chip.tiktok { border-color: rgba(105,201,208,0.3); }

/* ─── Trust Section ──────────────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 32px;
}
.trust-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.trust-score-demo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-label { font-size: 14px; color: var(--text-sec); min-width: 100px; }
.trust-bar { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.trust-fill { height: 100%; border-radius: 4px; }
.fill-green { background: linear-gradient(90deg, var(--green), #00e5a8); width: 85%; }
.fill-yellow { background: linear-gradient(90deg, var(--yellow), #ffe44d); width: 55%; }
.fill-red { background: linear-gradient(90deg, var(--red), #ff6b7a); width: 20%; }
.trust-pct { font-size: 14px; font-weight: 700; min-width: 36px; text-align: right; }
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tbadge-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.tbadge-icon.green { background: rgba(0,200,150,0.15); }
.tbadge-icon.red   { background: rgba(255,61,87,0.15); }
.tbadge-icon.yellow{ background: rgba(255,202,40,0.15); }
.tbadge-icon.purple{ background: rgba(124,77,255,0.15); }
.tbadge-text strong { display: block; font-size: 15px; font-weight: 700; }
.tbadge-text span { font-size: 13px; color: var(--text-sec); }

/* ─── CTA Section ────────────────────────────────────────────────────────── */
.cta-section {
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(124,77,255,0.2) 0%, transparent 70%);
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-inner p {
  font-size: 18px;
  color: var(--text-sec);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.store-btn:hover { border-color: var(--primary); transform: translateY(-2px); }
.store-btn-icon { font-size: 28px; }
.store-btn-text small { display: block; font-size: 11px; color: var(--text-sec); }
.store-btn-text strong { display: block; font-size: 16px; font-weight: 700; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 48px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-sec);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── Contact Page ───────────────────────────────────────────────────────── */
.page-hero {
  padding: 160px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(124,77,255,0.15) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 100px;
}
.contact-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--text-sec); line-height: 1.7; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(124,77,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.contact-item-text a { font-size: 14px; color: var(--primary-light); }
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--surface); }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 8px 32px rgba(124,77,255,0.35);
}
.btn-submit:hover { opacity: 0.92; transform: translateY(-1px); }

/* ─── Legal Pages (Privacy / Terms) ─────────────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px 100px;
}
.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 12px;
  color: var(--text);
}
.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--primary-light);
}
.legal-content p {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ul li {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-date {
  display: inline-block;
  background: rgba(124,77,255,0.12);
  color: var(--primary-light);
  border: 1px solid rgba(124,77,255,0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .navbar { padding: 16px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .phone-wrap { order: -1; }
  .section { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 24px 80px; }
  .trust-grid { grid-template-columns: 1fr; }
  .stats-bar { padding: 40px 24px; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { gap: 24px; }
  .cta-section { padding: 80px 24px; }
  .page-hero { padding: 130px 24px 60px; }
  .legal-content { padding: 0 24px 80px; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .platforms-row { gap: 12px; }
}
