/* ============================================
   BioPal — Design Tokens & Base
   ============================================ */

:root {
  --bg-primary: #0a0a0a;
  --bg-elevated: #141414;
  --bg-surface: #1e1e1e;
  --text-primary: #f0f0ec;
  --text-secondary: #8a8a80;
  --accent: #3b8ad9;
  --accent-dim: #2b6cb0;
  --accent-glow: rgba(59, 138, 217, 0.2);
  --warm: #ff6b35;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);

  --font-display: 'Clash Display', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'Fira Code', monospace;

  --container: min(1200px, 90%);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
}

/* ============================================
   Reset
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ============================================
   Utilities
   ============================================ */

.container { width: var(--container); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ============================================
   Typography
   ============================================ */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-accent:hover {
  background: var(--accent-dim);
  box-shadow: 0 12px 32px var(--accent-glow);
}

.btn-outline {
  border-color: var(--border-hover);
  color: var(--text-primary);
  background: transparent;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.88rem; }

/* ============================================
   Section Labels & Dots
   ============================================ */

.section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}
.dot--dark { background: #0a0a0a; }

.section-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 50ch;
  margin-top: 0.5rem;
}

/* ============================================
   NAV
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.35s, backdrop-filter 0.35s;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(240, 240, 236, 0.85);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--text-primary); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { transition: color 0.2s; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { font-size: 1rem; }

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-elevated);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #0a0a0a 100%);
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.hero-placeholder code {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.85rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.7) 30%,
    rgba(10, 10, 10, 0.2) 60%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem 6rem;
}

.hero-h1 {
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(240, 240, 236, 0.85);
  max-width: 60ch;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-cta {
  font-size: 1.05rem;
  padding: 1rem 2rem;
  animation: glow-pulse 3s ease-in-out infinite;
}

.hero-compat {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 8px 24px var(--accent-glow); }
  50% { box-shadow: 0 8px 40px rgba(200, 255, 46, 0.3); }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.section h2 {
  margin-bottom: 1rem;
}

/* ============================================
   HOW IT WORKS — Steps
   ============================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  position: relative;
}

.step-line {
  position: absolute;
  top: 2.2rem;
  left: 10%;
  right: 10%;
  height: 1px;
  border-top: 2px dashed var(--border-hover);
  z-index: 0;
}

.step {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.6rem;
  transition: border-color 0.3s, transform 0.3s;
}
.step:hover { border-color: var(--border-hover); transform: translateY(-4px); }

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 40px var(--accent-glow);
}

.step p { color: var(--text-secondary); line-height: 1.5; }

/* ============================================
   FEATURES CAROUSEL
   ============================================ */

.carousel-wrap {
  position: relative;
  margin-top: 2rem;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

.carousel {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1rem 0;
}
.carousel::-webkit-scrollbar { display: none; }

.feature-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }

.feature-img {
  height: 360px;
  position: relative;
}

.feature-card h3 {
  padding: 1rem 1.2rem 0.3rem;
}

.feature-card p {
  padding: 0 1.2rem 1.2rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.2s, opacity 0.3s;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.carousel-arrow:hover { background: var(--accent-dim); }
.carousel-arrow--left { left: clamp(0.2rem, 3vw, 1.5rem); }
.carousel-arrow--right { right: clamp(0.2rem, 3vw, 1.5rem); }
.carousel-arrow.hidden { opacity: 0; pointer-events: none; }

/* Placeholder images */
.placeholder-img {
  background: linear-gradient(145deg, #1a1a2e, #16213e, #0f3460);
  display: grid;
  place-items: center;
}
.placeholder-img span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   PILLARS
   ============================================ */

.section--pillars { background: var(--bg-elevated); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.pillar {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
}

.pillar--featured {
  transform: translateY(-12px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px var(--accent-glow), 0 0 0 1px var(--accent);
}

.pillar-head {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.pillar--featured .pillar-head {
  background: linear-gradient(160deg, rgba(200, 255, 46, 0.06), transparent);
}

.pillar h3 {
  font-size: 2rem;
  letter-spacing: 0.15em;
  margin: 0.5rem 0 0.3rem;
}

.pillar-head p { color: var(--text-secondary); font-weight: 500; }

.pill {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--border-hover);
  color: var(--text-secondary);
}
.pill--accent {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.pillar ul {
  padding: 1.2rem 1.5rem;
  display: grid;
  gap: 0.65rem;
  flex: 1;
}
.pillar li {
  color: var(--text-secondary);
  font-size: 0.92rem;
  padding-left: 1.2rem;
  position: relative;
}
.pillar li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pillar--featured li::before { background: var(--accent); }

.pillar .btn {
  margin: 0 1.5rem 1.5rem;
}

/* Connector split */
.connector-split {
  padding: 1.2rem 1.5rem;
  display: grid;
  gap: 1rem;
  flex: 1;
}
.connector-sub {
  text-align: center;
}
.connector-sub h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}
.connector-sub p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.logo-grid-placeholder {
  margin-top: 0.6rem;
  padding: 0.8rem;
  border: 1px dashed var(--border-hover);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-align: center;
}
.connector-logos {
  margin: 0.6rem auto 0;
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--radius-sm);
  background: #2a2a2a;
  padding: 0.5rem;
}

/* ============================================
   USE CASES
   ============================================ */

.use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.use-case {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.use-case:hover { border-color: var(--border-hover); transform: translateY(-4px); }

.use-case-img { height: 180px; }

.use-case h3 { padding: 1rem 1.2rem 0.3rem; }
.use-case p {
  padding: 0 1.2rem 1.2rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ============================================
   TRUST
   ============================================ */

.section--trust {
  background: var(--bg-elevated);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.trust-statement h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.trust-statement p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.trust-points {
  display: grid;
  gap: 0;
}
.trust-point {
  padding: 1rem 0 1rem 1.2rem;
  border-left: 2px solid var(--accent);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.2s;
}
.trust-point:hover { color: var(--text-primary); }

/* ============================================
   TESTIMONIALS
   ============================================ */

.section--testimonials {
  background: #f5f5f0;
  color: #0a0a0a;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.testimonials-left h2 {
  color: #0a0a0a;
  margin-bottom: 0.6rem;
}
.testimonials-left p {
  color: #5a5a50;
  font-size: 0.95rem;
  line-height: 1.5;
}

.testimonial-arrows {
  display: flex;
  gap: 0.6rem;
  margin-top: 2rem;
}
.arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.arrow-btn:hover { background: var(--accent-dim); }

.testimonials-center {
  display: flex;
  justify-content: center;
}

.testimonial-photo-wrap {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3 / 4;
  border-radius: 20px 20px 16px 16px;
  overflow: hidden;
}
.placeholder-img--portrait {
  height: 100%;
  background: linear-gradient(160deg, #c4ccd4, #8898a8, #5a6a78);
}
.placeholder-img--portrait span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.3rem;
}
img.testimonial-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-right {
  position: relative;
}

.testimonial-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #0a0a0a;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.testimonial-quote {
  color: #5a5a50;
  font-size: 0.95rem;
  line-height: 1.6;
}

.testimonial-divider {
  height: 1px;
  background: #ddd;
  margin: 1.5rem 0;
}

.testimonial-attribution {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.testimonial-attribution strong {
  display: block;
  font-size: 1.05rem;
  color: #0a0a0a;
}
.testimonial-attribution span {
  color: #5a5a50;
  font-size: 0.88rem;
}
.testimonial-counter {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #8a8a80;
}

/* ============================================
   FAQ
   ============================================ */

.section--faq {
  background: #f5f5f0;
  color: #0a0a0a;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.faq-left h2 {
  color: #0a0a0a;
  margin-bottom: 0.6rem;
}
.faq-left p {
  color: #5a5a50;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}
.faq-item:first-child {
  border-top: 1px solid #ddd;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #0a0a0a;
  list-style: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: #0a0a0a;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.2rem;
  color: #5a5a50;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============================================
   FINAL CTA
   ============================================ */

.section--cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  max-width: 600px;
  display: grid;
  gap: 0.8rem;
  justify-items: center;
}
.cta-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.cta-form {
  display: flex;
  gap: 0.6rem;
  width: 100%;
  max-width: 480px;
  margin-top: 0.5rem;
}
.cta-form input {
  flex: 1;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.2rem;
  background: var(--bg-surface);
  color: var(--text-primary);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.cta-form input:focus {
  outline: none;
  border-color: var(--accent);
}
.cta-form input::placeholder { color: var(--text-secondary); }

.form-status {
  font-weight: 600;
  font-size: 0.9rem;
  min-height: 1.4rem;
}
.form-status.success { color: var(--accent); }
.form-status.error { color: var(--warm); }

.cta-trust {
  font-size: 0.88rem !important;
  color: var(--text-secondary) !important;
  margin-top: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

/* ============================================
   FOLLOW-UP DIALOG
   ============================================ */

.follow-up {
  width: min(92%, 500px);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text-primary);
  padding: 0;
}
.follow-up::backdrop {
  background: rgba(0, 0, 0, 0.7);
}

.follow-up-form {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}
.follow-up-form p { color: var(--text-secondary); }
.follow-up-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.follow-up-form input,
.follow-up-form select {
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  background: var(--bg-surface);
  color: var(--text-primary);
  font: inherit;
  font-size: 0.92rem;
}
.follow-up-form input:focus,
.follow-up-form select:focus {
  outline: none;
  border-color: var(--accent);
}

.follow-up-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1024px) {
  .pillars { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pillar--featured { transform: none; }
  .trust-grid { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-center { order: -1; }
  .testimonial-photo-wrap { max-width: 300px; }
  .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .steps { grid-template-columns: 1fr; }
  .step-line { display: none; }

  .feature-card { flex: 0 0 280px; }

  .use-cases { grid-template-columns: 1fr; }

  .hero-content { padding-bottom: 4rem; }
  .hero-h1 { font-size: clamp(2rem, 8vw, 3.2rem); }

  .cta-form { flex-direction: column; }
}

@media (max-width: 480px) {
  :root { --container: 92%; }
  .hero-content { padding-bottom: 3rem; }
  .feature-card { flex: 0 0 260px; }
  .testimonial-photo-wrap { max-width: 240px; }
}
