/* ═══════════════════════════════════════════════
   EgoData Landing Page — Antimetal-matched Theme
   Warm dark palette · Serif italic headings · Lime CTA
   ═══════════════════════════════════════════════ */

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

:root {
  /* Antimetal warm-dark palette */
  --bg:           #0c0a09;
  --bg-alt:       #100e0c;
  --surface:      #161412;
  --surface-2:    #1c1917;
  --surface-3:    #211e1b;

  --border:       rgba(245, 230, 200, 0.07);
  --border-hover: rgba(245, 230, 200, 0.14);
  --border-strong:rgba(245, 230, 200, 0.20);

  --text:         #f0e6d3;
  --text-secondary: #b8ad99;
  --text-muted:   #7c6f5e;

  --accent:       #c8e64a;
  --accent-hover: #d4f050;
  --accent-text:  #0c0a09;
  --accent-glow:  rgba(200, 230, 74, 0.06);

  --radius:       12px;
  --radius-lg:    16px;
  --radius-xl:    20px;
  --radius-pill:  100px;

  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --transition:   0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
  box-shadow: 0 0 24px rgba(200,230,74,0.15);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 32px rgba(200,230,74,0.25);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--text-muted);
  background: var(--surface);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 8px 16px;
}
.btn-ghost:hover {
  color: var(--text);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}
.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}
.btn-full { width: 100%; }

/* ═══════════════ NAVBAR ═══════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12,10,9,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(12,10,9,0.92);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-logo svg {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
  font-weight: 400;
}
.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 12px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 8px 0;
}
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.7) 30%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(200,230,74,0.04) 0%, rgba(200,180,74,0.02) 30%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(200,230,74,0.06);
  border: 1px solid rgba(200,230,74,0.12);
  border-radius: var(--radius-pill);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-sub {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Trust bar */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}
.trust-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
}

/* ═══════════════ SOCIAL PROOF ═══════════════ */
.social-proof {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.social-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.proof-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.proof-tags span {
  padding: 8px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--text-secondary);
}

/* ═══════════════ SECTIONS ═══════════════ */
.section {
  padding: 100px 0;
}
.section-dark {
  background: var(--bg-alt);
}

.section-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--text);
}

.section-desc {
  max-width: 580px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.highlight-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 640px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.section-note {
  max-width: 600px;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 32px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ═══════════════ USP ═══════════════ */
.usp-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all var(--transition);
  overflow: hidden;
  min-width: 0;
}
.pillar-card:hover {
  border-color: var(--border-hover);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,230,74,0.06);
  border: 1px solid rgba(200,230,74,0.10);
  border-radius: 14px;
  color: var(--accent);
  margin-bottom: 24px;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
}

.pillar-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.chalk-underline {
  text-decoration: underline;
  text-decoration-color: rgba(200, 230, 74, 0.5);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-skip-ink: auto;
}

.pillar-image {
  width: calc(100% + 72px);
  max-width: none;
  height: auto;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin: 24px -36px -40px -36px;
  object-fit: cover;
  display: block;
}

/* ═══════════════ CARDS ═══════════════ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--border-hover);
}

.card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,230,74,0.06);
  border: 1px solid rgba(200,230,74,0.08);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 16px;
}
.card-icon.purple { background: rgba(200,230,74,0.06); color: var(--accent); }
.card-icon.blue   { background: rgba(200,230,74,0.06); color: var(--accent); }
.card-icon.green  { background: rgba(200,230,74,0.06); color: var(--accent); }

.card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card-large { padding: 28px; }
.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.card-header .card-icon { margin-bottom: 0; }

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* ═══════════════ DATASETS GRID ═══════════════ */
.datasets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

/* ═══════════════ VERTICALS ═══════════════ */
.verticals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.vertical-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all var(--transition);
}
.vertical-card:hover {
  border-color: var(--border-hover);
}
.vertical-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 20px;
}
.vertical-icon.homes {
  background: rgba(200,230,74,0.06);
  border: 1px solid rgba(200,230,74,0.08);
  color: var(--accent);
}
.vertical-icon.industry {
  background: rgba(200,230,74,0.06);
  border: 1px solid rgba(200,230,74,0.08);
  color: var(--accent);
}
.vertical-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.vertical-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.vertical-card > p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.vertical-card ul { margin-bottom: 16px; }
.vertical-card ul li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}
.vertical-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}
.vertical-note {
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* ═══════════════ STEPS ═══════════════ */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.step h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.step-connector {
  width: 1px;
  min-height: 80px;
  background: linear-gradient(to bottom, transparent, var(--border-hover), transparent);
  flex-shrink: 0;
  margin-top: 12px;
}

/* CTA bar */
.cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 64px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.cta-bar p {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
}
.cta-bar-actions {
  display: flex;
  gap: 10px;
}

/* ═══════════════ QUALITY GRID ═══════════════ */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

/* ═══════════════ SECURITY ═══════════════ */
.security-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  max-width: 640px;
}
.security-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.security-item:hover {
  border-color: var(--border-hover);
}
.security-icon { flex-shrink: 0; margin-top: 2px; }
.security-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════ USE CASES ═══════════════ */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.usecase {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.usecase:hover {
  border-color: var(--border-hover);
}
.usecase-icon {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
  opacity: 0.8;
}
.usecase p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════ PRICING ═══════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.pricing-card:hover {
  border-color: var(--border-hover);
}
.pricing-card.featured {
  border-color: rgba(200,230,74,0.2);
  background: linear-gradient(180deg, rgba(200,230,74,0.03) 0%, var(--surface) 100%);
}
.pricing-card.featured:hover {
  border-color: rgba(200,230,74,0.35);
}
.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--accent);
  color: var(--accent-text);
  border-radius: var(--radius-pill);
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 8px;
  color: var(--text);
}
.pricing-card > p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.pricing-desc {
  margin-top: 8px;
  margin-bottom: auto;
  padding-bottom: 24px;
  font-size: 13px !important;
  color: var(--text-muted) !important;
}
.pricing-card .btn { margin-top: 16px; }

/* ═══════════════ FAQ ═══════════════ */
.faq-list {
  max-width: 680px;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover {
  border-color: var(--border-hover);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-trigger:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-content p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════ FINAL CTA ═══════════════ */
.final-cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.final-cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(200,230,74,0.04) 0%, rgba(200,200,74,0.01) 40%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--text);
}
.final-cta p {
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}
.footer-contact {
  text-align: right;
  max-width: 320px;
}
.footer-address {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.footer-phones {
  font-size: 14px;
}
.footer-phones a {
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-phones a:hover { color: var(--text); }
.footer-sep {
  margin: 0 8px;
  color: var(--text-muted);
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Large watermark logo */
.footer-watermark {
  text-align: center;
  padding: 48px 0 0;
  overflow: hidden;
}
.footer-watermark span {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 180px);
  font-style: italic;
  font-weight: 400;
  color: var(--surface-2);
  letter-spacing: -0.03em;
  user-select: none;
  line-height: 1;
  display: block;
}

/* ═══════════════ SCROLL ANIMATIONS ═══════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .datasets-grid,
  .quality-grid,
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .usecases-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu.open { display: flex; }

  .hero { padding: 120px 0 60px; }

  .usp-pillars { grid-template-columns: 1fr; gap: 24px; }
  .datasets-grid,
  .quality-grid,
  .pricing-grid,
  .usecases-grid { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: 1fr; }

  .steps-grid {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .step { padding: 0; max-width: 320px; }
  .step-connector {
    width: 40px;
    min-height: 1px;
    height: 1px;
    margin-top: 0;
  }

  .cta-bar {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-contact { text-align: center; max-width: 100%; }

  .trust-bar { gap: 10px; }
  .trust-dot { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .section h2 { font-size: 28px; }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }
}
