:root {
  --bg: #F5F2EB;
  --bg-alt: #EDE9E0;
  --surface: #FFFFFF;
  --surface-2: #FFFFFF;
  --accent: #0F3D3E;
  --accent-mid: #1A5C5E;
  --accent-light: #2D7A7C;
  --accent-ghost: rgba(15, 61, 62, 0.08);
  --accent-border: rgba(15, 61, 62, 0.15);
  --text-1: #111111;
  --text-2: #555555;
  --text-3: #888888;
  --text-muted: #666666;
  --text-dim: #999999;
  --border: rgba(0, 0, 0, 0.08);
  --border-light: #EEEEEE;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.13);
  --silk: cubic-bezier(0.16, 1, 0.3, 1);
  --silk-dur: 0.8s;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  letter-spacing: -0.02em;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.022;
  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-size: 128px 128px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  background: var(--accent-ghost);
  border: 1px solid var(--accent-border);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.section-label::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.15; color: var(--text-1);
}
.section-title em {
  font-style: italic;
  color: var(--accent-light);
}
.section-sub {
  font-size: 1.0625rem; line-height: 1.75;
  color: var(--text-2); max-width: 520px; margin-top: 16px;
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--silk), transform 0.7s var(--silk); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: padding var(--silk-dur) var(--silk), background var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(245, 242, 235, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin: 0 auto; padding: 0 32px;
}
.nav-logo {
  font-size: 1.25rem; font-weight: 700; letter-spacing: -0.04em;
  color: var(--text-1);
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-2);
  position: relative; padding: 7px 16px; border-radius: 100px;
  background: transparent;
  box-shadow: inset 0 0 0 0px var(--accent-border);
  transition: color 0.4s var(--silk), background 0.4s var(--silk), box-shadow 0.4s var(--silk);
}
.nav-links a:hover {
  color: var(--accent);
  background: var(--accent-ghost);
  box-shadow: inset 0 0 0 1px var(--accent-border);
}
.nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.btn-ghost {
  font-size: 0.875rem; font-weight: 500; color: var(--text-2);
  padding: 9px 20px; border-radius: 100px;
  transition: color 0.3s, background 0.3s;
}
.btn-ghost:hover { color: var(--accent); background: var(--accent-ghost); }
.btn-primary {
  font-size: 0.875rem; font-weight: 600; color: #fff;
  background: var(--accent); padding: 10px 22px; border-radius: 100px;
  transition: background var(--silk-dur) var(--silk), transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
  box-shadow: 0 4px 16px rgba(15, 61, 62, 0.25);
}
.btn-primary:hover {
  background: var(--accent-mid);
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(15, 61, 62, 0.35);
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px; cursor: pointer;
}
.nav-hamburger span {
  display: block; height: 2px; background: var(--text-1);
  border-radius: 2px; transition: all 0.4s var(--silk);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-start;
  gap: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--silk);
  overflow-y: auto;
  padding: 100px 32px;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-size: 1.1rem; font-weight: 600; letter-spacing: -0.01em;
  color: var(--text-1); padding: 14px 0; width: 100%; text-align: center;
  border-bottom: 1px solid var(--border);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s var(--silk), transform 0.5s var(--silk), color 0.3s;
}
.mobile-menu a:first-child { border-top: 1px solid var(--border); }
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu .mobile-cta {
  margin-top: 28px;
  font-size: 0.9375rem; font-weight: 600;
  background: var(--accent); color: #fff;
  padding: 14px 40px; border-radius: 100px;
  border: none;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s var(--silk) 0.2s, transform 0.5s var(--silk) 0.2s, background 0.3s;
}
.mobile-menu.open .mobile-cta { opacity: 1; transform: none; }
.mobile-menu .mobile-cta:hover { background: var(--accent-mid); }

/* HERO */
.hero {
  padding-top: 160px;
  padding-bottom: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -10%; right: -5%;
  width: 55vw; height: 55vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(ellipse at center, rgba(45, 122, 124, 0.18) 0%, rgba(26, 92, 94, 0.06) 50%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -15%; left: -8%;
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  background: radial-gradient(ellipse at center, rgba(15, 61, 62, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 820px;
  margin: 0 auto 24px;
}
.hero h1 .accent-word {
  color: var(--text-1);
  background: var(--accent);
  padding: 0 10px;
  border-radius: 8px;
  display: inline-block;
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 72px;
}

.btn-acid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  user-select: none;
}
.btn-acid:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px var(--text-1);
}
.btn-acid:active {
  transform: translateY(0);
  box-shadow: 1px 1px 0px var(--text-1);
}

/* Dashboard */
.hero-dashboard {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
}
.hero-dashboard::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
.dashboard-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.02),
              0 20px 60px -10px rgba(0,0,0,0.08);
  overflow: hidden;
}
.dashboard-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.dashboard-dots { display: flex; gap: 7px; }
.dashboard-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--border);
}
.dashboard-toolbar-tabs { display: flex; gap: 2px; }
.dashboard-toolbar-tabs span {
  padding: 5px 14px;
  font-size: 12px; font-weight: 500;
  color: var(--text-dim);
  border-radius: 6px;
  cursor: default;
}
.dashboard-toolbar-tabs span.active {
  background: var(--surface-2);
  color: var(--text-1);
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.dashboard-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.dash-stat-card {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px;
}
.dash-stat-label {
  font-size: 12px; font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.dash-stat-value {
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.dash-stat-change {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 6px; font-size: 12px; font-weight: 600;
  color: #22C55E;
}
.dashboard-table-area {
  grid-column: 1 / -1;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
}
.dash-table-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}
.dash-table-header span { font-size: 14px; font-weight: 600; }
.dash-table-header .dash-filter {
  font-size: 12px; font-weight: 500; color: var(--text-dim);
  padding: 4px 12px; border: 1px solid var(--border);
  border-radius: 6px;
}
.dash-table { width: 100%; }
.dash-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 100px;
  padding: 12px 20px;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}
.dash-table-row.head {
  font-size: 11px; font-weight: 600; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.05em;
  background: rgba(0,0,0,0.015);
}
.dash-table-row:last-child { border-bottom: none; }
.dash-cell { font-variant-numeric: tabular-nums; }
.dash-cell-name { font-weight: 600; display: flex; align-items: center; gap: 10px; }
.dash-cell-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.dash-status {
  display: inline-flex; padding: 3px 10px;
  border-radius: 100px; font-size: 11px; font-weight: 600;
}
.dash-status.active { background: #DCFCE7; color: #166534; }
.dash-status.pending { background: #FEF3C7; color: #92400E; }
.dash-status.draft { background: var(--surface); color: var(--text-muted); }

/* SPEED METRICS */
.metrics { padding: 80px 0; }
.metrics-label {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-dim); text-align: center;
  margin-bottom: 56px;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.metric-item { text-align: center; padding: 48px 24px; }
.metric-number {
  font-size: clamp(56px, 8vw, 88px);
  font-weight: 900; letter-spacing: -0.05em;
  line-height: 1; font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
}
.metric-number .metric-unit {
  font-size: 0.45em; font-weight: 600;
  color: var(--text-muted); letter-spacing: -0.02em;
}
.metric-number .metric-highlight {
  color: var(--text-1);
  background: var(--accent);
  padding: 0 6px; border-radius: 6px;
}
.metric-desc {
  font-size: 15px; color: var(--text-muted);
  font-weight: 500; max-width: 240px; margin: 0 auto;
}

/* CAROUSEL */
.carousel-section {
  display: block;
  padding: 120px 0; background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.carousel-header { text-align: center; margin-bottom: 0; }
.carousel-header .section-sub { margin: 16px auto 0; text-align: center; }

.carousel-stage {
  position: relative;
  height: clamp(480px, 52vw, 780px);
  perspective: clamp(900px, 120vw, 1800px);
  perspective-origin: center center;
  display: flex; align-items: center; justify-content: center;
}
.carousel-track {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  display: flex; align-items: center; justify-content: center;
}

:root {
  --pw: clamp(180px, 14vw, 300px);
  --gap1: clamp(200px, 19vw, 380px);
  --gap2: clamp(360px, 34vw, 660px);
  --gap-hide: clamp(500px, 48vw, 900px);
}

.phone-card {
  position: absolute;
  transition: transform 0.6s var(--silk), opacity 0.6s var(--silk);
  cursor: pointer;
}
.phone-shell {
  background: #C8D4D2;
  border-radius: 32px;
  padding: 5px;
  box-shadow:
    0 0 0 1px rgba(150,175,170,0.5),
    0 24px 56px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.6);
  position: relative;
  transition: box-shadow 0.6s var(--silk);
}
.phone-screen {
  background: var(--bg);
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
}

.phone-card[data-pos="center"]       { z-index: 10; }
.phone-card[data-pos="left1"],
.phone-card[data-pos="right1"]       { z-index: 8; }
.phone-card[data-pos="left2"],
.phone-card[data-pos="right2"]       { z-index: 6; }
.phone-card[data-pos="hidden-left"],
.phone-card[data-pos="hidden-right"] { z-index: 4; }

.carousel-controls {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  width: 100%; margin-top: 48px;
}
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--accent-border);
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); cursor: pointer;
  transition: all 0.4s var(--silk);
}
.carousel-btn:hover {
  background: var(--accent); color: #fff;
  border-color: var(--accent);
  transform: scale(1.05);
}
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-border); cursor: pointer;
  transition: all 0.4s var(--silk);
}
.carousel-dot.active {
  background: var(--accent); width: 24px; border-radius: 4px;
}

.carousel-zoom {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 30px 0 0;
}
.zoom-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--accent-border);
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); cursor: pointer; font-size: 16px; line-height: 1;
  transition: all 0.35s var(--silk);
  user-select: none;
}
.zoom-btn:hover:not(:disabled) {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.zoom-btn:disabled { opacity: 0.28; cursor: not-allowed; }
.zoom-pips { display: flex; gap: 5px; align-items: center; }
.zoom-pip {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-border);
  transition: background 0.3s var(--silk), transform 0.3s var(--silk);
  cursor: pointer;
}
.zoom-pip.active { background: var(--accent); transform: scale(1.4); }

/* TESTIMONIALS */
.testimonials-section { padding: 100px 0; }
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-header .section-sub { margin: 16px auto 0; text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}
.testimonial-card {
  background: var(--surface-2); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
}
.testimonial-card:hover { transform: scale(1.015); box-shadow: var(--shadow-md); }
.testimonial-card.tall { grid-row: span 2; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars span { color: var(--accent-light); font-size: 14px; }
.testimonial-quote {
  font-size: 0.9375rem; line-height: 1.7; color: var(--text-2);
  margin-bottom: 24px; font-style: italic;
}
.testimonial-card.tall .testimonial-quote { font-size: 1.0625rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem; color: var(--accent);
  background: var(--accent-ghost);
}
.author-name { font-size: 0.875rem; font-weight: 600; color: var(--text-1); }
.author-role { font-size: 0.75rem; color: var(--text-3); margin-top: 1px; }

/* FOOTER */
.footer {
  background: var(--text-1); padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
.footer-brand .nav-logo { color: #fff; font-size: 1.3rem; margin-bottom: 16px; display: block; }
.footer-brand-desc { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.45); max-width: 240px; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.4s var(--silk);
}
.social-btn:hover { border-color: var(--accent-light); color: var(--accent-light); }
.footer-col-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8125rem; color: rgba(255,255,255,0.3); transition: color 0.3s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .dashboard-body { grid-template-columns: 1fr; gap: 12px; }
  .dash-table-row { grid-template-columns: 2fr 1fr 1fr; }
  .dash-table-row .dash-cell:nth-child(4),
  .dash-table-row .dash-cell:nth-child(5) { display: none; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metric-item { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding-top: 120px; }
  .hero-actions { flex-direction: column; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.tall { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .carousel-stage { height: 400px; }
  :root {
    --pw: 150px;
    --gap1: 168px;
    --gap2: 300px;
    --gap-hide: 430px;
  }
  .phone-card[data-pos="left2"],
  .phone-card[data-pos="right2"] { opacity: 0.35; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
