/* ─── Zestome Marketing Site ─── */

:root {
  --primary: #FC8019;
  --primary-dark: #E46D0A;
  --primary-light: #FFE9D5;
  --secondary: #2EC4B6;
  --secondary-dark: #1FA89C;
  --accent: #FFC400;
  --rating: #48C479;
  --dark: #02060C;
  --text: #3D4152;
  --text-sub: #686B78;
  --text-muted: #93959F;
  --white: #FFFFFF;
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --border: rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 8px rgba(2, 6, 12, 0.04);
  --shadow-md: 0 8px 30px rgba(2, 6, 12, 0.08);
  --shadow-lg: 0 20px 60px rgba(2, 6, 12, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --font: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --header-h: 92px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  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='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)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ─── Buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(252, 128, 25, 0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(252, 128, 25, 0.4);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(46, 196, 182, 0.3);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ─── Header ─── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--dark);
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 72px;
  width: auto;
  object-fit: contain;
}

.footer .logo-img {
  height: 64px;
}

.nav-links a.nav-active {
  color: var(--primary);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a:not(.btn) {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-sub);
  transition: color var(--transition);
}
.nav-links a:not(.btn):hover { color: var(--primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── Hero ─── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-light);
  top: -200px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(46, 196, 182, 0.15);
  bottom: -100px;
  left: -100px;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 196, 0, 0.12);
  top: 40%;
  left: 30%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 4rem 6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-sub);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--rating);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-sub);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.stat span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ─── Phone Mockup ─── */

.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 280px;
  background: var(--dark);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.1) inset;
  position: relative;
  z-index: 2;
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: var(--dark);
  border-radius: 0 0 16px 16px;
  margin: 0 auto -12px;
  position: relative;
  z-index: 3;
}

.phone-screen {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  padding: 2rem 1rem 0;
  min-height: 520px;
}

.mock-header {
  margin-bottom: 0.75rem;
}
.mock-location {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
}

.mock-search {
  background: var(--bg);
  border-radius: 10px;
  padding: 0.625rem 0.875rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.mock-chips {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.chip {
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.3rem 0.625rem;
  border-radius: 100px;
  background: var(--bg);
  color: var(--text-sub);
  white-space: nowrap;
}
.chip.active { background: var(--primary); color: var(--white); }
.chip.veg { background: rgba(15, 138, 101, 0.1); color: var(--rating); }

.mock-chef-card {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg);
  border-radius: 12px;
  margin-bottom: 0.625rem;
}

.mock-chef-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FFE9D5, #FC8019);
  flex-shrink: 0;
}
.mock-chef-img-2 {
  background: linear-gradient(135deg, #D4F5F2, #2EC4B6);
}

.mock-chef-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.mock-chef-info strong { font-size: 0.75rem; color: var(--dark); }
.mock-rating { font-size: 0.625rem; color: var(--rating); font-weight: 600; }
.mock-dish { font-size: 0.625rem; color: var(--text-muted); }

.mock-bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 0.75rem 0;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--text-muted);
}
.mock-bottom-nav .active { color: var(--primary); }

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.floating-card-1 {
  top: 60px;
  left: -40px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 80px;
  right: -30px;
  animation-delay: 2s;
}

.fc-icon { font-size: 1.5rem; }
.floating-card strong { display: block; font-size: 0.8125rem; color: var(--dark); }
.floating-card span { font-size: 0.6875rem; color: var(--text-muted); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── Sections ─── */

.section {
  padding-block: 6rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-label-teal { color: var(--secondary); }

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ─── Feature Cards ─── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-sub);
  line-height: 1.65;
}

/* ─── Audience Sections ─── */

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.audience-grid-reverse { direction: rtl; }
.audience-grid-reverse > * { direction: ltr; }

.audience-content h2 {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.audience-content > p {
  font-size: 1.0625rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.check-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.check-icon-teal {
  background: rgba(46, 196, 182, 0.12);
  color: var(--secondary);
}

.check-list strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.125rem;
}

.check-list span {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.5;
}

/* Service tiles */

.service-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.service-tile:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.st-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.service-tile strong { display: block; font-size: 0.9375rem; color: var(--dark); }
.service-tile span { font-size: 0.8125rem; color: var(--text-muted); }

.category-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-rail span {
  padding: 0.5rem 1rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Chef dashboard mock */

.audience-chef {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(46, 196, 182, 0.04) 100%);
}

.chef-dashboard-mock {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.cdm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.cdm-header strong { font-size: 1rem; color: var(--dark); }

.cdm-toggle {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background: var(--bg);
  color: var(--text-muted);
}
.cdm-toggle.on {
  background: rgba(72, 196, 121, 0.12);
  color: var(--rating);
}

.cdm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.cdm-stat {
  background: var(--bg);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.cdm-num {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--dark);
}

.cdm-stat > span:last-child {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.cdm-orders { display: flex; flex-direction: column; gap: 0.5rem; }

.cdm-order {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  background: var(--bg);
}

.cdm-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.cdm-order.pending .cdm-badge { background: rgba(255, 196, 0, 0.15); color: #B8860B; }
.cdm-order.active .cdm-badge { background: rgba(252, 128, 25, 0.12); color: var(--primary); }
.cdm-order.done .cdm-badge { background: rgba(72, 196, 121, 0.12); color: var(--rating); }

/* ─── How it works ─── */

.how-section {
  background: var(--dark);
  color: var(--white);
}

.how-section .section-label { color: var(--accent); }
.how-section .section-header h2 { color: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.step:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.6;
  margin-bottom: 1rem;
  line-height: 1;
}

.step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* ─── CTA ─── */

.cta-section { padding-bottom: 6rem; }

.cta-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem;
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.cta-card::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -200px;
  right: -100px;
}

.cta-content { position: relative; z-index: 1; }

.cta-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-content p {
  font-size: 1.0625rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 440px;
}

.cta-availability {
  white-space: nowrap;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  color: var(--dark);
  border-radius: 12px;
  transition: var(--transition);
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.store-btn-muted {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.store-btn small {
  display: block;
  font-size: 0.6875rem;
  opacity: 0.7;
}

.store-btn strong {
  font-size: 1rem;
}

.cta-visual {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cta-qr {
  text-align: center;
}

.qr-placeholder {
  width: 140px;
  height: 140px;
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.qr-placeholder svg { width: 100%; height: 100%; }

.qr-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

a.qr-placeholder {
  display: block;
  transition: var(--transition);
}

a.qr-placeholder:hover {
  transform: scale(1.03);
}

.store-btn-disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.85;
}

.cta-qr span {
  font-size: 0.8125rem;
  opacity: 0.8;
}

/* ─── Footer ─── */

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 4rem;
}

.footer .logo { color: var(--white); margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-links h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links a {
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); }

.footer-links li + li { margin-top: 0.625rem; }

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

.social-links svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
}

.footer-tagline {
  font-style: italic;
  opacity: 0.5;
}

/* ─── Scroll Reveal ─── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Responsive ─── */

@media (max-width: 1024px) {
  .hero-grid,
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual { order: -1; }
  .hero-content { text-align: center; }
  .hero-subtitle { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { grid-template-columns: 1fr; text-align: center; padding: 3rem; }
  .cta-content p { margin-inline: auto; }
  .store-buttons { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .logo-img {
    height: 58px;
  }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .features-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid-reverse { direction: ltr; }

  .floating-card-1 { left: -10px; }
  .floating-card-2 { right: -10px; }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .phone-frame { width: 250px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-card { padding: 2rem 1.5rem; }
}
