/* ===========================
   Starlike Panel — Modern Persian Marketing Site
   =========================== */

:root {
  --bg-0: #07070d;
  --bg-1: #0b0b18;
  --bg-2: #11122a;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --text: #e7e9f3;
  --text-soft: #b9bccd;
  --text-dim: #8a8ea3;
  --primary: #a855f7;
  --primary-2: #ec4899;
  --accent: #06b6d4;
  --success: #22c55e;
  --warn: #f59e0b;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-lg: 0 30px 60px -25px rgba(168, 85, 247, 0.35),
               0 12px 30px -10px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 16px 40px -20px rgba(0, 0, 0, 0.7);
  --grad-primary: linear-gradient(135deg, #a855f7 0%, #ec4899 60%, #f97316 120%);
  --grad-soft: linear-gradient(135deg, rgba(168,85,247,.18), rgba(236,72,153,.18));
  --maxw: 1180px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Vazirmatn', 'Tahoma', system-ui, -apple-system, sans-serif;
  font-feature-settings: "ss01", "ss02";
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* Anything that could overflow horizontally */
img, svg, video, canvas, iframe { max-width: 100%; height: auto; }

/* ===========================
   Decorative background
   =========================== */
.bg-blobs {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(168,85,247,0.22), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(236,72,153,0.18), transparent 60%),
    radial-gradient(800px 500px at 50% 110%, rgba(6,182,212,0.12), transparent 60%),
    linear-gradient(180deg, #060611 0%, #0a0a1d 50%, #060611 100%);
  overflow: hidden;
  pointer-events: none;
  contain: layout paint;
}
.blob {
  position: absolute; filter: blur(80px); opacity: .55;
  border-radius: 50%;
  animation: float 18s ease-in-out infinite;
}
.blob-1 { width: 460px; height: 460px; background: #a855f7; top: -120px; right: -120px; }
.blob-2 { width: 420px; height: 420px; background: #ec4899; top: 30%; left: -150px; animation-delay: -6s; }
.blob-3 { width: 380px; height: 380px; background: #06b6d4; bottom: -150px; right: 30%; animation-delay: -12s; }

@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-30px) scale(1.07); }
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.85) 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.85) 30%, transparent 75%);
  pointer-events: none;
}

/* ===========================
   Top announcement bar
   =========================== */
.topbar {
  background: linear-gradient(90deg, rgba(168,85,247,.18), rgba(236,72,153,.18));
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 22px;
  gap: 12px; flex-wrap: wrap;
  min-width: 0;
}
.topbar-text {
  color: var(--text-soft);
  display: flex; align-items: center; gap: 10px;
  min-width: 0; flex: 1 1 auto;
}
.topbar-text b { color: #fff; }
.topbar-link { color: #f5d0fe; font-weight: 600; }
.topbar-link:hover { color: #fff; }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ===========================
   Header
   =========================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,7,13,0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 22px;
  flex-wrap: wrap;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; }
.brand-logo {
  width: 36px; height: 36px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(168,85,247,.18), rgba(236,72,153,.18));
  border: 1px solid var(--border-2);
}
.brand-name-soft { color: var(--text-dim); font-weight: 500; }

.nav {
  display: flex; align-items: center; gap: 4px;
}
.nav a {
  padding: 10px 14px; border-radius: 10px; color: var(--text-soft); font-weight: 500;
  font-size: 14.5px;
}
.nav a:hover { color: #fff; background: var(--surface); }

.header-cta { display: flex; align-items: center; gap: 10px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; border-radius: 12px; font-weight: 700;
  font-size: 14.5px; line-height: 1; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 14px 22px; font-size: 15px; border-radius: 14px; }
.btn-block { width: 100%; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  color: #fff;
  background: var(--grad-primary);
  background-size: 200% 200%;
  box-shadow: 0 10px 30px -10px rgba(236,72,153,0.55);
}
.btn-primary:hover { background-position: 100% 0; }

.btn-outline {
  color: #fff; border-color: var(--border-2);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.22); }

.btn-ghost { color: var(--text-soft); }
.btn-ghost:hover { color: #fff; background: var(--surface); }

/* Mobile menu */
.menu-toggle {
  width: 40px; height: 40px; border-radius: 10px;
  display: none; align-items: center; justify-content: center;
  border: 1px solid var(--border-2);
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; background: #fff; margin: 3px 0; border-radius: 2px;
}
.mobile-menu {
  display: none; flex-direction: column; gap: 6px; padding: 12px 22px 22px;
  border-top: 1px solid var(--border);
  background: rgba(7,7,13,.92);
}
.mobile-menu a { padding: 12px 14px; border-radius: 10px; color: var(--text-soft); font-weight: 500; }
.mobile-menu a:hover { background: var(--surface); color: #fff; }
.mobile-cta { display: flex; gap: 10px; margin-top: 6px; }
.mobile-cta .btn { flex: 1; }

/* ===========================
   Hero
   =========================== */
.hero {
  padding: 70px 0 80px;
  position: relative;
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: center;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(168,85,247,0.10); color: #e9d5ff;
  border: 1px solid rgba(168,85,247,0.25);
  font-size: 13px; font-weight: 600;
}
.chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #a855f7; box-shadow: 0 0 12px #a855f7;
}
.hero-title {
  font-size: clamp(32px, 5.2vw, 56px);
  line-height: 1.15; font-weight: 900;
  margin: 18px 0 16px;
  letter-spacing: -0.01em;
}
.grad-text {
  background: linear-gradient(90deg, #a855f7, #ec4899 60%, #f59e0b);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-sub {
  font-size: 17px; color: var(--text-soft); max-width: 540px; margin: 0 0 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 38px;
  display: inline-flex; align-items: center; gap: 28px;
  padding: 16px 22px; border-radius: 16px;
  background: var(--surface); border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  max-width: 100%;
  flex-wrap: wrap;
}
.trust-num { font-size: 22px; font-weight: 800; color: #fff; line-height: 1.1; }
.trust-lbl { font-size: 12.5px; color: var(--text-dim); margin-top: 2px; }
.trust-sep { width: 1px; height: 30px; background: var(--border); }

/* Hero dashboard mock */
.hero-card {
  position: relative;
}
.card-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(closest-side, rgba(168,85,247,.35), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.dashboard {
  background: linear-gradient(180deg, rgba(20,20,40,.85), rgba(13,13,25,.92));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.dashboard::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(168,85,247,.06), transparent 40%);
  pointer-events: none;
}
.dash-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.dash-dots { display: inline-flex; gap: 6px; }
.dash-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #2a2a3d;
}
.dash-dots span:nth-child(1) { background: #ff6b6b; }
.dash-dots span:nth-child(2) { background: #ffd166; }
.dash-dots span:nth-child(3) { background: #4ade80; }
.dash-title { color: var(--text-dim); font-size: 13px; }

.dash-tabs { display: inline-flex; gap: 4px; padding: 4px; background: rgba(255,255,255,.04); border-radius: 12px; margin-bottom: 16px; }
.dash-tab {
  padding: 8px 14px; border-radius: 9px; font-size: 13px; font-weight: 600;
  color: var(--text-dim);
}
.dash-tab.active {
  background: linear-gradient(135deg, rgba(168,85,247,.25), rgba(236,72,153,.25));
  color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
}

.dash-form label {
  display: block; font-size: 12.5px; color: var(--text-dim); margin: 12px 0 6px;
}
.dash-input {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 14px; font-size: 14px;
  color: #fff;
}
.dash-input.dim { color: var(--text-dim); }
.dash-input-num { font-size: 18px; font-weight: 800; }
.dash-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dash-price {
  background: rgba(168,85,247,.10);
  border: 1px solid rgba(168,85,247,.25);
  border-radius: 12px; padding: 10px 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.dash-price-lbl { color: var(--text-dim); font-size: 12.5px; }
.dash-price-val { font-weight: 800; font-size: 16px; color: #fff; }
.dash-price-val i { color: var(--text-dim); font-size: 12px; font-style: normal; margin-right: 4px; }

.dash-submit {
  margin-top: 16px; width: 100%; padding: 13px 14px;
  background: var(--grad-primary); color: #fff; font-weight: 800; font-size: 14.5px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 12px 30px -10px rgba(236,72,153,.55);
}
.dash-submit svg { transform: rotate(180deg); }

.dash-status {
  margin-top: 14px; display: flex; align-items: center; gap: 8px;
  color: var(--text-dim); font-size: 12.5px;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  animation: pulse-green 1.6s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

/* ===========================
   Brand strip
   =========================== */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.strip-inner {
  display: flex; align-items: center; gap: 30px; padding: 22px;
  overflow: hidden;
  min-width: 0;
}
.strip-title { color: var(--text-dim); font-size: 13px; white-space: nowrap; flex-shrink: 0; }
.strip-logos {
  display: flex; align-items: center; gap: 36px;
  flex: 1 1 0; min-width: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.strip-logo {
  font-weight: 800; font-size: 17px; color: var(--text-dim);
  letter-spacing: 0.02em; white-space: nowrap;
  opacity: .85;
}

/* ===========================
   Sections
   =========================== */
.section { padding: 90px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.kicker {
  display: inline-block; font-size: 12px; letter-spacing: .12em;
  font-weight: 700; color: #f0abfc;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(168,85,247,.12); border: 1px solid rgba(168,85,247,.25);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(26px, 3.3vw, 38px); font-weight: 800; margin: 0 0 12px;
  line-height: 1.25; letter-spacing: -0.01em;
}
.section-head p { color: var(--text-soft); margin: 0; }

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

/* Service cards */
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--border-2); background: var(--surface-2); }
.service-card::before {
  content: ""; position: absolute; top: -1px; left: -1px; right: -1px; height: 2px;
  background: linear-gradient(90deg, var(--c1), var(--c2));
  opacity: 0; transition: opacity .25s;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  color: #fff; margin-bottom: 16px;
  box-shadow: 0 12px 24px -10px var(--c1);
}
.service-card h3 { font-size: 20px; margin: 0 0 8px; font-weight: 800; }
.service-card p { color: var(--text-soft); margin: 0 0 14px; font-size: 14.5px; line-height: 1.8; }
.card-link { color: #f0abfc; font-weight: 700; font-size: 14px; }
.card-link:hover { color: #fff; }

/* Stats */
.stats { padding: 50px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,.02); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.stat-num {
  font-size: clamp(28px, 3.8vw, 44px); font-weight: 900;
  background: linear-gradient(180deg, #fff, #e9d5ff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-lbl { color: var(--text-dim); font-size: 13.5px; margin-top: 4px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative;
  background: var(--surface); border: 1px solid var(--border);
  padding: 28px; border-radius: var(--radius-lg);
}
.step-num {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-primary); color: #fff; font-weight: 800; font-size: 18px;
  margin-bottom: 14px;
  box-shadow: 0 12px 24px -10px rgba(236,72,153,.6);
}
.step h3 { margin: 0 0 8px; font-size: 18px; }
.step p { color: var(--text-soft); margin: 0; }

/* Pricing */
.pricing-grid { gap: 26px; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: transform .25s ease, border-color .25s ease;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--border-2); }
.price-card.featured {
  background: linear-gradient(180deg, rgba(168,85,247,.12), rgba(236,72,153,.06));
  border-color: rgba(168,85,247,.45);
  box-shadow: 0 30px 60px -25px rgba(168,85,247,.5);
}
.badge-pop {
  position: absolute; top: -12px; right: 22px;
  background: var(--grad-primary); color: #fff;
  font-size: 12px; font-weight: 800; padding: 6px 12px;
  border-radius: 999px; box-shadow: 0 10px 22px -8px rgba(236,72,153,.6);
}
.price-head h3 { font-size: 20px; margin: 0 0 4px; }
.price-head p { color: var(--text-soft); margin: 0; font-size: 14px; }
.price { display: flex; align-items: baseline; gap: 8px; padding: 10px 0 0; }
.price-val { font-size: 30px; font-weight: 900; }
.price-unit { color: var(--text-dim); font-size: 13.5px; }
.price-list { display: flex; flex-direction: column; gap: 10px; }
.price-list li {
  color: var(--text-soft); font-size: 14.5px;
  display: flex; align-items: center; gap: 10px;
}
.price-list li::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(34,197,94,.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
  flex-shrink: 0;
}

/* Testimonials */
.quote-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px;
  margin: 0;
}
.stars { color: #fbbf24; font-size: 16px; margin-bottom: 10px; letter-spacing: 2px; }
.quote-card blockquote { margin: 0 0 18px; color: var(--text-soft); font-size: 14.5px; line-height: 1.95; }
.quote-card figcaption { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800;
}
.quote-card figcaption strong { display: block; font-size: 14px; }
.quote-card figcaption small { color: var(--text-dim); font-size: 12.5px; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 4px 18px;
  transition: background .2s ease, border-color .2s ease;
}
details[open] { background: var(--surface-2); border-color: var(--border-2); }
summary {
  list-style: none; cursor: pointer; padding: 16px 4px;
  font-weight: 700; font-size: 15.5px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: ""; width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a78bfa' stroke-width='2.5'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: center;
  transition: transform .2s;
}
details[open] summary::after { transform: rotate(180deg); }
details p { margin: 0 4px 16px; color: var(--text-soft); font-size: 14.5px; line-height: 1.95; }

/* CTA */
.cta {
  padding: 70px 0;
}
.cta-inner {
  background: linear-gradient(135deg, rgba(168,85,247,.18), rgba(236,72,153,.18));
  border: 1px solid var(--border-2);
  border-radius: 28px;
  padding: 50px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 250px at 90% 110%, rgba(236,72,153,.3), transparent 60%),
              radial-gradient(500px 220px at 10% -20%, rgba(168,85,247,.3), transparent 60%);
  pointer-events: none;
}
.cta-text h2 { font-size: clamp(24px, 3vw, 32px); margin: 0 0 8px; font-weight: 800; }
.cta-text p { margin: 0; color: var(--text-soft); }
.cta-actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; position: relative; }

/* Footer */
.site-footer {
  background: rgba(7,7,13,0.85);
  border-top: 1px solid var(--border);
  padding-top: 60px;
  margin-top: 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.3fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand p { color: var(--text-soft); margin: 16px 0 18px; font-size: 14px; }
.footer-col h4 { font-size: 15px; margin: 0 0 14px; font-weight: 800; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--text-soft); font-size: 14px; }
.footer-col ul a:hover { color: #fff; }
.footer-contact li { color: var(--text-soft); font-size: 13.5px; }
.footer-contact span { color: #fff; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  color: var(--text-soft);
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.socials a:hover { color: #fff; background: var(--surface-2); border-color: var(--border-2); transform: translateY(-2px); }

.badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge-box {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
}
.badge-img {
  background: rgba(255,255,255,.04); border: 1px dashed var(--border-2);
  border-radius: 14px; padding: 10px 14px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: background .2s, border-color .2s;
}
.badge-box:hover .badge-img { background: rgba(255,255,255,.07); border-color: rgba(168,85,247,.45); }
.badge-img span { font-size: 12px; color: var(--text-soft); font-weight: 700; }
.badge-cap { font-size: 11.5px; color: var(--text-dim); max-width: 130px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  color: var(--text-dim); font-size: 12.5px; flex-wrap: wrap; gap: 8px;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-trust { gap: 18px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; padding: 36px; }
  .cta-actions { justify-content: flex-start; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-cta .btn-ghost,
  .header-cta .btn-primary { display: none; }
}

@media (max-width: 720px) {
  :root {
    --maxw: 100%;
    --radius-lg: 18px;
  }
  .container { padding: 0 16px; }
  .grid-3 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: 24px; }
  .hero { padding: 36px 0 50px; }
  .hero-title { font-size: 32px; line-height: 1.2; }
  .hero-sub { font-size: 15.5px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust {
    display: flex; flex-wrap: wrap; gap: 14px 18px;
    padding: 14px 16px; width: 100%;
    margin-top: 26px;
    justify-content: space-between;
  }
  .trust-item { flex: 1 1 auto; min-width: 0; }
  .trust-num { font-size: 19px; }
  .trust-lbl { font-size: 12px; }
  .trust-sep { display: none; }

  /* Topbar — tighter on mobile */
  .topbar { font-size: 12.5px; }
  .topbar-inner { padding: 8px 16px; gap: 8px; }
  .topbar-link { font-size: 12.5px; }

  /* Header */
  .header-inner { padding: 10px 16px; gap: 10px; }
  .brand { font-size: 16px; gap: 8px; }
  .brand-logo { width: 32px; height: 32px; }

  /* Dashboard mock — smaller */
  .dashboard { padding: 16px; border-radius: 16px; }
  .dash-tabs { width: 100%; overflow-x: auto; }
  .dash-tab { padding: 7px 12px; font-size: 12.5px; }
  .dash-input { padding: 11px 12px; font-size: 13px; }
  .dash-input-num { font-size: 16px; }
  .dash-row { grid-template-columns: 1fr; gap: 8px; }
  .dash-price-val { font-size: 14px; }

  /* Service cards */
  .service-card { padding: 22px; }
  .service-card h3 { font-size: 18px; }
  .service-card p { font-size: 14px; }

  /* Pricing */
  .price-card { padding: 24px; }
  .price-val { font-size: 26px; }
  .badge-pop { right: 16px; }

  /* Stats */
  .stats { padding: 36px 0; }
  .stats-inner { gap: 16px; }
  .stat-num { font-size: 26px; }
  .stat-lbl { font-size: 12px; }

  /* CTA */
  .cta-inner { padding: 28px; border-radius: 20px; }
  .cta-actions .btn { flex: 1 1 100%; }

  /* Strip */
  .strip-inner { padding: 18px 16px; gap: 16px; flex-wrap: nowrap; }
  .strip-title { font-size: 12px; }
  .strip-logo { font-size: 15px; }
  .strip-logos { min-width: 0; gap: 22px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .badges { justify-content: flex-start; }

  /* Blobs — smaller so they never cause overflow on tiny screens */
  .blob-1 { width: 280px; height: 280px; top: -80px; right: -80px; }
  .blob-2 { width: 260px; height: 260px; left: -100px; }
  .blob-3 { width: 240px; height: 240px; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .topbar-inner { padding: 7px 14px; }
  .header-inner { padding: 10px 14px; }
  .hero-title { font-size: 28px; }
  .section-head h2 { font-size: 22px; }
  .section-head p { font-size: 14px; }
  .quote-card { padding: 22px; }
  .quote-card blockquote { font-size: 14px; }
  .topbar-link { display: none; }
  .chip { font-size: 12px; padding: 6px 11px; }
  .badge-pop { font-size: 11px; padding: 5px 10px; }
}

/* Smooth fade-in for sections */
.section, .stats, .hero, .strip, .cta, .site-footer {
  animation: rise .8s ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Accessible focus */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #c4b5fd;
  outline-offset: 3px;
  border-radius: 8px;
}
