/* ─── Site Sorted — wispr.ai-inspired design ─── */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Figtree:wght@400;500;600&display=swap');

:root {
  --color-bg: #FFFFEB;
  --color-bg-alt: #F5F5F5;
  --color-primary: #034F46;
  --color-accent: #F0D7FF;
  --color-text: #1A1A1A;
  --color-text-muted: #666666;
  --color-heading: #1A1A1A;
  --color-border: #E5E5E5;
  --color-surface-dark: #1A1A1A;
  --color-surface-green: #034F46;
  --color-white: #FFFFEB;
  --color-btn-primary-bg: #F0D7FF;
  --color-btn-primary-text: #1A1A1A;

  --font-heading: 'EB Garamond', Georgia, serif;
  --font-body: 'Figtree', Arial, sans-serif;

  --section-padding: clamp(60px, 8vw, 120px);
  --container-max-width: 1200px;
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ─── Banner ─── */
.banner {
  background: var(--color-surface-green);
  color: var(--color-white);
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}
.banner a {
  color: var(--color-accent);
  margin-left: 8px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.banner a:hover { opacity: 0.8; }

/* ─── Navbar ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 235, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  margin: 12px auto;
  max-width: calc(var(--container-max-width) + 40px);
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-heading);
}
.nav-logo img {
  height: 32px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
}
.nav-links a:hover { color: var(--color-surface-green); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-btn-primary-bg);
  color: var(--color-btn-primary-text);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  border: 1px solid var(--color-text);
  cursor: pointer;
  transition: var(--transition);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* Hide mobile-only items on desktop */
.mobile-only { display: none; }

/* Step icon SVGs (inverted for dark bg) */
.step-icon-svg {
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

/* FAQ section flush with pricing above */
.faq-section { padding-top: 0; }

/* ─── Hero ─── */
.hero {
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 7rem);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
}
.hero h1 strong {
  font-weight: 600;
}
.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-btn-primary-bg);
  color: var(--color-btn-primary-text);
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-body);
  border: 1px solid var(--color-text);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-text);
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-body);
  border: 1px solid var(--color-text);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--color-text);
  color: var(--color-bg);
}
.hero-note {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 16px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--color-heading);
}
.hero-stat .stat-label {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* ─── Audience Marquee ─── */
.audience-marquee {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--color-text-muted);
  white-space: nowrap;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Dark Rounded Section ─── */
.section-dark {
  background: var(--color-surface-dark);
  color: var(--color-white);
  border-radius: var(--border-radius-lg);
  margin: 0 clamp(12px, 2vw, 20px);
  padding: var(--section-padding) clamp(20px, 4vw, 60px);
}
.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--color-white);
}
.section-dark .text-muted { color: rgba(255, 255, 235, 0.7); }

.section-green {
  background: var(--color-surface-green);
  color: var(--color-white);
  border-radius: var(--border-radius-lg);
  margin: 0 clamp(12px, 2vw, 20px);
  padding: var(--section-padding) clamp(20px, 4vw, 60px);
}
.section-green h2, .section-green h3 { color: var(--color-white); }
.section-green .text-muted { color: rgba(255, 255, 235, 0.7); }

.section-cream {
  padding: var(--section-padding) 0;
}

/* ─── How It Works ─── */
.how-it-works {
  margin-top: 40px;
}
.section-dark + .section-cream { margin-top: 0; }
.section-cream + .section-dark { margin-top: 0; }
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-header h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 16px;
}
.section-header h2 em { font-style: italic; font-weight: 400; }
.section-header p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 560px;
  margin: 0 auto;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: rgba(255, 255, 235, 0.06);
  border: 1px solid rgba(255, 255, 235, 0.1);
  border-radius: var(--border-radius);
  padding: 32px;
  position: relative;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.step-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.step-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 235, 0.7);
}

/* ─── Speed Comparison ─── */
.speed-section { margin-top: 40px; }
.speed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.speed-card {
  border-radius: var(--border-radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.speed-card.old {
  background: #F5F5F0;
  border: 1px solid var(--color-border);
}
.speed-card.new {
  background: var(--color-surface-green);
  color: var(--color-white);
}
.speed-card .speed-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
  margin-bottom: 8px;
}
.speed-card .speed-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 16px;
}
.speed-card .speed-desc {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
  margin-top: auto;
}

/* ─── Feature Bento Grid ─── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.bento-card {
  background: var(--color-surface-dark);
  color: var(--color-white);
  border-radius: var(--border-radius);
  padding: clamp(28px, 4vw, 40px);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.bento-card h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 12px;
  color: var(--color-white);
}
.bento-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 235, 0.7);
}
.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.bento-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-text);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── Made For You (Tabs) ─── */
.audience-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 235, 0.2);
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover,
.tab-btn.active {
  background: var(--color-accent);
  color: var(--color-text);
  border-color: var(--color-accent);
}
.tab-content {
  display: none;
}
.tab-content.active { display: block; }
.tab-content h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.tab-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 235, 0.7);
  max-width: 600px;
  margin-bottom: 24px;
}

/* ─── Before/After Demo ─── */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.demo-before {
  background: #F5F0E8;
  border-radius: var(--border-radius);
  padding: 32px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  border: 1px solid var(--color-border);
}
.demo-after {
  background: var(--color-surface-dark);
  color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 32px;
}
.demo-after h4 { font-size: 1.1rem; margin-bottom: 16px; color: var(--color-accent); }
.demo-after p { font-size: 15px; line-height: 1.7; color: rgba(255, 255, 235, 0.8); }

/* ─── Testimonials ─── */
.testimonials-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.testimonials-scroll::-webkit-scrollbar { height: 0; display: none; }
.testimonial-card {
  min-width: 320px;
  max-width: 360px;
  background: rgba(255, 255, 235, 0.06);
  border: 1px solid rgba(255, 255, 235, 0.1);
  border-radius: var(--border-radius);
  padding: 28px;
  scroll-snap-align: start;
  flex-shrink: 0;
}
.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 235, 0.85);
  margin-bottom: 20px;
  font-style: italic;
  font-family: var(--font-heading);
}
.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
}
.testimonial-role {
  font-size: 13px;
  color: rgba(255, 255, 235, 0.5);
}

/* Testimonials on cream backgrounds need dark card bg */
.section-cream .testimonial-card {
  background: var(--color-surface-dark);
  border-color: rgba(255, 255, 235, 0.1);
}

/* ─── Case Study Cards ─── */
.case-studies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.case-card {
  background: var(--color-surface-green);
  border-radius: var(--border-radius);
  padding: 32px;
  color: var(--color-white);
  transition: var(--transition);
}
.case-card:hover { transform: translateY(-3px); }
.case-card .case-stat {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 8px;
}
.case-card .case-quote {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 235, 0.8);
  margin-bottom: 16px;
}
.case-card .case-author { font-size: 14px; font-weight: 600; }
.case-card .case-role { font-size: 13px; color: rgba(255, 255, 235, 0.6); }

/* ─── Pricing Comparison ─── */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin-top: 40px;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.pricing-table th {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}
.pricing-table th:first-child { width: 35%; }
.pricing-table td.highlight {
  color: var(--color-surface-green);
  font-weight: 600;
}

/* ─── FAQ ─── */
.faq-list { margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--color-text);
  transition: var(--transition);
}
.faq-question:hover { color: var(--color-surface-green); }
.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s ease;
  padding: 0;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* FAQ on dark backgrounds */
.section-dark .faq-question {
  color: var(--color-white);
}
.section-dark .faq-question:hover {
  color: var(--color-accent);
}
.section-dark .faq-answer p {
  color: rgba(255, 255, 235, 0.7);
}
.section-dark .faq-item {
  border-color: rgba(255, 255, 235, 0.15);
}
.section-dark .faq-icon {
  color: var(--color-white);
}

/* ─── AI Endorsement ─── */
.ai-section {
  background: var(--color-bg);
  border: 2px solid var(--color-text);
  border-radius: var(--border-radius-lg);
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  margin: 0 clamp(12px, 2vw, 20px);
}
.ai-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.ai-section p {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.ai-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--color-text);
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
}
.ai-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

/* ─── Bottom CTA ─── */
.bottom-cta {
  background: var(--color-surface-green);
  border-radius: var(--border-radius-lg);
  margin: 40px clamp(12px, 2vw, 20px);
  padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 60px);
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.bottom-cta h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--color-white);
  margin-bottom: 24px;
}
.bottom-cta h2 em { font-style: italic; font-weight: 400; }
.bottom-cta p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 235, 0.8);
  max-width: 480px;
  margin: 0 auto 32px;
}
.bottom-cta .btn-primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.bottom-cta-note {
  font-size: 14px;
  color: rgba(255, 255, 235, 0.5);
  margin-top: 16px;
}

/* ─── Footer ─── */
.footer {
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-brand .footer-logo img { height: 28px; }
.footer-brand p {
  font-size: 15px;
  color: #555;
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 15px;
  color: var(--color-text);
}
.footer-col a:hover { color: var(--color-surface-green); }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #555;
}
.footer-legal a {
  margin-left: 20px;
  color: #555;
}
.footer-legal a:hover { color: var(--color-text); }

/* ─── Depth & Decorative Elements ─── */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240, 215, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero { position: relative; }
.hero > .container { position: relative; z-index: 1; }

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(3, 79, 70, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(240, 215, 255, 0.06) 0%, transparent 40%);
  pointer-events: none;
  border-radius: inherit;
}
.section-dark { position: relative; }

.bottom-cta::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border: 2px dashed rgba(255, 255, 235, 0.15);
  border-radius: 50%;
  pointer-events: none;
}
.bottom-cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 215, 255, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.bento-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* ─── Scroll Reveal Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.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; }

/* ─── Mobile Responsive ─── */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .speed-grid { grid-template-columns: 1fr; }
  .demo-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .case-studies { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar {
    border-radius: 16px;
    margin: 8px;
    padding: 0 16px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(var(--nav-height) + 8px);
    left: 0;
    right: 0;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 20px;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta.desktop-only { display: none; }
  .nav-links .mobile-only { display: list-item; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-stats { gap: 24px; }
  .section-dark, .section-green, .bottom-cta, .ai-section {
    margin: 0 8px;
    border-radius: var(--border-radius);
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal a { margin-left: 12px; }
  .pricing-table { font-size: 13px; }
  .pricing-table th, .pricing-table td { padding: 12px 8px; }
  .ai-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .audience-tabs { gap: 8px; }
  .tab-btn { padding: 8px 14px; font-size: 13px; }
}

/* ── Contact / Builder Form ─────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.form-group input[type="text"],
.form-group input[type="url"],
.form-group input[type="email"] {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-bg);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.18s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus {
  border-color: var(--color-primary, #1a1a1a);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.form-hint {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* nav active state */
.nav-links a.active {
  color: var(--text-primary);
  font-weight: 600;
}
