/* ===========================
   EEA's Custom Trend E-Universe
   Digital Storefront
   =========================== */

:root {
  --bg: #0a0e1a;
  --fg: #e8e6e0;
  --accent: #c9a227;
  --accent-dim: rgba(201, 162, 39, 0.12);
  --accent-glow: rgba(201, 162, 39, 0.06);
  --accent-hover: #dbb633;
  --muted: #8a877e;
  --border: rgba(232, 230, 224, 0.07);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(232, 230, 224, 0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.navbar-logo-img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-link {
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.navbar-link:hover {
  color: var(--fg);
  background: rgba(255,255,255,0.05);
}
.navbar-link-cta {
  background: var(--accent);
  color: #0a0e1a !important;
  font-weight: 600;
}
.navbar-link-cta:hover {
  background: var(--accent-hover);
  color: #0a0e1a !important;
}
.navbar-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* Hero */
.hero {
  position: relative;
  padding: 140px 40px 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: orb-pulse 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #c9a227, transparent 70%);
  top: -200px;
  right: -100px;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #7c3aed, transparent 70%);
  bottom: -100px;
  left: 10%;
  animation-delay: -4s;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,230,224,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,230,224,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}
@keyframes orb-pulse {
  0%, 100% { transform: scale(1); opacity: 0.18; }
  50% { transform: scale(1.08); opacity: 0.26; }
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 20px;
  border-left: 1px solid var(--border);
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 30px;
  background: var(--border);
  display: none;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

/* Manifesto */
.manifesto {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-tag {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 8px;
}
.manifesto-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.manifesto-statement {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.manifesto-statement .highlight {
  color: var(--muted);
  font-weight: 400;
}
.manifesto-statement .accent {
  color: var(--accent);
}
.manifesto-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
  font-weight: 300;
}

/* Modules */
.modules {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
}
.modules-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.modules-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
}
.module-card {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s ease;
}
.module-card:hover {
  background: rgba(255,255,255,0.025);
}
.module-card-primary {
  background: var(--accent-dim);
}
.module-card-primary:hover {
  background: rgba(201, 162, 39, 0.18);
}
.module-card-wide {
  grid-column: 1 / -1;
}
.module-icon {
  margin-bottom: 4px;
}
.module-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.module-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* Engine */
.engine {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, rgba(201,162,39,0.03) 50%, var(--bg) 100%);
}
.engine-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.engine-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 20px 0 64px;
}
.engine-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.flow-step {
  flex: 1;
  padding: 32px 28px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.flow-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  flex-shrink: 0;
}
.flow-number {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  opacity: 0.7;
}
.flow-step h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.flow-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* Metrics */
.metrics {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}
.metrics-inner {
  max-width: 900px;
  margin: 0 auto;
}
.metrics-quote {
  position: relative;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 0.5;
  position: absolute;
  top: -20px;
  left: -20px;
}
blockquote {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.7;
  font-weight: 300;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}

/* Roadmap */
.roadmap {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
}
.roadmap-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.roadmap-phases {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.phase {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.phase-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: fit-content;
  border-radius: 2px;
}
.phase h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.phase ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phase li {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
  font-weight: 300;
}
.phase li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

/* Closing */
.closing {
  padding: 120px 40px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(201,162,39,0.05) 100%);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Footer */
.footer {
  padding: 40px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 300;
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-sep {
  opacity: 0.4;
}

/* Product Example */
.product-example {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 40px;
  max-width: 760px;
  margin: 0 auto;
}
.product-example-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
}
.product-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.product-trend-tag {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}
.product-score {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}
.product-title-row {
  margin-bottom: 32px;
}
.product-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 8px;
}
.product-tagline {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
}
.product-chapters {
  margin-bottom: 32px;
}
.chapter-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.chapter-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.chapter-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--fg);
}
.chapter-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.7;
  flex-shrink: 0;
  width: 20px;
}
.product-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
}
.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
}
.pricing-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.pricing-value {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
}

/* Trust Section */
.trust-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.trust-header {
  text-align: center;
}
.trust-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 16px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  overflow: hidden;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 28px;
  background: rgba(255,255,255,0.02);
  text-align: center;
  align-items: center;
}
.trust-icon {
  margin-bottom: 4px;
}
.trust-item h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.trust-item p {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}
.trust-note {
  padding: 20px 24px;
  background: var(--accent-glow);
  border: 1px solid rgba(201, 162, 39, 0.1);
  border-radius: 8px;
  text-align: center;
}
.trust-note p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--accent);
  color: #0a0e1a;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--muted);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover {
  color: var(--fg);
  border-color: rgba(232, 230, 224, 0.2);
}

/* Product Cards Grid */
.products {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
}
.products-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  text-align: center;
}
.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.product-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-4px);
}
.product-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
.product-card-category {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.product-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
}
.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.product-card-price .price {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}
.product-card-price .format {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 300;
}

/* About Section */
.about {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
}
.about-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.about-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto;
}
.about-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--fg);
  font-weight: 500;
}
.about-feat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* Email Capture */
.email-capture {
  padding: 120px 40px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(201,162,39,0.05) 100%);
}
.email-capture-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.email-capture-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.email-capture-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}
.email-form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 480px;
}
.email-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.email-form input[type="email"]:focus {
  border-color: var(--accent);
}
.email-form input[type="email"]::placeholder {
  color: var(--muted);
}
.email-form button {
  padding: 14px 28px;
  background: var(--accent);
  color: #0a0e1a;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.email-form button:hover {
  background: var(--accent-hover);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { flex-direction: row; padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 24px; }
  .stat-number { font-size: 2.2rem; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 24px; }
  .modules-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .email-form { flex-direction: column; }
  .about-features { flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  .hero { padding: 120px 24px 80px; }
  .products, .about, .metrics, .email-capture { padding: 72px 24px; }
  .navbar { padding: 0 24px; }
  .footer { padding: 32px 24px; }
  .navbar-tagline { display: none; }
  .hero-stats { gap: 16px; }
}