/* ==========================================================================
   Weyoo — Landing
   ========================================================================== */

/* Design tokens */
:root {
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-900: #134e4a;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --cream:    #fffbf0;
  --cream-2:  #fff7e6;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;

  --shadow-xs: 0 1px 2px rgba(15, 30, 40, .04);
  --shadow-sm: 0 2px 6px rgba(15, 30, 40, .06);
  --shadow-md: 0 8px 24px rgba(15, 30, 40, .08), 0 2px 6px rgba(15, 30, 40, .04);
  --shadow-lg: 0 20px 48px rgba(15, 30, 40, .12), 0 6px 14px rgba(15, 30, 40, .05);
  --shadow-xl: 0 30px 70px rgba(13, 148, 136, .22), 0 8px 24px rgba(15, 30, 40, .08);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  --container: 1200px;
  --container-lg: 1400px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--teal-900);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.serif { font-family: 'Playfair Display', Georgia, serif; letter-spacing: -.01em; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Focus */
:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  border: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--teal-600);
  color: white;
  box-shadow: 0 10px 24px rgba(13, 148, 136, .28), inset 0 1px 0 rgba(255, 255, 255, .15);
}
.btn-primary:hover {
  background: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(13, 148, 136, .35), inset 0 1px 0 rgba(255, 255, 255, .15);
}
.btn-secondary {
  background: transparent;
  border: 2px solid var(--orange-500);
  color: var(--orange-500);
}
.btn-secondary:hover {
  background: var(--orange-500);
  color: white;
  transform: translateY(-2px);
}
.btn-cta {
  background: white;
  color: var(--teal-700);
  font-size: 1.15rem;
  padding: 19px 44px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
}
.btn-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .25);
}
.btn:active { transform: translateY(0) scale(.98); }

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .08s; }
.fade-up:nth-child(3) { transition-delay: .16s; }
.fade-up:nth-child(4) { transition-delay: .24s; }
.fade-up:nth-child(5) { transition-delay: .32s; }

/* Nav */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: #fffbf0;
  border-bottom: 1px solid rgba(15, 30, 40, .08);
  transition: box-shadow .3s var(--ease);
}
nav.scrolled {
  box-shadow: 0 4px 20px rgba(15, 30, 40, .06);
}

.logo {
  font-size: 1.85rem;
  font-weight: 700;
  color: #0d9488 !important;
  letter-spacing: -.02em;
  display: inline-block;
  text-decoration: none;
}

.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-weight: 600;
  font-size: 1rem;
  color: #134e4a !important;
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
  display: inline-block;
  text-decoration: none;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--teal-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--teal-700); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }

.lang-switch { display: flex; gap: 4px; padding: 4px; background: rgba(15, 30, 40, .04); border-radius: var(--radius-full); }
.lang-switch a {
  font-size: .9rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  opacity: .55;
  transition: all .25s var(--ease);
}
.lang-switch a.active {
  opacity: 1;
  background: white;
  box-shadow: var(--shadow-xs);
  color: var(--teal-700);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-900);
  margin: 6px 0;
  transition: all .3s var(--ease);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 251, 240, .98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-size: 1.4rem;
  font-weight: 600;
  transition: color .25s var(--ease);
}
.mobile-menu a:hover { color: var(--teal-600); }

/* Hero — collage layout */
.hero {
  position: relative;
  padding: 130px 24px 60px;
  text-align: center;
  max-width: var(--container-lg);
  margin: 0 auto;
  isolation: isolate;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  opacity: .55;
  pointer-events: none;
}
.hero::before {
  width: 520px;
  height: 520px;
  top: 40px;
  left: 50%;
  margin-left: -260px;
  background: radial-gradient(circle, var(--teal-200), transparent 70%);
  opacity: .45;
}
.hero::after {
  width: 440px;
  height: 440px;
  top: 200px;
  right: -120px;
  background: radial-gradient(circle, rgba(251, 146, 60, .35), transparent 70%);
  opacity: .4;
}
.hero-text { max-width: 760px; margin: 0 auto; }
.hero-text .eyebrow { margin-bottom: 22px; }
.hero-text p { margin-left: auto; margin-right: auto; }
.hero-buttons { justify-content: center; }
.hero-trust { justify-content: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(13, 148, 136, .08);
  color: var(--teal-700);
  border-radius: var(--radius-full);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 22px;
  border: 1px solid rgba(13, 148, 136, .14);
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  background: var(--teal-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, .15);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(20, 184, 166, .15); }
  50%      { box-shadow: 0 0 0 8px rgba(20, 184, 166, .05); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -.025em;
}
.hero p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 540px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  font-size: .9rem;
  color: var(--gray-600);
}
.hero-avatars { display: flex; }
.hero-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  background: linear-gradient(135deg, var(--teal-500), var(--orange-500));
  margin-left: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: .82rem;
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-avatars span:nth-child(2) { background: linear-gradient(135deg, #ff9a8b, #ff6a88); }
.hero-avatars span:nth-child(3) { background: linear-gradient(135deg, #a8edea, #fed6e3); color: var(--teal-700); }
.hero-avatars span:nth-child(4) { background: linear-gradient(135deg, #ffecd2, #fcb69f); color: var(--orange-600); }

/* Hero collage */
.hero-collage {
  position: relative;
  margin: 56px auto 0;
  height: 560px;
  width: 100%;
  max-width: 1100px;
}
.hero-collage img {
  position: absolute;
  object-fit: cover;
  border-radius: 20px;
  border: 6px solid white;
  box-shadow: var(--shadow-lg);
  animation: float-up 6s var(--ease) infinite;
  will-change: transform;
}
.hero-collage .ph-center {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 360px;
  z-index: 30;
  animation-delay: 0s;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
}
.hero-collage .ph-tl {
  top: 8%; left: 18%;
  width: 200px; height: 150px;
  z-index: 10;
  animation-delay: -1.2s;
  transform: rotate(-4deg);
}
.hero-collage .ph-tr {
  top: 4%; right: 18%;
  width: 200px; height: 200px;
  z-index: 10;
  animation-delay: -2.5s;
  transform: rotate(5deg);
}
.hero-collage .ph-br {
  bottom: 8%; right: 14%;
  width: 230px; height: 170px;
  z-index: 25;
  animation-delay: -3.5s;
  transform: rotate(4deg);
}
.hero-collage .ph-far-r {
  top: 38%; right: 2%;
  width: 180px; height: 220px;
  z-index: 10;
  animation-delay: -4.8s;
  transform: rotate(8deg);
}
.hero-collage .ph-bl {
  bottom: 6%; left: 16%;
  width: 220px; height: 160px;
  z-index: 25;
  animation-delay: -5.2s;
  transform: rotate(-6deg);
}
.hero-collage .ph-far-l {
  top: 30%; left: 2%;
  width: 180px; height: 220px;
  z-index: 10;
  animation-delay: -6s;
  transform: rotate(-7deg);
}
.hero-collage .sticker {
  position: absolute;
  top: 10%; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  background: white;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: .88rem;
  font-weight: 600;
  color: var(--teal-700);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.hero-collage .sticker::before { content: '🔗'; }

@keyframes float-up {
  0%, 100% { transform: var(--rot, none) translateY(0); }
  50%      { transform: var(--rot, none) translateY(-14px); }
}
.hero-collage .ph-center { --rot: translate(-50%, -50%); }
.hero-collage .ph-center { animation-name: float-center; }
@keyframes float-center {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-12px); }
}
.hero-collage .ph-tl     { --rot: rotate(-4deg); }
.hero-collage .ph-tr     { --rot: rotate(5deg);  }
.hero-collage .ph-br     { --rot: rotate(4deg);  }
.hero-collage .ph-far-r  { --rot: rotate(8deg);  }
.hero-collage .ph-bl     { --rot: rotate(-6deg); }
.hero-collage .ph-far-l  { --rot: rotate(-7deg); }

/* Features */
.features {
  padding: 110px 24px;
  background: var(--teal-100);
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, var(--cream), transparent);
  pointer-events: none;
}
.section-eyebrow {
  display: block;
  text-align: center;
  color: var(--orange-500);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .15em;
  margin-bottom: 14px;
}
.features h2 {
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 56px;
  line-height: 1.15;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 30, 40, .04);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 148, 136, .15);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.3; }
.feature-card p { color: var(--gray-600); font-size: .92rem; line-height: 1.6; }

/* Showcase */
.showcase { padding: 110px 24px; background: white; }
.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.showcase-label {
  color: var(--orange-500);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: .15em;
  margin-bottom: 14px;
}
.showcase h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); line-height: 1.2; margin-bottom: 20px; }
.showcase p { color: var(--gray-600); font-size: 1.05rem; line-height: 1.7; margin-bottom: 36px; }
.showcase-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.showcase-stat .number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal-600);
  font-family: 'Playfair Display', serif;
  letter-spacing: -.02em;
}
.showcase-stat .label { font-size: .85rem; color: var(--gray-500); margin-top: 4px; }
.showcase-images img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* How */
.how { padding: 110px 24px; background: var(--cream); }
.how h2 {
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 56px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 47px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--orange-400) 0 8px, transparent 8px 16px);
  opacity: .35;
}
.step { text-align: center; position: relative; }
.step-number {
  width: 94px;
  height: 94px;
  background: white;
  border: 3px solid var(--orange-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange-500);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-spring), box-shadow .3s var(--ease);
  font-family: 'Playfair Display', serif;
}
.step:hover .step-number {
  transform: scale(1.08);
  box-shadow: var(--shadow-md);
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.3; }
.step p { color: var(--gray-600); font-size: .88rem; padding: 0 8px; line-height: 1.5; }

/* Testimonials */
.testimonials { padding: 110px 24px; background: var(--teal-50); }
.testimonials h2 {
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 56px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: white;
  padding: 34px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid rgba(15, 30, 40, .04);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 22px;
  font-size: 4.2rem;
  color: var(--teal-600);
  opacity: .15;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.testimonial-stars {
  color: var(--orange-500);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-600), var(--orange-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .95rem; }
.testimonial-role { font-size: .8rem; color: var(--gray-500); }

/* CTA */
.cta { padding: 110px 24px; background: white; }
.cta-box {
  max-width: 940px;
  margin: 0 auto;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .12), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(249, 115, 22, .22), transparent 50%),
    linear-gradient(135deg, var(--teal-600), var(--teal-700));
  border-radius: 32px;
  padding: 70px 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
}
.cta-box h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  line-height: 1.15;
}
.cta-box > p {
  font-size: 1.15rem;
  opacity: .92;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.cta-box .btn { position: relative; z-index: 1; }
.cta-box small {
  display: block;
  margin-top: 20px;
  opacity: .8;
  position: relative;
  z-index: 1;
  font-size: .88rem;
}

/* Footer */
footer { background: var(--teal-900); color: white; padding: 70px 24px 50px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-top .logo { color: white; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  opacity: .75;
  transition: opacity .25s var(--ease), color .25s var(--ease);
  font-size: .95rem;
}
.footer-links a:hover { opacity: 1; color: var(--orange-400); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .88rem;
  opacity: .8;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* Tablet */
@media (max-width: 1024px) {
  .hero { padding-top: 120px; }
  .hero-collage { height: 440px; max-width: 760px; }
  .hero-collage .ph-center { width: 220px; height: 280px; }
  .hero-collage .ph-tl, .hero-collage .ph-tr { width: 150px; height: 130px; }
  .hero-collage .ph-br, .hero-collage .ph-bl { width: 170px; height: 130px; }
  .hero-collage .ph-far-r, .hero-collage .ph-far-l { width: 140px; height: 170px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps::before { display: none; }
  .showcase-inner { grid-template-columns: 1fr; gap: 50px; }
  .showcase-stats { justify-content: center; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .hamburger { display: block; }
  .nav-links { display: none; }
  .lang-switch { display: none; }
  .hero { padding: 100px 20px 40px; }
  /* On mobile, hide far photos and keep center + 4 surrounding */
  .hero-collage { height: 380px; }
  .hero-collage .ph-far-l, .hero-collage .ph-far-r { display: none; }
  .hero-collage .ph-center { width: 180px; height: 230px; }
  .hero-collage .ph-tl, .hero-collage .ph-tr { width: 110px; height: 95px; }
  .hero-collage .ph-bl, .hero-collage .ph-br { width: 130px; height: 100px; }
  .hero-collage .ph-tl { left: 4%; top: 4%; }
  .hero-collage .ph-tr { right: 4%; top: 2%; }
  .hero-collage .ph-bl { left: 2%; bottom: 4%; }
  .hero-collage .ph-br { right: 2%; bottom: 6%; }
  .features-grid, .steps, .testimonials-grid { grid-template-columns: 1fr; }
  .showcase-stats { flex-direction: column; gap: 24px; }
  .cta-box { padding: 48px 28px; border-radius: 24px; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom { text-align: left; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1; transform: none; }
  .hero-img-main, .hero-img-secondary { transform: none; }
  .eyebrow .dot { box-shadow: 0 0 0 4px rgba(20, 184, 166, .15); }
}
