/* ========== Reset & base ========== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #06070d;
  color: #e6e8ef;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', 'Inter', sans-serif; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }

:root {
  --bg: #06070d;
  --bg-alt: #0a0d18;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hi: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-hi: rgba(255, 255, 255, 0.15);
  --text: #e6e8ef;
  --text-dim: #9299ad;
  --accent: #00e5ff;
  --accent-2: #a855f7;
  --accent-3: #ff4d9d;
  --grad: linear-gradient(135deg, #00e5ff 0%, #a855f7 50%, #ff4d9d 100%);
  --grad-soft: linear-gradient(135deg, rgba(0,229,255,0.15) 0%, rgba(168,85,247,0.15) 100%);
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.container.narrow { max-width: 820px; }

/* ========== Background orbs ========== */
.bg-orbs {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: #00e5ff; top: -200px; left: -200px; }
.orb-2 { width: 500px; height: 500px; background: #a855f7; top: 30%; right: -150px; animation-delay: -7s; }
.orb-3 { width: 400px; height: 400px; background: #ff4d9d; bottom: -100px; left: 30%; animation-delay: -14s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.9); }
}

/* ========== Nav ========== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  background: rgba(6, 7, 13, 0.7);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
.logo-mark { width: 32px; height: 32px; display: inline-flex; }
.logo-text { color: #fff; }
.logo-text span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 10px 16px; font-size: 14px; color: var(--text-dim); transition: color 0.2s; border-radius: 10px; }
.nav-links a:hover { color: #fff; }
.nav-toggle { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; transition: 0.3s; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 12px; font-weight: 600; font-size: 14px;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap; border: 1px solid transparent;
  text-decoration: none;
}
.btn-lg { padding: 16px 28px; font-size: 15px; border-radius: 14px; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, #0891b2 0%, #7c3aed 55%, #db2777 100%);
  color: #ffffff !important;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 6px 18px -6px rgba(124, 58, 237, 0.6);
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 55%, #ec4899 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 10px 24px -6px rgba(139, 92, 246, 0.75);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: var(--surface); color: #fff; border-color: var(--border-hi);
}
.btn-ghost:hover { background: var(--surface-hi); border-color: rgba(255,255,255,0.25); }

/* ========== Hero ========== */
.hero { padding: 60px 0 40px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 13px; color: var(--text-dim); font-weight: 500;
  margin-bottom: 24px;
}
.eyebrow-center { margin: 0 auto 20px; }
.eyebrow-cities {
  align-items: flex-start;
  max-width: 560px;
  line-height: 1.5;
  padding: 10px 18px;
}
.eyebrow-cities .pulse { margin-top: 7px; flex-shrink: 0; }
.eyebrow-cities > span:last-child { display: block; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,0.7); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  margin-bottom: 24px;
  color: #fff;
}
.gradient-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}
.lead { font-size: 18px; color: var(--text-dim); max-width: 560px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 28px; font-weight: 800; color: #fff; font-family: 'Space Grotesk', sans-serif; }
.hero-stats span { font-size: 13px; color: var(--text-dim); }

/* Hero visual - fob */
.hero-visual { position: relative; height: 480px; display: flex; align-items: center; justify-content: center; }
.fob-card {
  position: relative; z-index: 5;
  width: 260px; height: 380px; border-radius: 32px;
  background: linear-gradient(160deg, #12141e 0%, #0a0d18 100%);
  border: 1px solid var(--border-hi);
  box-shadow:
    0 40px 80px -20px rgba(0, 229, 255, 0.3),
    0 20px 60px -10px rgba(168, 85, 247, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-15px) rotate(-3deg); }
}
.fob-shine {
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  animation: shine 4s ease-in-out infinite;
}
@keyframes shine { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(50%, 50%); } }
.fob-chip { color: var(--accent); width: 140px; height: 140px; margin: 20px auto; }
.fob-chip svg { width: 100%; height: 100%; animation: spin 20s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.fob-label {
  font-family: 'Space Grotesk', monospace;
  font-size: 24px; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  text-align: center; letter-spacing: 0.1em;
}
.fob-dots { display: flex; gap: 6px; justify-content: center; }
.fob-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: 0.5; }
.fob-dots span:nth-child(2) { opacity: 0.8; }
.fob-dots span:nth-child(3) { opacity: 1; }

.ring {
  position: absolute; border-radius: 50%; border: 1px solid var(--border-hi);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-out infinite;
}
.ring-1 { width: 320px; height: 320px; animation-delay: 0s; }
.ring-2 { width: 420px; height: 420px; animation-delay: 1s; }
.ring-3 { width: 520px; height: 520px; animation-delay: 2s; }
@keyframes ringPulse {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  50% { opacity: 0.5; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
}

/* Marquee */
.marquee {
  margin-top: 80px; padding: 20px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex; gap: 40px; white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 18px;
  color: var(--text-dim);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ========== Sections ========== */
.section { padding: 100px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(10,13,24,0.6), transparent); }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  color: #fff;
  margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--text-dim); max-width: 620px; margin: 0 auto; }

/* ========== Cards (services) ========== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  position: relative;
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hi);
  background: var(--surface-hi);
}
.card.featured {
  border-color: rgba(0, 229, 255, 0.3);
  background: linear-gradient(180deg, rgba(0,229,255,0.05), rgba(168,85,247,0.05));
}
.badge {
  position: absolute; top: -12px; left: 32px;
  padding: 6px 14px;
  background: var(--grad); color: #06070d;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  border-radius: 999px;
}
.card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: #fff;
}
.card-icon svg { width: 28px; height: 28px; }
.card-icon-1 { background: linear-gradient(135deg, #00e5ff, #0ea5e9); }
.card-icon-2 { background: linear-gradient(135deg, #a855f7, #6366f1); }
.card-icon-3 { background: linear-gradient(135deg, #ff4d9d, #f97316); }
.card h3 { font-size: 22px; margin-bottom: 12px; color: #fff; }
.card p { color: var(--text-dim); margin-bottom: 20px; font-size: 15px; }
.features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.features li {
  font-size: 14px; color: var(--text); padding-left: 24px; position: relative;
}
.features li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 14px; height: 8px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ========== Steps ========== */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 24px; align-items: start; }
.step {
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  text-align: center;
}
.step-num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 44px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 12px;
}
.step h3 { font-size: 22px; color: #fff; margin-bottom: 10px; }
.step p { color: var(--text-dim); font-size: 15px; }
.step-connector {
  align-self: center; height: 2px; width: 40px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.4;
}

/* ========== Pricing ========== */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
.price-card {
  position: relative;
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  display: flex; flex-direction: column;
  transition: all 0.3s ease;
}
.price-card:hover { border-color: var(--border-hi); transform: translateY(-4px); }
.price-card-featured {
  background: linear-gradient(180deg, rgba(0,229,255,0.08), rgba(168,85,247,0.08));
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 20px 60px -20px rgba(0, 229, 255, 0.3);
  transform: scale(1.03);
}
.price-card-featured:hover { transform: scale(1.03) translateY(-4px); }
.price-name { font-size: 15px; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.price { display: flex; align-items: baseline; gap: 4px; color: #fff; margin-bottom: 8px; }
.price .currency { font-size: 24px; font-weight: 600; }
.price .amount { font-size: 64px; font-weight: 800; font-family: 'Space Grotesk', sans-serif; line-height: 1; }
.price .custom { font-size: 44px; font-weight: 800; font-family: 'Space Grotesk', sans-serif; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-desc { color: var(--text-dim); font-size: 14px; margin-bottom: 28px; }
.price-card .features { margin-bottom: 32px; flex-grow: 1; }
.price-note { text-align: center; color: var(--text-dim); font-size: 13px; margin-top: 32px; }

/* ========== Why grid ========== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-item {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.3s;
}
.why-item:hover { background: var(--surface-hi); border-color: var(--border-hi); transform: translateY(-3px); }
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-item h3 { font-size: 19px; color: #fff; margin-bottom: 8px; }
.why-item p { color: var(--text-dim); font-size: 15px; }

/* ========== FAQ ========== */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 4px 24px;
  transition: all 0.3s;
}
.faq details[open] { background: var(--surface-hi); border-color: var(--border-hi); }
.faq summary {
  padding: 20px 0;
  font-weight: 600; font-size: 16px; color: #fff;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.chev {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--surface-hi);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 400; color: var(--accent);
  transition: transform 0.3s;
}
.faq details[open] .chev { transform: rotate(45deg); }
.faq p { padding: 0 0 20px; color: var(--text-dim); font-size: 15px; }

/* ========== Contact ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: clamp(32px, 4vw, 44px); color: #fff; margin-bottom: 16px; }
.contact-info > p { color: var(--text-dim); margin-bottom: 36px; font-size: 16px; }
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex; gap: 16px; align-items: center;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
}
a.contact-item:hover { background: var(--surface-hi); border-color: var(--border-hi); transform: translateX(4px); }
.ci-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-item strong { display: block; color: #fff; font-size: 15px; }
.contact-item span { color: var(--text-dim); font-size: 13px; }

.contact-form {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}
.contact-form h3 { font-size: 24px; color: #fff; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 13px; font-weight: 500; color: var(--text-dim); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #fff;
  font-size: 16px; /* 16px+ prevents iOS zoom on focus */
  transition: all 0.2s;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2300e5ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
/* Native option list — browsers only honor bg/color on these */
.field select option {
  background: #0a0d18;
  color: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(0, 229, 255, 0.05);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.1);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { text-align: center; color: var(--text-dim); font-size: 12px; margin-top: 14px; }
.form-success {
  padding: 14px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  color: #4ade80;
  text-align: center;
  margin-top: 16px;
  font-weight: 500;
}
.form-error {
  padding: 14px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  color: #f87171;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
}
.form-error a { color: #fca5a5; text-decoration: underline; }
/* Honeypot — visually hidden, still submittable so bots fill it */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}
#submitBtn[disabled] { opacity: 0.7; cursor: wait; }

/* ========== Footer ========== */
.footer { padding: 80px 0 32px; border-top: 1px solid var(--border); background: rgba(10, 13, 24, 0.5); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--text-dim); font-size: 14px; margin-top: 16px; max-width: 280px; }
.footer-col h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em;
  color: #fff; margin-bottom: 18px;
}
.footer-col a, .footer-col span { display: block; color: var(--text-dim); font-size: 14px; padding: 6px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border);
  color: var(--text-dim); font-size: 13px;
}

/* ========== Animations on scroll ========== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .container { padding: 0 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { height: 360px; order: -1; }
  .cards, .pricing, .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .step-connector { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(6, 7, 13, 0.98); backdrop-filter: blur(20px);
    padding: 20px; gap: 4px; border-bottom: 1px solid var(--border);
  }
  .nav-links.open a { width: 100%; padding: 14px 16px; border-radius: 10px; }
  .nav-links.open .btn { margin-top: 8px; }
  .price-card-featured { transform: none; }
  .price-card-featured:hover { transform: translateY(-4px); }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }
  .hero-stats { gap: 24px; }
  .hero-stats strong { font-size: 24px; }
  .orb { filter: blur(80px); opacity: 0.3; }
}
@media (max-width: 720px) {
  .cards, .pricing, .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing { max-width: 420px; }
  .price-card-featured { order: -1; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: left; }
}
@media (max-width: 640px) {
  html { font-size: 15px; }
  .container { padding: 0 18px; }
  .nav { height: auto; }
  .nav-inner { height: 64px; }
  .logo-text { font-size: 18px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 26px 20px; border-radius: 20px; }
  .contact-form h3 { font-size: 20px; margin-bottom: 20px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; font-size: 12px; }
  .footer { padding: 60px 0 24px; }
  .hero { padding: 32px 0 8px; }
  .hero h1 { font-size: 38px; margin-bottom: 18px; }
  .lead { font-size: 16px; margin-bottom: 24px; }
  .hero-cta { gap: 10px; margin-bottom: 32px; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { gap: 18px 28px; }
  .hero-stats strong { font-size: 22px; }
  .hero-stats span { font-size: 12px; }
  .hero-visual { height: 320px; }
  .fob-card { width: 220px; height: 320px; padding: 24px; border-radius: 28px; }
  .fob-chip { width: 110px; height: 110px; margin: 12px auto; }
  .fob-label { font-size: 20px; }
  .ring-1 { width: 260px; height: 260px; }
  .ring-2 { width: 340px; height: 340px; }
  .ring-3 { width: 420px; height: 420px; }
  .marquee { margin-top: 56px; padding: 16px 0; }
  .marquee-track { font-size: 14px; gap: 24px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 30px; }
  .section-sub { font-size: 15px; }
  .card, .price-card, .why-item, .step { padding: 28px 22px; border-radius: 20px; }
  .price .amount { font-size: 52px; }
  .price .custom { font-size: 36px; }
  .card h3, .price-name + .price + .price-desc + .features + .btn { font-size: 20px; }
  .faq details { padding: 2px 20px; border-radius: 14px; }
  .faq summary { padding: 18px 0; font-size: 15px; }
  .contact-info h2 { font-size: 30px; }
  .contact-item { padding: 16px; }
  .ci-icon { width: 40px; height: 40px; font-size: 18px; }
  .contact-item strong { font-size: 14px; }
  .btn { padding: 12px 20px; }
  .btn-lg { padding: 15px 24px; font-size: 15px; }
  .eyebrow { font-size: 12px; padding: 6px 14px; margin-bottom: 20px; }
  .orb-1 { width: 400px; height: 400px; }
  .orb-2 { width: 360px; height: 360px; }
  .orb-3 { width: 300px; height: 300px; }
}
@media (max-width: 400px) {
  .hero h1 { font-size: 34px; }
  .hero-stats { gap: 16px 20px; }
  .nav-inner { height: 60px; }
  .nav-links.open { top: 60px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .orb, .fob-card, .fob-chip svg, .ring, .marquee-track { animation: none !important; }
}
