/* ===================================================================
   GenieAgent — styles
   =================================================================== */

:root {
  --bg: #0b0b17;
  --bg-2: #0f1024;
  --surface: #14152b;
  --surface-2: #1a1c38;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #eef0fb;
  --muted: #a7abce;
  --muted-2: #9498bd;
  --brand: #8b7bff;
  --brand-2: #22d3ee;
  --accent: #c084fc;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --grad: linear-gradient(120deg, #8b7bff 0%, #22d3ee 100%);
  --max: 1160px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-name {
  font-family: 'Sora', 'Inter', system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* Keyboard focus ring — visible for keyboard users, not on mouse click */
:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link — appears when focused via keyboard */
.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border-strong);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 24px;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 14px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--grad);
  color: #0a0a14;
  box-shadow: 0 10px 30px -10px rgba(139, 123, 255, 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(34, 211, 238, 0.6); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 23, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { display: inline-flex; }
.brand-name { font-weight: 700; font-size: 1.2rem; }
.brand-accent { color: var(--brand-2); }

.nav { display: flex; gap: 30px; }
.nav a {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover { color: var(--text); }
.header-cta { display: flex; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 4px;
  color: var(--muted);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.btn { margin-top: 10px; color: #0a0a14; border-bottom: 0; }

/* ===== Hero ===== */
.hero { position: relative; padding-top: 70px; overflow: hidden; }
.hero-glow {
  position: absolute;
  top: -240px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(circle at 40% 35%, rgba(139, 123, 255, 0.35), transparent 60%),
              radial-gradient(circle at 65% 55%, rgba(34, 211, 238, 0.28), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-block: 40px 30px;
}
.hero-title { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 800; }
.hero-sub {
  color: var(--muted);
  font-size: 1.12rem;
  margin: 22px 0 30px;
  max-width: 32rem;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.hero-badges li { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-2); box-shadow: 0 0 10px var(--brand-2); }

/* Hero visual — call card */
.hero-visual { display: flex; justify-content: center; }
.call-card {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.call-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.call-card-head strong { display: block; font-size: 0.95rem; }
.call-card-head small { color: var(--muted-2); font-size: 0.82rem; }
.pulse {
  width: 12px; height: 12px; border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.tag { font-size: 0.72rem; padding: 4px 10px; border-radius: 999px; font-weight: 600; margin-left: auto; }
.tag-live { background: rgba(52, 211, 153, 0.15); color: #34d399; }
.transcript { padding: 16px 0; display: flex; flex-direction: column; gap: 10px; }
.line {
  margin: 0;
  font-size: 0.88rem;
  padding: 10px 13px;
  border-radius: 12px;
  max-width: 90%;
}
.line span {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  margin-bottom: 3px;
}
.line.agent { background: rgba(139, 123, 255, 0.14); align-self: flex-start; border: 1px solid rgba(139, 123, 255, 0.2); }
.line.caller { background: rgba(255, 255, 255, 0.04); align-self: flex-end; border: 1px solid var(--border); }
.call-card-foot {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.metric { text-align: center; }
.metric strong { display: block; font-family: 'Sora'; font-size: 1.25rem; }
.metric small { color: var(--muted-2); font-size: 0.72rem; }

/* Logo strip */
.logo-strip {
  position: relative;
  z-index: 1;
  padding-block: 30px 60px;
  text-align: center;
}
.logo-strip-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  margin: 0 0 18px;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  color: var(--muted);
  font-weight: 600;
  font-family: 'Sora';
  font-size: 1rem;
  opacity: 0.75;
}

/* ===== Stats ===== */
.stats { border-block: 1px solid var(--border); background: var(--bg-2); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-block: 54px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Sora';
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.stat-num { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-icon { display: block; font-size: 2.2rem; line-height: 1; margin-bottom: 14px; }
.stat p { color: var(--muted); margin: 0; font-size: 0.98rem; max-width: 22rem; margin-inline: auto; }

/* ===== Sections ===== */
.section { padding-block: 92px; }
.section-alt { background: var(--bg-2); }
.section-head { text-align: center; max-width: 42rem; margin: 0 auto 54px; }
.section-head-left { text-align: left; margin-inline: 0; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 700; }
.section-lead { color: var(--muted); font-size: 1.08rem; margin-top: 16px; }

/* ===== Cards / services ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.card-featured {
  border-color: rgba(139, 123, 255, 0.4);
  background: linear-gradient(180deg, rgba(139, 123, 255, 0.08), var(--surface));
  box-shadow: 0 20px 60px -30px rgba(139, 123, 255, 0.6);
}
.card-flag {
  position: absolute;
  top: -12px; left: 28px;
  background: var(--grad);
  color: #0a0a14;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: 'Sora';
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(139, 123, 255, 0.12);
  color: var(--brand);
  margin-bottom: 20px;
}
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card > p { color: var(--muted); font-size: 0.98rem; margin: 0 0 18px; }
.card-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; }
.card-list li { position: relative; padding-left: 26px; color: var(--muted); font-size: 0.94rem; }
.card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.16);
  box-shadow: inset 0 0 0 1.5px var(--brand-2);
}
.card-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 10px;
  width: 5px; height: 8px;
  border: solid var(--brand-2);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.card-link { font-weight: 600; color: var(--brand-2); font-family: 'Sora'; font-size: 0.95rem; transition: gap 0.2s; }
.card-link:hover { opacity: 0.85; }

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
}
.step-num {
  font-family: 'Sora';
  font-weight: 800;
  font-size: 1.4rem;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.step h3 { font-size: 1.2rem; margin: 14px 0 8px; }
.step p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ===== Quotes ===== */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.quote blockquote { margin: 0 0 20px; font-size: 1.02rem; color: var(--text); }
.quote figcaption strong { display: block; font-family: 'Sora'; }
.quote figcaption span { color: var(--muted-2); font-size: 0.88rem; }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.plan-featured {
  border-color: rgba(139, 123, 255, 0.45);
  background: linear-gradient(180deg, rgba(139, 123, 255, 0.1), var(--surface));
  box-shadow: 0 24px 60px -28px rgba(139, 123, 255, 0.65);
  transform: translateY(-8px);
}
.plan-flag {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad);
  color: #0a0a14;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  font-family: 'Sora';
}
.plan h3 { font-size: 1.3rem; }
.plan-desc { color: var(--muted); font-size: 0.92rem; margin: 6px 0 18px; }
.plan-price { font-family: 'Sora'; font-weight: 500; color: var(--muted-2); font-size: 0.9rem; margin: 0 0 22px; }
.plan-price span { display: block; font-size: 2.4rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.plan-list { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan-list li { position: relative; padding-left: 26px; color: var(--muted); font-size: 0.94rem; }
.plan-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--brand-2);
  font-weight: 700;
}

/* ===== FAQ ===== */
.faq-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-family: 'Sora';
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--brand-2);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 18px; color: var(--muted); font-size: 0.96rem; }

/* ===== Contact ===== */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.contact-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.contact-copy > p { color: var(--muted); font-size: 1.05rem; margin: 18px 0 26px; }
.contact-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.contact-points li { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 500; }
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(34, 211, 238, 0.15); color: var(--brand-2);
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}

.lead-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; color: var(--muted); }
.optional { color: var(--muted-2); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(139, 123, 255, 0.2);
}
.field input.invalid, .field select.invalid { border-color: #f87171; box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.18); }
.field textarea { resize: vertical; }

/* Consent checkbox */
.field-consent { margin-bottom: 20px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  cursor: pointer;
  margin: 0;
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: var(--brand);
  cursor: pointer;
}
.consent-label input.invalid { outline: 2px solid #f87171; outline-offset: 2px; }
.consent-label a { color: var(--brand-2); text-decoration: underline; }
/* Honeypot spam trap — visually and functionally hidden from real users */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-note { text-align: center; color: var(--muted-2); font-size: 0.82rem; margin: 14px 0 0; }
.form-status { margin: 14px 0 0; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.94rem; text-align: center; }
.form-status.success { background: rgba(52, 211, 153, 0.14); color: #34d399; border: 1px solid rgba(52, 211, 153, 0.3); }
.form-status.error { background: rgba(248, 113, 113, 0.12); color: #f87171; border: 1px solid rgba(248, 113, 113, 0.3); }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand p { color: var(--muted); margin: 16px 0 0; max-width: 20rem; font-size: 0.95rem; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-nav h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-2); margin-bottom: 14px; }
.footer-nav a { display: block; color: var(--muted); font-size: 0.94rem; padding: 5px 0; transition: color 0.2s; }
.footer-nav a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 0.88rem;
}
.footer-legal a { color: var(--muted-2); }
.footer-legal a:hover { color: var(--text); }

/* ===== Legal / content pages ===== */
.legal-main { max-width: 780px; margin-inline: auto; padding: 64px 24px 80px; }
.legal-main h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 10px; }
.legal-updated { color: var(--muted-2); font-size: 0.9rem; margin: 0 0 8px; }
.legal-note {
  background: rgba(139, 123, 255, 0.1);
  border: 1px solid rgba(139, 123, 255, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 24px 0 36px;
}
.legal-main h2 { font-size: 1.3rem; margin: 36px 0 12px; }
.legal-main h3 { font-size: 1.05rem; margin: 24px 0 8px; }
.legal-main p, .legal-main li { color: var(--muted); font-size: 1rem; }
.legal-main ul { padding-left: 22px; display: flex; flex-direction: column; gap: 6px; }
.legal-main a { color: var(--brand-2); text-decoration: underline; }
.legal-back { display: inline-block; margin-bottom: 28px; color: var(--brand-2); font-weight: 600; }
.legal-placeholder { color: var(--accent); font-weight: 600; }

/* 404 */
.error-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}
.error-page .code {
  font-family: 'Sora';
  font-weight: 800;
  font-size: clamp(4rem, 14vw, 8rem);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.error-page h1 { font-size: 1.6rem; margin: 10px 0 12px; }
.error-page p { color: var(--muted); max-width: 28rem; margin: 0 0 26px; }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .cards, .quotes, .pricing-grid, .steps { grid-template-columns: 1fr 1fr; }
  .faq-container { grid-template-columns: 1fr; gap: 28px; }
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
}
@media (max-width: 620px) {
  .container { padding-inline: 18px; }
  .section { padding-block: 64px; }
  .stats-grid, .cards, .quotes, .pricing-grid, .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .lead-form { padding: 24px 20px; }
}
