/* ============================================================
   Buildwise Media — Forged Earth Design System
   Palette: Deep Warm Charcoal #1C1714, Terracotta #C4704B,
            Warm Cream #F5F0EB, Amber #D4A574
   Typography: Plus Jakarta Sans (headings), DM Sans (body)
   ============================================================ */

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

:root {
  --charcoal: #1C1714;
  --charcoal-surface: #2A2320;
  --charcoal-elevated: #352E29;
  --terracotta: #C4704B;
  --terracotta-soft: #D4845A;
  --terracotta-glow: rgba(196, 112, 75, 0.25);
  --cream: #F5F0EB;
  --cream-muted: rgba(245, 240, 235, 0.7);
  --warm-gray: #9A8C80;
  --amber: #D4A574;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--cream);
  background-color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--terracotta-soft);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent {
  color: var(--terracotta);
}

/* --- Film Grain Overlay --- */
.film-grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --- Keyframe Animations --- */
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.1); }
  50% { transform: translate(-20px, -60px) scale(0.95); }
  75% { transform: translate(40px, -20px) scale(1.05); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmerBorder {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 var(--terracotta-glow); }
  50% { box-shadow: 0 0 30px 10px var(--terracotta-glow); }
}

@keyframes statBounce {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.1); }
  80% { transform: scale(0.95); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes dashDraw {
  to { stroke-dashoffset: 0; }
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.nav--scrolled {
  background-color: rgba(28, 23, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(196, 112, 75, 0.1);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  text-decoration: none;
}

.nav__brand:hover {
  color: var(--cream);
}

.nav__diamond {
  flex-shrink: 0;
}

.nav__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--warm-gray);
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

.nav__link:hover {
  color: var(--cream);
}

.nav__cta {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--charcoal);
  background: var(--terracotta);
  padding: 10px 24px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav__cta:hover {
  background: var(--terracotta-soft);
  color: var(--charcoal);
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 23, 20, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  transition: color 0.3s ease;
}

.mobile-nav__link:hover {
  color: var(--terracotta);
}

.mobile-nav__cta {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--charcoal);
  background: var(--terracotta);
  padding: 16px 40px;
  border-radius: 10px;
  margin-top: 16px;
  transition: background 0.3s ease;
}

.mobile-nav__cta:hover {
  background: var(--terracotta-soft);
  color: var(--charcoal);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1C1714 0%, #2A1F18 30%, #352218 50%, #1C1714 100%);
  background-size: 300% 300%;
  animation: gradientShift 12s ease-in-out infinite;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  mix-blend-mode: luminosity;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28, 23, 20, 0.4) 0%, rgba(28, 23, 20, 0.85) 70%, var(--charcoal) 100%);
}

.hero__topo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Floating Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 20s ease-in-out infinite;
  z-index: 1;
}

.orb--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 112, 75, 0.15), transparent 70%);
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1), transparent 70%);
  bottom: 20%;
  left: -5%;
  animation-delay: -7s;
}

.orb--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(196, 112, 75, 0.12), transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -14s;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  animation: slideUp 1s var(--ease-out-expo) both;
}

.hero__headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--cream);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--cream-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-item__value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--terracotta);
  letter-spacing: -0.02em;
}

.trust-item__label {
  font-size: 0.8125rem;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 2px;
}

.trust-item__divider {
  width: 1px;
  height: 40px;
  background: rgba(154, 140, 128, 0.3);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out-back), box-shadow 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--charcoal);
}

.btn--primary:hover {
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--terracotta-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 235, 0.2);
}

.btn--ghost:hover {
  color: var(--cream);
  border-color: rgba(245, 240, 235, 0.4);
  background: rgba(245, 240, 235, 0.05);
  transform: translateY(-2px);
}

.btn--large {
  padding: 20px 48px;
  font-size: 1.125rem;
}

/* Ripple effect */
.btn__ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(28, 23, 20, 0.25);
  transform: scale(0);
  pointer-events: none;
}

.btn__ripple.animate {
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-header__eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.section-header__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--cream);
}

/* --- Glass Cards --- */
.glass-card {
  background: rgba(42, 35, 32, 0.6);
  border: 1px solid rgba(196, 112, 75, 0.12);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.4s ease, transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, rgba(196, 112, 75, 0.3) 50%, transparent 70%);
  background-size: 400% auto;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: shimmerBorder 3s linear infinite paused;
}

.glass-card:hover {
  border-color: rgba(196, 112, 75, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.glass-card:hover::before {
  opacity: 1;
  animation-play-state: running;
}

.glass-card__icon {
  margin-bottom: 20px;
}

.glass-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.glass-card__text {
  font-size: 0.9375rem;
  color: var(--cream-muted);
  line-height: 1.7;
}

.glass-card--wide {
  flex: 1;
}

/* --- Poor Four Section --- */
.poor-four {
  padding: 120px 0;
  position: relative;
}

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

/* --- Agitate Section --- */
.agitate {
  padding: 80px 0;
  position: relative;
}

.brush-divider {
  display: block;
  width: 100%;
  height: 20px;
}

.agitate__content {
  text-align: center;
  padding: 64px 24px;
}

.agitate__stat {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--terracotta);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.agitate__text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.agitate__sub {
  font-size: 1rem;
  color: var(--warm-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Revenue Engine Section --- */
.engine {
  padding: 120px 0;
  position: relative;
}

.engine__stages {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.engine__line {
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 40px;
  height: 100%;
  z-index: 0;
}

.engine__stage {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.engine__number {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(196, 112, 75, 0.1);
  border: 1px solid rgba(196, 112, 75, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--terracotta);
  letter-spacing: -0.02em;
}

.engine__note {
  max-width: 600px;
  margin: 48px auto 0;
  text-align: center;
}

.engine__note p {
  font-size: 0.9375rem;
  color: var(--warm-gray);
  font-style: italic;
  line-height: 1.7;
}

/* --- Stats Bar --- */
.stats {
  padding: 80px 0;
  background: rgba(42, 35, 32, 0.4);
  border-top: 1px solid rgba(196, 112, 75, 0.08);
  border-bottom: 1px solid rgba(196, 112, 75, 0.08);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat {
  text-align: center;
}

.stat__value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  letter-spacing: -0.03em;
  transition: color 0.4s ease;
}

.stat__value.counted {
  color: var(--terracotta);
  animation: pulseGlow 1.5s ease-in-out 1;
}

.stat__label {
  font-size: 0.8125rem;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
  display: block;
}

/* --- Testimonials --- */
.testimonials {
  padding: 120px 0;
}

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

.glass-card--testimonial {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial__stars {
  display: flex;
  gap: 2px;
}

.testimonial__quote {
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.75;
  flex: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(154, 140, 128, 0.15);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(196, 112, 75, 0.15);
  color: var(--terracotta);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--cream);
}

.testimonial__role {
  font-size: 0.8125rem;
  color: var(--warm-gray);
  margin-top: 2px;
}

/* --- Final CTA --- */
.final-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 112, 75, 0.08), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.final-cta__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.final-cta__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.final-cta__text {
  font-size: 1.0625rem;
  color: var(--cream-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.final-cta__scarcity {
  font-size: 0.875rem;
  color: var(--warm-gray);
  margin-top: 24px;
  font-style: italic;
}

/* --- Footer --- */
.footer {
  padding: 48px 0;
  border-top: 1px solid rgba(154, 140, 128, 0.1);
}

.footer__inner {
  text-align: center;
}

.footer__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--cream);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--warm-gray);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--warm-gray);
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--terracotta);
}

.footer__divider {
  color: rgba(154, 140, 128, 0.3);
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(154, 140, 128, 0.5);
}

/* --- Sticky Mobile CTA --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(28, 23, 20, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(196, 112, 75, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
  display: none;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--terracotta);
  padding: 14px 24px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.sticky-cta__btn:hover {
  background: var(--terracotta-soft);
  color: var(--charcoal);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0s);
}

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

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet: 768px */
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 16px 60px;
    min-height: auto;
  }

  .hero__headline {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero__trust {
    gap: 16px;
  }

  .trust-item__value {
    font-size: 1.25rem;
  }

  .trust-item__divider {
    height: 32px;
  }

  .poor-four {
    padding: 80px 0;
  }

  .poor-four__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .engine__stages {
    padding-left: 0;
  }

  .engine__line {
    display: none;
  }

  .engine__stage {
    flex-direction: column;
    gap: 12px;
  }

  .engine__number {
    width: 56px;
    height: 56px;
    font-size: 1rem;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sticky-cta {
    display: block;
  }

  .section-header {
    margin-bottom: 48px;
  }
}

/* Mobile: 375px */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 88px 16px 48px;
  }

  .hero__headline {
    font-size: 1.625rem;
  }

  .hero__sub {
    font-size: 0.9375rem;
    margin-bottom: 32px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 40px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.9375rem;
  }

  .btn--large {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .hero__trust {
    flex-direction: column;
    gap: 12px;
  }

  .trust-item__divider {
    width: 40px;
    height: 1px;
  }

  .poor-four {
    padding: 64px 0;
  }

  .glass-card {
    padding: 28px 24px;
  }

  .agitate__content {
    padding: 40px 16px;
  }

  .engine {
    padding: 80px 0;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat__value {
    font-size: 1.75rem;
  }

  .testimonials {
    padding: 80px 0;
  }

  .final-cta {
    padding: 80px 0;
  }

  .final-cta__title {
    font-size: 1.75rem;
  }

  /* Extra bottom padding for sticky CTA */
  .footer {
    padding-bottom: 80px;
  }
}

/* Desktop: 1200px+ */
@media (min-width: 1200px) {
  .hero__headline {
    font-size: 3.5rem;
  }

  .poor-four__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
