/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #080808;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TOKENS ────────────────────────────────────────── */
:root {
  --bg:     #080808;
  --bg2:    #0f0f0f;
  --bg3:    #161616;
  --border: rgba(255,255,255,0.08);
  --border2:rgba(255,255,255,0.16);
  --t1: #ffffff;
  --t2: rgba(255,255,255,0.55);
  --t3: rgba(255,255,255,0.28);
  --indigo: #6366f1;
  --violet: #8b5cf6;
  --green:  #10b981;
  --grad:   linear-gradient(135deg,#6366f1,#8b5cf6,#a78bfa);
  --r:  16px;
  --rsm: 8px;
  --rlg: 24px;
  --pad: 120px;
  --w: 1200px;
}

/* ── TYPE ──────────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--t1);
}
h1 { font-size: clamp(44px,7vw,88px); }
h2 { font-size: clamp(34px,5vw,60px); }
h3 { font-size: clamp(17px,2.2vw,21px); }
p  { color: var(--t2); line-height: 1.7; }
em { font-style: normal; color: var(--t1); }
a  { color: inherit; text-decoration: none; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ────────────────────────────────────────── */
.container { max-width: var(--w); margin: 0 auto; padding: 0 24px; }
section { padding: var(--pad) 0; }
section[id] { scroll-margin-top: 80px; }

.sec-head { text-align: center; margin-bottom: 68px; }
.sec-head h2 { margin: 14px 0 18px; }
.sec-head p  { max-width: 520px; margin: 0 auto; font-size: 18px; }

/* ── PILL TAG ──────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--indigo);
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.25);
  padding: 6px 14px; border-radius: 100px;
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: var(--rsm); border: none;
  cursor: pointer; transition: all .2s; white-space: nowrap; text-decoration: none; line-height: 1;
}
.btn-primary { background: var(--grad); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(99,102,241,.4); }
.btn-ghost  { background: transparent; color: var(--t2); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--border2); color: var(--t1); background: rgba(255,255,255,.04); }
.btn-outline { background: transparent; color: var(--t1); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--border2); background: rgba(255,255,255,.04); }
.btn-sm { font-size: 13px; padding: 10px 20px; }
.btn-lg { font-size: 16px; padding: 17px 34px; }
.btn-xl { font-size: 18px; padding: 20px 44px; }
.btn-full { width: 100%; }

/* ── NAV ───────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 200;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav-scrolled {
  background: rgba(8,8,8,.9);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  max-width: var(--w); margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; gap: 36px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 28px; height: 28px; }
.logo-text { font-family: 'Space Grotesk',sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -.02em; }
.nav-links { list-style: none; display: flex; gap: 32px; flex: 1; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--t2); transition: color .2s; }
.nav-links a:hover { color: var(--t1); }

.lang-switch {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: 8px; padding: 3px; margin-left: auto;
}
.lang-btn {
  font-family: 'Space Grotesk',sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .06em; background: none; border: none;
  color: var(--t3); cursor: pointer; padding: 5px 10px; border-radius: 5px; transition: all .2s;
}
.lang-btn.active { background: rgba(255,255,255,.1); color: var(--t1); }
.lang-btn:hover:not(.active) { color: var(--t2); }

.nav-cta { flex-shrink: 0; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }

.nav-mobile { display: none; padding: 12px 24px 24px; border-top: 1px solid var(--border); background: rgba(8,8,8,.97); backdrop-filter: blur(20px); }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.nav-mobile a { font-size: 16px; color: var(--t2); font-weight: 500; display: block; padding: 4px 0; }
.nav-mobile a:hover { color: var(--t1); }
.nav-mobile .lang-switch { margin: 4px 0 0; }

.nav-open .nav-mobile { display: block; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden; padding: 120px 24px 80px;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.hero-glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(99,102,241,.18) 0%, transparent 70%);
  top: -150px; left: 50%; transform: translateX(-50%);
  animation: g1 9s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,.12) 0%, transparent 70%);
  bottom: -60px; right: 5%;
  animation: g2 12s ease-in-out infinite;
}
@keyframes g1 { 0%,100%{opacity:.5} 50%{opacity:.9} }
@keyframes g2 { 0%,100%{opacity:.35} 50%{opacity:.65} }

.hero-content { position: relative; z-index: 1; max-width: 920px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500;
  color: var(--t2); background: rgba(255,255,255,.04); border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 100px; margin-bottom: 40px;
}
.badge-dot {
  width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0;
  animation: blink 2.2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

.hero-headline { margin-bottom: 24px; }
.hero-sub { font-size: clamp(16px,2vw,20px); color: var(--t2); max-width: 640px; margin: 0 auto 48px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats {
  display: flex; align-items: center; justify-content: center;
  padding: 28px 40px; background: rgba(255,255,255,.03);
  border: 1px solid var(--border); border-radius: var(--r);
  backdrop-filter: blur(8px); max-width: 560px; margin: 0 auto;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.stat-num { font-family: 'Space Grotesk',sans-serif; font-size: 28px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.stat-label { font-size: 11px; color: var(--t3); text-transform: uppercase; letter-spacing: .07em; }
.stat-div { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

/* ── PAIN ──────────────────────────────────────────── */
.pain { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.pain-left h2 { margin-top: 18px; }
.pain-right { display: flex; flex-direction: column; gap: 14px; }
.pain-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 22px; background: rgba(255,255,255,.02);
  border: 1px solid var(--border); border-radius: var(--rsm); transition: border-color .2s;
}
.pain-item:hover { border-color: var(--border2); }
.pain-x { font-size: 15px; color: rgba(239,68,68,.7); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pain-item p { font-size: 14px; color: var(--t2); line-height: 1.6; font-style: italic; }

/* ── SERVICES ──────────────────────────────────────── */
.srv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.srv-card {
  position: relative; padding: 30px 26px;
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r);
  transition: border-color .3s, transform .3s; overflow: hidden;
}
.srv-card:hover { border-color: rgba(99,102,241,.3); transform: translateY(-4px); }
.srv-card-accent { border-color: rgba(99,102,241,.2); background: rgba(99,102,241,.04); }
.srv-ico {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.2);
  border-radius: 10px; margin-bottom: 18px;
}
.srv-ico svg { width: 20px; height: 20px; color: var(--indigo); }
.srv-card h3 { font-size: 17px; margin-bottom: 8px; }
.srv-card p  { font-size: 13px; color: var(--t2); line-height: 1.65; }
.new-badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--indigo); background: rgba(99,102,241,.14);
  border: 1px solid rgba(99,102,241,.3); padding: 3px 10px; border-radius: 100px;
}

/* ── HOW ───────────────────────────────────────────── */
.how { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 56px; }
.step { flex: 1; padding: 34px 26px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); }
.step-num {
  font-family: 'Space Grotesk',sans-serif; font-size: 52px; font-weight: 800;
  letter-spacing: -.04em; background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 14px; line-height: 1;
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p  { font-size: 14px; line-height: 1.7; }
.step-arr { flex-shrink: 0; margin-top: 50px; color: var(--t3); }
.step-arr svg { width: 22px; height: 22px; }
.how-cta { text-align: center; }

/* ── TESTIMONIALS ──────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.testi-card {
  padding: 30px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r); transition: border-color .3s, transform .3s;
}
.testi-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.testi-feat { border-color: rgba(99,102,241,.22); background: rgba(99,102,241,.04); }
.stars { color: #f59e0b; font-size: 14px; letter-spacing: 3px; margin-bottom: 18px; }
blockquote { font-size: 14px; color: rgba(255,255,255,.68); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-av {
  width: 40px; height: 40px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk',sans-serif; font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.t-author strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.t-author span   { font-size: 12px; color: var(--t3); }

/* ── PRICING ───────────────────────────────────────── */
.pricing { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.price-card {
  padding: 34px 30px; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); position: relative; transition: border-color .3s;
}
.price-card:hover { border-color: var(--border2); }
.price-feat {
  border-color: rgba(99,102,241,.35); background: rgba(99,102,241,.04);
  transform: scale(1.025);
  box-shadow: 0 0 0 1px rgba(99,102,241,.12), 0 24px 60px rgba(99,102,241,.1);
}
.price-feat:hover { border-color: rgba(99,102,241,.55); }
.price-pop {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  background: var(--grad); color: #fff; padding: 5px 18px; border-radius: 100px; white-space: nowrap;
}
.price-head h3 { font-size: 21px; margin-bottom: 7px; }
.price-head p  { font-size: 13px; color: var(--t2); line-height: 1.5; }
.price-num {
  margin: 22px 0 26px; padding-bottom: 26px; border-bottom: 1px solid var(--border);
}
.price-amount {
  display: block; font-family: 'Space Grotesk',sans-serif;
  font-size: 52px; font-weight: 800; letter-spacing: -.04em; line-height: 1; margin-bottom: 4px;
}
.price-period { font-size: 12px; color: var(--t3); text-transform: uppercase; letter-spacing: .07em; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.price-feats li { font-size: 13px; color: var(--t2); padding-left: 20px; position: relative; }
.price-feats li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: 12px; }
.price-note { text-align: center; margin-top: 36px; font-size: 15px; color: var(--t2); }
.price-note a { color: var(--indigo); text-decoration: underline; text-underline-offset: 3px; }

/* ── FAQ ───────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-btn {
  width: 100%; padding: 22px 26px; background: var(--bg2); border: none; color: var(--t1);
  font-family: 'Space Grotesk',sans-serif; font-size: 15px; font-weight: 600;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: background .2s;
}
.faq-btn::after {
  content: '+'; font-size: 22px; font-weight: 300; color: var(--t3); flex-shrink: 0; transition: all .3s;
}
.faq-item.open .faq-btn::after { transform: rotate(45deg); color: var(--indigo); }
.faq-btn:hover { background: rgba(255,255,255,.025); }
.faq-ans { display: none; padding: 0 26px 22px; background: var(--bg2); }
.faq-item.open .faq-ans { display: block; }
.faq-ans p { font-size: 14px; color: var(--t2); line-height: 1.75; }

/* ── CONTACT ───────────────────────────────────────── */
.contact-sec {
  position: relative; overflow: hidden; padding: var(--pad) 0;
  background: var(--bg2); border-top: 1px solid var(--border);
}
.contact-glow {
  position: absolute; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(99,102,241,.12) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  border-radius: 50%; pointer-events: none;
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start;
  position: relative; z-index: 1;
}
.contact-left .tag { margin-bottom: 20px; }
.contact-left h2 { font-size: clamp(30px,4vw,46px); margin-bottom: 14px; }
.contact-left > p { font-size: 16px; margin-bottom: 32px; max-width: 440px; }

.perks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.perk  { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--t2); }
.perk-check {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.25);
  font-size: 10px; font-weight: 700; color: var(--green);
}
.contact-email {
  font-family: 'Space Grotesk',sans-serif; font-size: 15px; font-weight: 600;
  color: var(--indigo); text-decoration: underline; text-underline-offset: 3px;
}
.contact-email:hover { color: var(--violet); }

/* form card */
.form-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--rlg); padding: 40px 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.fg label { display: block; font-size: 12px; font-weight: 600; color: var(--t2); letter-spacing: .03em; }
.fg input,
.fg select,
.fg textarea {
  display: block; width: 100%;
  background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: var(--rsm);
  color: var(--t1); font-family: 'Inter',sans-serif; font-size: 14px;
  padding: 12px 14px; outline: none; transition: border-color .2s; resize: none;
  -webkit-appearance: none; appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--t3); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: rgba(99,102,241,.5); background: rgba(99,102,241,.04);
}
.fg select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.fg select option { background: #1a1a1a; color: #fff; }
.form-submit-btn { margin-top: 4px; font-size: 15px; padding: 16px; }
.form-note { text-align: center; font-size: 12px; color: var(--t3); margin-top: 12px; }

.form-success {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; min-height: 300px; gap: 16px;
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--rlg); padding: 40px 36px;
}
.success-ico {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--green);
}
.form-success h3 { font-size: 22px; }
.form-success p  { font-size: 15px; color: var(--t2); max-width: 280px; }

/* ── FOOTER ────────────────────────────────────────── */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 80px 0 40px; }
.foot-inner { display: flex; gap: 80px; margin-bottom: 52px; }
.foot-brand { flex: 1.5; }
.foot-brand .nav-logo { margin-bottom: 16px; }
.foot-brand p { font-size: 13px; color: var(--t3); max-width: 280px; line-height: 1.7; }
.foot-links { display: flex; gap: 56px; }
.foot-col h4 {
  font-family: 'Space Grotesk',sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--t3); margin-bottom: 16px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14px; color: var(--t2); transition: color .2s; }
.foot-col a:hover { color: var(--t1); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.foot-bottom p { font-size: 13px; color: var(--t3); }
.foot-legal { display: flex; gap: 20px; }
.foot-legal a { font-size: 13px; color: var(--t3); transition: color .2s; }
.foot-legal a:hover { color: var(--t2); }

/* ── ANIMATIONS ────────────────────────────────────── */
.fi { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fi.in { opacity: 1; transform: translateY(0); }
.srv-card:nth-child(2) { transition-delay: .07s; }
.srv-card:nth-child(3) { transition-delay: .14s; }
.srv-card:nth-child(4) { transition-delay: .07s; }
.srv-card:nth-child(5) { transition-delay: .14s; }
.srv-card:nth-child(6) { transition-delay: .21s; }
.testi-card:nth-child(2) { transition-delay: .1s; }
.testi-card:nth-child(3) { transition-delay: .2s; }
.price-card:nth-child(2) { transition-delay: .1s; }
.price-card:nth-child(3) { transition-delay: .2s; }

/* ── 1100px ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .srv-grid    { grid-template-columns: repeat(2,1fr); }
  .testi-grid  { grid-template-columns: repeat(2,1fr); }
  .price-grid  { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-feat  { transform: none; order: -1; }
  .pain-grid   { grid-template-columns: 1fr; gap: 44px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps       { flex-direction: column; }
  .step-arr    { transform: rotate(90deg); margin: 0 auto; }
}

/* ── 768px ─────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --pad: 80px; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .lang-switch { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 20px 60px; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 28px 22px; }
  .stat-div { width: 44px; height: 1px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
  .srv-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-feat { order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .foot-inner  { flex-direction: column; gap: 40px; }
  .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── 480px ─────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-badge { font-size: 12px; padding: 7px 14px; }
  .faq-btn  { font-size: 14px; padding: 18px 20px; }
  .faq-ans  { padding: 0 20px 18px; }
  .price-card { padding: 26px 20px; }
  .step { padding: 26px 20px; }
  .foot-links { flex-direction: column; gap: 28px; }
}
