/* ══════════════════════════════════════════════
   Dragon A/C LLC — Landing Page

   Palette inspired by Supabase / Linear / Vercel:
   Near-black neutrals · Single brand green accent
   Font: DM Sans (clean, widely-used, readable)
   ══════════════════════════════════════════════ */

:root {
  /* ── Neutrals (the whole page lives here) ── */
  --bg:          #0d0d0f;   /* near-black, slight warm undertone   */
  --bg-raised:   #111113;   /* one step up                         */
  --surface:     #18181b;   /* cards, panels                       */
  --surface-2:   #1f1f23;   /* slightly elevated cards             */
  --border:      rgba(255, 255, 255, 0.08);
  --border-2:    rgba(255, 255, 255, 0.12);

  /* ── Single brand accent — the logo green ── */
  --green:       #4ab83a;
  --green-2:     #5cd44b;   /* hover/lighter variant               */
  --green-dim:   rgba(74, 184, 58, 0.10);
  --green-ring:  rgba(74, 184, 58, 0.18);

  /* ── Text ── */
  --text:        #e4e4e7;   /* primary                             */
  --text-2:      #a1a1aa;   /* secondary / muted                   */
  --text-3:      #52525b;   /* very muted / disabled               */
  --white:       #fafafa;

  /* ── Shadows ── */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.4), 0 1px 2px rgba(0,0,0,.3);
  --shadow-md:   0 4px 16px rgba(0,0,0,.5);
  --shadow-lg:   0 16px 60px rgba(0,0,0,.65);

  /* ── Radii ── */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  --font:  'DM Sans', system-ui, -apple-system, sans-serif;
  --ease:  0.18s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }

body {
  font-family: var(--font);
  font-size:   1rem;
  line-height: 1.65;
  color:       var(--text);
  background:  var(--bg);
  overflow-x:  hidden;
}

/* Very subtle radial so it's not flat-black boring */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 20% -5%,
    rgba(74,184,58,.07) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

/* ── Container ── */
.container {
  width: min(1140px, 100% - 40px);
  margin-inline: auto;
}

/* ══════════════════════════════
   ANNOUNCE BAR
══════════════════════════════ */
.announce-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 9px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-size: 0.86rem;
  color: var(--text-2);
  text-align: center;
  font-weight: 500;
}
.announce-bar strong { color: var(--text); font-weight: 600; }
.announce-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1;   box-shadow: 0 0 0 0 rgba(74,184,58,.5);   }
  50%       { opacity: .7; box-shadow: 0 0 0 5px rgba(74,184,58,.0); }
}
.announce-cta {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--green-dim);
  border: 1px solid var(--green-ring);
  color: var(--green);
  font-weight: 600;
  font-size: 0.82rem;
  transition: background var(--ease);
}
.announce-cta:hover { background: rgba(74,184,58,.18); }

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 13px 0;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(13, 13, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
}
.header-logo { width: 40px; height: 40px; }
.header-brand-name {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.header-brand-lic {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.header-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--ease);
}
.header-nav a:hover { color: var(--text); }
.header-cta {
  flex: none;
  padding: 9px 18px;
  min-height: unset;
  font-size: 0.875rem;
}

/* ══════════════════════════════
   BUTTONS

   Two types only:
   - btn-primary: solid green (brand CTA)
   - btn-ghost: outlined (secondary)
══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease),
              background var(--ease), opacity var(--ease);
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(74,184,58,0);
}
.btn-primary:hover {
  background: var(--green-2);
  box-shadow: 0 4px 20px rgba(74,184,58,.3);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-2);
  color: var(--text-2);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.22); color: var(--text); }

.btn-lg   { padding: 14px 28px; font-size: 1rem; }
.btn-xl   { padding: 16px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; }

.icon-phone { width: 16px; height: 16px; flex: none; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero { padding: 72px 0 60px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 56px;
  align-items: start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  background: var(--surface);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 22px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
  animation: pulse 2.2s ease infinite;
}
.hero-badge span { color: var(--green); }

.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-headline em {
  font-style: normal;
  color: var(--green);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 50ch;
  margin-bottom: 28px;
  line-height: 1.75;
  font-weight: 400;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

/* Checklist */
.hero-checklist {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: 28px;
}
.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-checklist strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.hero-checklist span {
  font-size: 0.8rem;
  color: var(--text-2);
}
.hero-checklist div { line-height: 1.3; }
.check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid var(--green-ring);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

/* Price block */
.hero-price-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}
.hero-price {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-price sup { font-size: 1.6rem; vertical-align: super; line-height: 0; }
.hero-price-label { font-size: 0.88rem; color: var(--text-2); font-weight: 400; }
.hero-price-badge {
  display: inline-block;
  margin-top: 6px;
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid var(--green-ring);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--text-3);
  font-weight: 500;
}

/* ══════════════════════════════
   FORM CARD
══════════════════════════════ */
.form-card {
  position: sticky;
  top: 76px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}
.form-card-header {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.form-logo { width: 46px; height: 46px; flex: none; }
.form-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0;
}
.form-tagline { font-size: 0.76rem; color: var(--green); margin-top: 2px; }

.form-price-display {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.fprice-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
  flex: none;
}
.fprice-detail { font-size: 0.84rem; color: var(--text-2); line-height: 1.5; }
.fprice-detail small { font-size: 0.73rem; color: var(--green); }

/* Fields */
.lead-form   { display: grid; gap: 13px; }
.field-group { display: grid; gap: 5px; }
.field-group label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.field-optional { font-weight: 400; text-transform: none; letter-spacing: 0; }
.field-group input {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--bg-raised);
  color: var(--white);
  font-size: 0.97rem;
  font-family: var(--font);
  font-weight: 400;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field-group input::placeholder { color: var(--text-3); }
.field-group input:focus {
  border-color: rgba(74,184,58,.5);
  box-shadow: 0 0 0 3px rgba(74,184,58,.1);
}

button.btn { cursor: pointer; }
.form-fine-print {
  text-align: center;
  font-size: 0.74rem;
  color: var(--text-3);
  line-height: 1.6;
}
.form-fine-print a { color: var(--text-2); text-decoration: underline; }

/* ── Service selector (form) ── */
.service-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.svc-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-2);
  cursor: pointer;
  font-family: var(--font);
  transition: border-color var(--ease), background var(--ease), color var(--ease);
}
.svc-opt:hover { border-color: var(--border-2); color: var(--text); }
.svc-opt-active {
  border-color: var(--green-ring);
  background: var(--green-dim);
  color: var(--white);
}
.svc-opt-name { font-size: 0.82rem; font-weight: 600; }
.svc-opt-price { font-size: 1.1rem; font-weight: 800; color: var(--green); letter-spacing: -0.02em; }
.svc-opt-active .svc-opt-price { color: var(--green-2); }

.form-success { text-align: center; padding: 8px 0; outline: none; }
.success-check {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid var(--green-ring);
  color: var(--green);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.form-success h3 { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: -0.02em; }
.form-success p  { font-size: 0.88rem; color: var(--text-2); margin-bottom: 18px; line-height: 1.65; }

/* ══════════════════════════════
   TRUST BAR
══════════════════════════════ */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 14px 0;
}
.trust-bar-inner { display: flex; align-items: center; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 11px;
  flex: 1; padding: 9px 20px; min-width: 180px;
}
.trust-item strong { display: block; font-size: 0.86rem; font-weight: 600; color: var(--text); }
.trust-item span   { display: block; font-size: 0.73rem; color: var(--text-2); }
.trust-icon { font-size: 1.2rem; flex: none; }
.trust-sep  { width: 1px; height: 32px; background: var(--border); flex: none; }

/* ══════════════════════════════
   SECTIONS
══════════════════════════════ */
.section { padding: 88px 0; }
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.65rem, 3.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 12px;
}
.section-desc {
  font-size: 0.97rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 50ch;
  margin-inline: auto;
}

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.svc-card {
  position: relative;
  padding: 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.svc-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.svc-card-featured { border-color: var(--green-ring); }
.svc-badge {
  position: absolute;
  top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 11px;
  border-radius: 999px; white-space: nowrap;
}
.svc-icon-wrap { margin-bottom: 14px; }
.svc-icon { width: 52px; height: 52px; }
.svc-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; margin-bottom: 8px; }
.svc-card p  { font-size: 0.875rem; color: var(--text-2); line-height: 1.72; margin-bottom: 16px; }
.svc-benefits { list-style: none; display: grid; gap: 5px; }
.svc-benefits li {
  font-size: 0.78rem; color: var(--green); font-weight: 600;
  padding-left: 14px; position: relative;
}
.svc-benefits li::before { content: '✓'; position: absolute; left: 0; font-size: 0.68rem; }

.svc-group-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-3);
  margin-bottom: 16px;
}
.svc-group-label strong { color: var(--green); font-weight: 800; }

.services-grid-single { grid-template-columns: 1fr; }
.svc-card-wide { display: flex; align-items: flex-start; gap: 22px; }
.svc-card-wide .svc-icon-wrap { flex: none; margin-bottom: 0; }
.svc-card-wide-body { flex: 1; }
.svc-card-wide h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; margin-bottom: 8px; }
.svc-card-wide p  { font-size: 0.875rem; color: var(--text-2); line-height: 1.72; margin-bottom: 16px; }

.services-bottom-cta {
  text-align: center; padding: 24px 28px;
  border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--surface);
}
.services-bottom-cta p { font-size: 0.95rem; color: var(--text-2); margin-bottom: 16px; }
.services-bottom-cta strong { color: var(--text); }

/* ══════════════════════════════
   PROMOTIONS
══════════════════════════════ */
.promos-section { border-top: 1px solid var(--border); }
.promos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin-inline: auto;
}
.promo-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.promo-card-featured {
  border-color: var(--green-ring);
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
  box-shadow: 0 0 0 1px var(--green-ring), var(--shadow-md);
}
.promo-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--green-dim);
  border: 1px solid var(--green-ring);
  color: var(--green);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  width: fit-content;
}
.promo-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.promo-price {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}
.promo-price sup {
  font-size: 1.4rem;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
}
.promo-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  flex: 1;
}
.promo-card .btn { margin-top: auto; }

@media (max-width: 640px) {
  .promos-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════
   HOW IT WORKS
══════════════════════════════ */
.how-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-raised); }
.steps-row { display: flex; align-items: flex-start; gap: 14px; max-width: 820px; margin-inline: auto; }
.step { flex: 1; text-align: center; padding: 26px 16px; border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--surface); }
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green-dim); border: 1px solid var(--green-ring); color: var(--green);
  font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.step h3 { font-size: 0.97rem; font-weight: 700; color: var(--white); margin-bottom: 7px; letter-spacing: -0.01em; }
.step p  { font-size: 0.84rem; color: var(--text-2); line-height: 1.65; }
.step-arrow { font-size: 1.2rem; color: var(--text-3); margin-top: 50px; flex: none; }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-wrap { max-width: 700px; }
.faq-list { display: grid; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-md); background: var(--surface); overflow: hidden; transition: border-color var(--ease); }
.faq-item[open] { border-color: var(--border-2); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 16px 18px; font-weight: 600; font-size: 0.93rem;
  color: var(--text); cursor: pointer; list-style: none;
  transition: color var(--ease); user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--white); }
.faq-item summary::after { content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--text-2); flex: none; line-height: 1; transition: transform 0.22s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--green); }
.faq-body { padding: 0 18px 16px; border-top: 1px solid var(--border); }
.faq-body p { padding-top: 13px; font-size: 0.9rem; color: var(--text-2); line-height: 1.78; }
.faq-body a { color: var(--green); text-decoration: underline; }
.faq-body strong { color: var(--text); font-weight: 600; }

/* ══════════════════════════════
   FINAL CTA
══════════════════════════════ */
.final-cta-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-raised); }
.final-cta-inner { display: flex; align-items: center; gap: 48px; }
.final-logo { width: 110px; height: 110px; flex: none; filter: drop-shadow(0 8px 24px rgba(0,0,0,.6)); }
.final-cta-content { flex: 1; }
.urgency-pill {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border-2);
  color: var(--text-2); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.03em; margin-bottom: 14px;
}
.urgency-pill span { color: var(--green); }
.final-cta-content p { font-size: 0.97rem; color: var(--text-2); line-height: 1.72; max-width: 48ch; margin: 12px 0 22px; }
.final-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.final-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.76rem; color: var(--text-3); align-items: center; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer { padding: 22px 0; border-top: 1px solid var(--border); background: var(--bg-raised); }
.footer-inner { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo { width: 32px; height: 32px; }
.footer-brand strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); }
.footer-brand span   { display: block; font-size: 0.7rem;  color: var(--text-3); }
.footer-links { display: flex; gap: 18px; margin-left: auto; }
.footer-links a { font-size: 0.82rem; color: var(--text-2); transition: color var(--ease); }
.footer-links a:hover { color: var(--text); }
.footer-copy { width: 100%; font-size: 0.69rem; color: var(--text-3); text-align: center; padding-top: 8px; border-top: 1px solid var(--border); margin-top: 8px; }

/* ══════════════════════════════
   MOBILE STICKY CTA
══════════════════════════════ */
.mobile-sticky {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom, 12px));
  background: rgba(13,13,15,.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 200;
}

/* ══════════════════════════════
   RESPONSIVE — TABLET (≤1060px)
══════════════════════════════ */
@media (max-width: 1060px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-sub { max-width: 100%; }
  .form-card {
    position: static;
    max-width: 540px;
    margin-inline: auto;
  }
  .final-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .final-cta-content p { max-width: 100%; }
  .final-actions { justify-content: center; }
  .final-meta    { justify-content: center; }
  .final-logo    { width: 90px; height: 90px; }
}

/* ══════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════ */
@media (max-width: 768px) {
  /* Header */
  .header-nav  { display: none; }
  .header-cta  { display: none; }         /* phone number in header hidden — sticky bar covers it */
  .header-logo { width: 36px; height: 36px; }

  /* Announce bar — tighter */
  .announce-bar { gap: 6px; padding: 8px 14px; font-size: 0.82rem; }

  /* Hero */
  .hero { padding: 32px 0 24px; }
  .hero-badge { font-size: 0.7rem; padding: 5px 11px; margin-bottom: 14px; }
  .hero-headline { font-size: clamp(1.75rem, 7vw, 2.2rem); margin-bottom: 12px; }
  .hero-sub { font-size: 0.97rem; margin-bottom: 20px; }
  .hero-checklist { gap: 10px; margin-bottom: 20px; }
  .hero-checklist strong { font-size: 0.9rem; }
  .hero-price-block { padding: 14px 16px; margin-bottom: 20px; gap: 12px; }
  .hero-price { font-size: 3rem; }
  .hero-price sup { font-size: 1.4rem; }
  .hero-price-label { font-size: 0.83rem; }
  .hero-ctas { flex-direction: column; gap: 10px; margin-bottom: 16px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust-row { gap: 10px; font-size: 0.76rem; }

  /* Form card */
  .form-card { max-width: 100%; padding: 20px 16px; border-radius: var(--r-lg); }
  .form-card-header { gap: 11px; padding-bottom: 14px; margin-bottom: 14px; }
  .form-logo { width: 40px; height: 40px; }
  .form-title { font-size: 1.1rem; }
  .form-price-display { padding: 12px 14px; gap: 10px; margin-bottom: 16px; }
  .fprice-amount { font-size: 2.2rem; }
  .field-group input { padding: 13px 14px; font-size: 1rem; } /* larger tap target */
  .lead-form .btn { min-height: 52px; font-size: 1rem; }      /* easier to tap */

  /* Service call card — stack on mobile */
  .svc-card-wide { flex-direction: column; gap: 14px; }

  /* Trust bar — 2×2 grid */
  .trust-bar { padding: 0; }
  .trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .trust-sep  { display: none; }
  .trust-item {
    min-width: unset;
    padding: 14px 16px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  /* Remove right border from right column, bottom border from last row */
  .trust-item:nth-child(even)   { border-right: none; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }

  /* Sections */
  .section { padding: 52px 0; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .section-desc  { font-size: 0.93rem; }

  /* Services — single col but side-by-side icon+text */
  .services-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 20px; }
  .svc-card { padding: 20px; }
  .svc-icon-wrap { margin-bottom: 10px; }
  .svc-icon { width: 44px; height: 44px; }
  .svc-card h3 { font-size: 1.05rem; }
  .services-bottom-cta { padding: 20px; }
  .services-bottom-cta .btn { width: 100%; }

  /* How it works — vertical list */
  .steps-row  { flex-direction: column; gap: 10px; }
  .step       { padding: 20px 16px; }
  .step-arrow { transform: rotate(90deg); margin: 2px auto; font-size: 1rem; }

  /* FAQ */
  .faq-item summary { padding: 14px 16px; font-size: 0.9rem; }
  .faq-body { padding: 0 16px 14px; }

  /* Final CTA */
  .final-cta-section .section { padding: 44px 0; }
  .final-logo { width: 80px; height: 80px; }
  .final-actions { flex-direction: column; gap: 10px; }
  .final-actions .btn { width: 100%; }

  /* Mobile sticky */
  .mobile-sticky { display: block; }
  body { padding-bottom: 74px; }

  /* Footer */
  .footer { padding: 20px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-links { flex-direction: column; gap: 8px; margin-left: 0; }
  .footer-links a { font-size: 0.9rem; } /* easier to tap */
}

/* ══════════════════════════════
   RESPONSIVE — SMALL (≤400px)
══════════════════════════════ */
@media (max-width: 400px) {
  .hero-headline { font-size: 1.6rem; }
  .hero-price    { font-size: 2.6rem; }
  .hero-badge    { font-size: 0.66rem; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
  .form-card { padding: 16px 14px; }
  .announce-bar { font-size: 0.76rem; }
}

/* ── Focus ── */
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
