/* =============================================
   SUPERTHOUGHTS — MINDFUL EATING
   Premium warm-dark design system
   ============================================= */

:root {
  /* Deep dark palette — warm but not brown */
  --bg: #0a0c10;
  --bg-alt: #0e1014;
  --bg-card: #13151a;
  --bg-elevated: #1a1c22;
  --bg-glass: rgba(19, 21, 26, 0.7);

  /* Text */
  --text: #f0ebe4;
  --text-muted: #a09994;
  --text-faint: #5c5651;

  /* Accents */
  --amber: #d4a853;
  --amber-light: #e8c677;
  --amber-deep: rgba(212, 168, 83, 0.12);
  --sage: #7d9b8a;
  --sage-deep: rgba(125, 155, 138, 0.1);
  --rose: #b8929a;
  --rose-deep: rgba(184, 146, 154, 0.08);

  /* Typography */
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, sans-serif;
  --font-mono: 'DM Mono', 'IBM Plex Mono', monospace;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);

  /* Spacing */
  --section-pad: clamp(5rem, 12vw, 9rem);
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== FILM GRAIN OVERLAY ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.container--narrow { max-width: 800px; }
.container--tight { max-width: 640px; }
.container--wide { max-width: 1400px; }

/* ===== TYPOGRAPHY ===== */
.tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber);
}

.headline {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -0.025em;
}

.headline--hero { font-size: clamp(3.5rem, 8vw, 7rem); line-height: 0.95; }
.headline--xl { font-size: clamp(3rem, 7vw, 5.5rem); }
.headline--lg { font-size: clamp(2.25rem, 5vw, 3.75rem); }
.headline--md { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
.headline--sm { font-size: clamp(1.5rem, 2.5vw, 2rem); }

.headline em {
  font-style: italic;
  color: var(--amber);
}

.body-lg {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--text-muted);
  line-height: 1.8;
}

.body-xl {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 400;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  border-radius: 60px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--amber);
  color: var(--bg);
  border-color: var(--amber);
}

.btn--primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212, 168, 83, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text-faint);
}

.btn--outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn--ghost {
  background: rgba(212, 168, 83, 0.08);
  color: var(--amber);
  border-color: rgba(212, 168, 83, 0.2);
}

.btn--ghost:hover {
  background: rgba(212, 168, 83, 0.15);
  border-color: rgba(212, 168, 83, 0.35);
}

.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 1.15rem 3rem; font-size: 1rem; }

.btn-arrow {
  transition: transform 0.3s var(--ease);
  font-size: 1.1em;
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s var(--ease);
}

.nav.scrolled {
  background: rgba(11, 10, 8, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(240, 235, 228, 0.04);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 10;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--amber), var(--sage));
  opacity: 0.9;
}

.logo-text {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--amber) !important;
  color: var(--bg) !important;
  padding: 0.55rem 1.5rem !important;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all 0.3s var(--ease) !important;
}

.nav-cta:hover {
  background: var(--amber-light) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 10;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(8rem, 18vh, 12rem) 0 clamp(4rem, 10vh, 8rem);
}

.hero--short {
  min-height: auto;
  padding: clamp(9rem, 16vh, 12rem) 0 clamp(4rem, 8vh, 6rem);
}

/* Organic glow orbs */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.glow--amber {
  width: 500px;
  height: 500px;
  background: rgba(212, 168, 83, 0.07);
  animation: glowDrift 14s ease-in-out infinite;
}

.glow--sage {
  width: 400px;
  height: 400px;
  background: rgba(125, 155, 138, 0.05);
  animation: glowDrift 18s ease-in-out infinite reverse;
}

.glow--rose {
  width: 350px;
  height: 350px;
  background: rgba(184, 146, 154, 0.04);
  animation: glowDrift 12s ease-in-out infinite 3s;
}

@keyframes glowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.08); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 10px) scale(1.05); }
}

/* Dot grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(240, 235, 228, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

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

.hero-content .tag { margin-bottom: 1.75rem; }
.hero-content .headline { margin-bottom: 1.5rem; }

.hero-sub {
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ===== MARQUEE / TRUST STRIP ===== */
.marquee {
  padding: 1.25rem 0;
  background: var(--bg-alt);
  border-top: 1px solid rgba(240, 235, 228, 0.03);
  border-bottom: 1px solid rgba(240, 235, 228, 0.03);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-faint);
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.4;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== EDITORIAL SECTION ===== */
.editorial {
  padding: var(--section-pad) 0;
}

.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.editorial-lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.45;
  color: var(--text);
}

.editorial-body p {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* ===== STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-top: 1px solid rgba(240, 235, 228, 0.05);
  border-bottom: 1px solid rgba(240, 235, 228, 0.05);
}

.stat { text-align: center; }

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== FEATURE CARDS / PILLARS ===== */
.pillars {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.pillars-header { margin-bottom: clamp(3rem, 6vw, 5rem); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  background: var(--bg-card);
  border: 1px solid rgba(240, 235, 228, 0.04);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--sage));
  opacity: 0;
  transition: opacity 0.5s;
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.pillar:hover::before { opacity: 1; }

.pillar-number {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.85rem;
  font-weight: 400;
}

.pillar p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== SESSIONS LIST ===== */
.sessions { padding: var(--section-pad) 0; }

.sessions-header {
  max-width: 600px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.session-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(240, 235, 228, 0.03);
  border-radius: 20px;
  overflow: hidden;
}

.session-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  transition: background 0.3s;
}

.session-item:hover { background: var(--bg-elevated); }

.session-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-faint);
  width: 2rem;
}

.session-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.session-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.session-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-faint);
  text-align: right;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.testimonials-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid rgba(240, 235, 228, 0.04);
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.testimonial-stars {
  color: var(--amber);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
}

.testimonial blockquote {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: normal;
}

.testimonial blockquote strong { color: var(--text); }

.testimonial-author { font-size: 0.85rem; }

.testimonial-author strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.1rem;
}

.testimonial-author span {
  color: var(--text-faint);
  font-size: 0.78rem;
}

/* ===== PRICING ===== */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 83, 0.08);
  border-radius: 24px;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--sage), var(--rose));
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4rem);
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
}

.pricing-period {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  padding: 0.65rem 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(240, 235, 228, 0.03);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq { padding: var(--section-pad) 0; }

.faq-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid rgba(240, 235, 228, 0.05); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.12rem;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--amber); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--text-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--text-faint);
  transition: all 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--bg);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== FORM STYLES ===== */
.form-card {
  background: var(--bg-card);
  border: 1px solid rgba(240, 235, 228, 0.06);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid rgba(240, 235, 228, 0.08);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg-elevated);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.08);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
}

.cta-section .headline { margin-bottom: 1.25rem; }

.cta-section .body-lg {
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(240, 235, 228, 0.04);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-faint);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-faint);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--amber); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-faint);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* Text reveal */
.text-reveal {
  overflow: hidden;
}

.text-reveal-inner {
  transform: translateY(110%);
  transition: transform 0.9s var(--ease);
}

.text-reveal.visible .text-reveal-inner {
  transform: translateY(0);
}

/* Horizontal rule accent */
.hr-accent {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  border: none;
  margin: 2rem 0;
}

/* ===== PULL QUOTE ===== */
.pull-quote {
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
}

.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--text);
  line-height: 1.45;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.pull-quote blockquote em {
  font-style: italic;
  color: var(--amber);
}

.pull-quote cite {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--text-faint);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

/* ===== SOCIAL PROOF BAR ===== */
.proof-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
}

.proof-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--text);
  line-height: 1;
}

.proof-stat-label {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 0.25rem;
}

.proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(240, 235, 228, 0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 1.2rem; color: var(--text) !important; }

  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .editorial-split { grid-template-columns: 1fr; gap: 2rem; }
  .stats-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .proof-bar { justify-content: center; }
}
