/* ============================================================
   1HourSites — "Data Candy" Design System
   Shared stylesheet for ALL pages. Dark, premium, numbers-first.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --bg: #0A0A0B;
  --surface: #101013;
  --surface-2: #141417;
  --surface-3: #18181C;
  --border: #26262C;
  --border-2: #33333B;
  --accent: #D97757;
  --accent-hover: #E08763;
  --accent-dim: rgba(217, 119, 87, 0.12);
  --accent-glow: rgba(217, 119, 87, 0.35);
  --on-accent: #0A0A0B;
  --text: #EDEDEE;
  --text-2: #A1A1AA;
  --text-3: #71717A;
  --green: #4ADE80;
  --gold: #FBBF24;

  --radius-card: 16px;
  --radius-btn: 14px;
  --radius-pill: 999px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-pad: clamp(72px, 10vw, 128px);
  --container: 1180px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lift: 0 12px 40px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 0 1px rgba(217, 119, 87, 0.4), 0 8px 40px rgba(217, 119, 87, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }

::selection { background: var(--accent); color: var(--on-accent); }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }

h1, .h1 { font-size: clamp(44px, 7vw, 84px); font-weight: 800; }
h2, .h2 { font-size: clamp(32px, 4.5vw, 48px); }
h3, .h3 { font-size: clamp(21px, 2.5vw, 26px); letter-spacing: -0.02em; }
h4, .h4 { font-size: 18px; letter-spacing: -0.01em; }

.lead { font-size: clamp(18px, 2vw, 21px); color: var(--text-2); line-height: 1.55; }
.text-2 { color: var(--text-2); }
.text-3 { color: var(--text-3); }
.accent { color: var(--accent); }
.num { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum'; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(217, 119, 87, 0.25);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}

/* ---------- 4. Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.section { padding: var(--section-pad) 0; position: relative; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { max-width: 760px; margin: 0 auto clamp(40px, 6vw, 72px); text-align: center; }
.section-head .lead { margin-top: 18px; }
.section-head-left { text-align: left; margin-left: 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 4px 20px rgba(217, 119, 87, 0.25);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(217, 119, 87, 0.4);
}

.btn-secondary {
  background: var(--surface-2);
  border-color: var(--border);
  color: var(--text);
}
.btn-secondary:hover {
  border-color: var(--border-2);
  background: var(--surface-3);
  transform: translateY(-2px);
}

.btn-ghost { color: var(--text-2); padding: 14px 18px; }
.btn-ghost:hover { color: var(--text); }

.btn-lg { font-size: 18px; padding: 18px 38px; border-radius: 16px; }
.btn-sm { font-size: 14px; padding: 10px 20px; border-radius: 11px; }
.btn-block { width: 100%; }

/* ---------- 6. Badges / Pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}
.pill-accent { color: var(--accent); background: var(--accent-dim); border-color: rgba(217, 119, 87, 0.25); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

/* ---------- 7. Announcement bar ---------- */
.announce-bar {
  background: linear-gradient(90deg, rgba(217,119,87,0.16), rgba(217,119,87,0.08) 50%, rgba(217,119,87,0.16));
  border-bottom: 1px solid rgba(217, 119, 87, 0.2);
  text-align: center;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.announce-bar a { color: var(--accent); font-weight: 600; margin-left: 6px; }
.announce-bar a:hover { color: var(--accent-hover); }

/* ---------- 8. Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.6);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 11, 0.82);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo { display: flex; align-items: center; gap: 2px; font-size: 22px; font-weight: 800; letter-spacing: -0.03em; }
.logo .logo-divider { color: var(--accent); font-weight: 400; margin: 0 1px; opacity: 0.9; }
.logo .logo-accent { color: var(--accent); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  padding: 10px 14px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover, .nav-item.open > .nav-link { color: var(--text); background: var(--surface-2); }
.nav-link .caret { font-size: 10px; transition: transform 0.25s var(--ease); opacity: 0.6; }
.nav-item.open > .nav-link .caret { transform: rotate(180deg); }

/* Dropdown panels */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 300px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 10px;
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.nav-item.open > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-wide { min-width: 640px; }
.dropdown-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 10px; }

.dropdown-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 12px 14px 6px;
}

.dropdown-item {
  display: block;
  padding: 11px 14px;
  border-radius: 11px;
  transition: background 0.18s ease;
}
.dropdown-item:hover { background: var(--surface-2); }
.dropdown-item .di-title { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 600; color: var(--text); }
.dropdown-item .di-desc { font-size: 13px; color: var(--text-3); margin-top: 2px; padding-left: 27px; }
.dropdown-item:hover .di-title { color: var(--accent); }

.dropdown-footer {
  margin-top: 8px;
  border-top: 1px solid var(--border);
  padding: 12px 14px 6px;
}
.dropdown-footer a { font-size: 14px; font-weight: 600; color: var(--accent); }
.dropdown-footer a:hover { color: var(--accent-hover); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s ease;
}
.nav-phone:hover { color: var(--accent); }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 9. Hero ---------- */
.hero {
  position: relative;
  padding: clamp(64px, 9vw, 120px) 0 clamp(56px, 7vw, 96px);
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(217, 119, 87, 0.09) 0%, rgba(217, 119, 87, 0.03) 40%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; }

.hero h1 { max-width: 980px; margin: 0 auto 28px; }
.hero h1 .accent { position: relative; white-space: nowrap; }

.hero-checks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 auto 36px;
  max-width: 640px;
}
.hero-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-2);
  text-align: left;
}
.check-icon {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 3px;
}

.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hero-subtext { font-size: 15px; color: var(--text-3); }
.hero-subtext strong { color: var(--text-2); font-weight: 600; }

/* Generic checklist (re-usable outside hero) */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-2); }

/* ---------- 10. Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: clamp(48px, 6vw, 72px);
  padding: clamp(28px, 4vw, 40px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.stat {
  text-align: center;
  padding: 4px 8px;
}
.stat + .stat { border-left: 1px solid var(--border); }
.stat-value {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.stat-label { font-size: 14px; color: var(--text-3); margin-top: 6px; font-weight: 500; }

/* ---------- 11. Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: border-color 0.25s ease, transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.card:hover {
  border-color: rgba(217, 119, 87, 0.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--accent-dim);
  border: 1px solid rgba(217, 119, 87, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 18px;
}

.feature-card { display: flex; flex-direction: column; }
.feature-card h3, .feature-card h4 { margin-bottom: 10px; }
.feature-card p { font-size: 15px; color: var(--text-2); line-height: 1.6; }
.feature-card .badge { align-self: flex-start; margin-bottom: 14px; }

/* Step cards (1-2-3) */
.step-card { position: relative; padding-top: 36px; }
.step-num {
  position: absolute;
  top: -26px;
  left: 28px;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(217, 119, 87, 0.35);
}
.step-card h3 { margin-bottom: 10px; font-size: 21px; }
.step-card p { font-size: 15px; color: var(--text-2); }
.steps-grid { margin-top: 48px; }

/* Testimonial card */
.testimonial-card { display: flex; flex-direction: column; gap: 16px; }
.testimonial-stars { color: var(--gold); font-size: 15px; letter-spacing: 3px; }
.testimonial-card blockquote { font-size: 15px; color: var(--text-2); line-height: 1.65; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), rgba(217, 119, 87, 0.3));
  border: 1px solid rgba(217, 119, 87, 0.3);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-name { font-size: 15px; font-weight: 600; color: var(--text); }
.testimonial-meta { font-size: 13px; color: var(--text-3); }

/* Quote/pain card (Did You Know section) */
.quote-card blockquote { font-size: 16px; color: var(--text-2); font-style: italic; line-height: 1.6; }
.quote-card .quote-mark { font-size: 40px; line-height: 1; color: var(--accent); font-family: Georgia, serif; margin-bottom: 8px; }
.quote-card .quote-name { margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--text-3); }

/* ---------- 12. Chip / tag grid ---------- */
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}
.chip:hover {
  color: var(--accent);
  border-color: rgba(217, 119, 87, 0.45);
  background: var(--accent-dim);
  transform: translateY(-2px);
}

/* ---------- 13. Marquee ---------- */
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  padding: 6px 0;
}
.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee + .marquee .marquee-track { animation-direction: reverse; animation-duration: 48s; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- 14. FAQ accordion ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item.open { border-color: rgba(217, 119, 87, 0.4); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.faq-q .faq-icon {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  transition: transform 0.3s var(--ease), background 0.2s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent-dim); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner { padding: 0 24px 22px; font-size: 15px; color: var(--text-2); line-height: 1.65; }

/* ---------- 15. CTA banner ---------- */
.cta-banner {
  position: relative;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 64px);
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% -10%, rgba(217, 119, 87, 0.14), transparent 60%);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner .lead { max-width: 560px; margin: 0 auto 32px; }
.cta-banner .hero-subtext { margin-top: 16px; }

/* ---------- 16. Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  text-align: center;
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(217, 119, 87, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(38px, 5.5vw, 64px); max-width: 880px; margin: 0 auto 20px; }
.page-hero .lead { max-width: 680px; margin: 0 auto; }
.page-hero .hero-cta { margin-top: 32px; }

/* ---------- 17. Pricing table styles ---------- */
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(217, 119, 87, 0.4);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 0 60px rgba(217, 119, 87, 0.08);
  text-align: center;
}
.price-amount {
  font-size: clamp(56px, 8vw, 84px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.price-amount .price-period { font-size: 22px; font-weight: 600; color: var(--text-3); letter-spacing: -0.01em; }
.price-note { font-size: 15px; color: var(--text-2); margin-top: 12px; }

.included-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; text-align: left; }
.included-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--text-2); padding: 6px 0; }

.compare-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table th { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }
.compare-table td { color: var(--text-2); }
.compare-table td:first-child { color: var(--text); font-weight: 500; }
.compare-table .num { color: var(--text-3); }
.compare-table .yes { color: var(--accent); font-weight: 700; }
.compare-table tr:hover td { background: var(--surface-2); }
.compare-table tfoot td { font-weight: 700; color: var(--text); border-bottom: none; background: var(--accent-dim); }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-card); background: var(--surface); }

/* ---------- 18. Mockup / visual cards ---------- */
.mockup-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-2); }
.mockup-dot:first-child { background: rgba(217, 119, 87, 0.7); }
.mockup-url {
  flex: 1;
  margin-left: 8px;
  font-size: 12px;
  color: var(--text-3);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 4px 12px;
  text-align: center;
}
.mockup-body { padding: 22px; }

/* skeleton shapes inside mockups */
.sk-line { height: 10px; border-radius: 5px; background: var(--surface-3); margin-bottom: 10px; }
.sk-line.w40 { width: 40%; } .sk-line.w60 { width: 60%; } .sk-line.w80 { width: 80%; }
.sk-line.accent { background: linear-gradient(90deg, var(--accent), var(--accent-hover)); opacity: 0.85; }
.sk-block { border-radius: 10px; background: var(--surface-3); }

/* Chat bubble mockups */
.chat-bubble {
  max-width: 85%;
  font-size: 13.5px;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 14px;
  margin-bottom: 10px;
}
.chat-in { background: var(--surface-3); color: var(--text-2); border-bottom-left-radius: 4px; }
.chat-out { background: var(--accent); color: var(--on-accent); border-bottom-right-radius: 4px; margin-left: auto; font-weight: 500; }
.chat-time { font-size: 11px; color: var(--text-3); margin: 2px 6px 12px; }
.chat-time.right { text-align: right; }

/* ---------- 19. Footer ---------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: clamp(56px, 7vw, 88px) 0 0;
  margin-top: var(--section-pad);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand p { font-size: 15px; color: var(--text-2); margin: 16px 0 20px; max-width: 320px; }
.footer-badges { display: flex; flex-direction: column; gap: 8px; }
.footer-badges .pill { align-self: flex-start; font-size: 13px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 15px; color: var(--text-2); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-col .footer-contact-line { font-size: 15px; color: var(--text-2); display: flex; gap: 9px; align-items: flex-start; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-3);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--text-3); }
.footer-legal a:hover { color: var(--text-2); }

/* ---------- 20. Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-1 { --reveal-delay: 0.08s; }
.reveal-2 { --reveal-delay: 0.16s; }
.reveal-3 { --reveal-delay: 0.24s; }
.reveal-4 { --reveal-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 21. Sticky mobile CTA bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(10, 10, 11, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-cta-bar .btn { flex: 1; font-size: 15px; padding: 13px 16px; }

/* ---------- 22. Responsive ---------- */
@media (max-width: 1080px) {
  .dropdown-wide { min-width: 560px; }
}

@media (max-width: 960px) {
  .nav-menu, .nav-actions .nav-phone, .nav-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-inner { height: 64px; }

  /* Mobile slide-down menu */
  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    padding: 92px 24px 40px;
    overflow-y: auto;
    z-index: 105;
    animation: navIn 0.3s var(--ease);
  }
  @keyframes navIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }

  .nav-menu.mobile-open > li { border-bottom: 1px solid var(--border); }
  .nav-menu.mobile-open .nav-link {
    width: 100%;
    justify-content: space-between;
    font-size: 19px;
    font-weight: 600;
    color: var(--text);
    padding: 18px 4px;
    border-radius: 0;
    background: none;
  }
  .nav-menu.mobile-open .dropdown {
    position: static;
    transform: none;
    min-width: 0;
    opacity: 1;
    visibility: hidden;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: none;
    padding: 0 0 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }
  .nav-menu.mobile-open .nav-item.open > .dropdown { visibility: visible; max-height: 1200px; }
  .nav-menu.mobile-open .dropdown-cols { grid-template-columns: 1fr; }
  .nav-menu.mobile-open .dropdown-item { padding: 10px 4px; }
  .nav-menu.mobile-open .mobile-nav-extras {
    border-bottom: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 28px;
  }
  .nav-menu.mobile-open .mobile-nav-extras .btn { width: 100%; }
  .mobile-nav-extras { display: none; }

  body.nav-locked { overflow: hidden; }

  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .stat + .stat { border-left: none; }
  .stat:nth-child(even) { border-left: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .included-list { grid-template-columns: 1fr; }
  .mobile-cta-bar { display: flex; }
  .site-footer { padding-bottom: 76px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .announce-bar { font-size: 12.5px; padding: 8px 12px; }
  .hero-cta .btn-lg { width: 100%; }
  .steps-grid { gap: 48px; }
  .container, .container-narrow { padding: 0 20px; }
  .card { padding: 24px; }
}
