/* ============================================================================
   LANDING — Clean · Minimal · Handcrafted
   ============================================================================ */

/* ── TOKENS ────────────────────────────────────────────────────────────────── */
:root {
  --land-cream:   #faf9f6;
  --land-warm:    #f5f3ee;
  --land-ink:     #1a1814;
  --land-ink2:    #3d3a34;
  --land-ink3:    #7c7870;
  --land-ink4:    #b5b1a8;
  --land-rule:    #e8e4dc;
  --land-accent:  #2563eb;
  --land-gold:    #c8a84b;
  --land-green:   #2d6a4f;
  --land-border:  rgba(26,24,20,0.08);
}

/* ── BASE ───────────────────────────────────────────────────────────────────── */
body {
  background: var(--land-cream);
  color: var(--land-ink);
  font-family: 'Inter', -apple-system, sans-serif;
}

/* ── NAVBAR ────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(250,249,246,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--land-border);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(250,249,246,0.97);
  box-shadow: 0 1px 0 var(--land-rule), 0 4px 24px rgba(26,24,20,0.06);
}
.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--land-ink);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.nav-logo-icon {
  width: 30px; height: 30px;
  background: var(--land-ink);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--land-cream);
  flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 6px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--land-ink3);
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--land-ink); background: var(--land-warm); }
.nav-cta { display: flex; align-items: center; }

.btn-nav {
  padding: 8px 18px;
  background: var(--land-ink);
  color: var(--land-cream);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}
.btn-nav:hover {
  background: var(--land-ink2);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,24,20,0.2);
}

/* ── HERO ───────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--land-cream);
  padding-top: 60px;
}

/* Fine grain texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

/* Thin horizontal rule — hand-drawn feel */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--land-rule) 20%, var(--land-rule) 80%, transparent);
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 32px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border: 1px solid var(--land-rule);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--land-ink3);
  margin-bottom: 28px;
  background: var(--land-warm);
  animation: fadeUp 0.5s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--land-green);
  border-radius: 50%;
  animation: breathe 3s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.05em;
  color: var(--land-ink);
  margin: 0 0 22px;
  animation: fadeUp 0.5s 0.08s ease both;
}

/* Italic serif word — handcrafted accent */
.hero-title em {
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--land-ink2);
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--land-ink3);
  line-height: 1.72;
  margin: 0 0 36px;
  max-width: 420px;
  animation: fadeUp 0.5s 0.16s ease both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeUp 0.5s 0.22s ease both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--land-ink);
  color: var(--land-cream);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.22s;
  letter-spacing: -0.02em;
}
.btn-hero-primary:hover {
  background: var(--land-ink2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,24,20,0.22);
}
.btn-hero-primary svg { transition: transform 0.2s; }
.btn-hero-primary:hover svg { transform: translateX(3px); }

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: transparent;
  border: 1px solid var(--land-rule);
  color: var(--land-ink2);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.22s;
}
.btn-hero-secondary:hover {
  border-color: var(--land-ink4);
  background: var(--land-warm);
  color: var(--land-ink);
}

.hero-proof {
  display: flex;
  gap: 28px;
  animation: fadeUp 0.5s 0.28s ease both;
}
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-number {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--land-ink);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.proof-label { font-size: 0.72rem; color: var(--land-ink4); letter-spacing: 0.04em; text-transform: uppercase; }
.proof-divider { width: 1px; background: var(--land-rule); align-self: stretch; }

/* ── HERO VISUAL ───────────────────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  animation: fadeUp 0.5s 0.12s ease both;
}
.hero-doc-wrapper { position: relative; }

.hero-doc {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--land-rule);
  box-shadow:
    0 2px 4px rgba(26,24,20,0.04),
    0 12px 40px rgba(26,24,20,0.1),
    0 40px 80px rgba(26,24,20,0.06);
  overflow: hidden;
  animation: docFloat 7s ease-in-out infinite;
}
@keyframes docFloat {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50%       { transform: translateY(-10px) rotate(0.3deg); }
}

.hero-doc-header {
  padding: 20px 20px 16px;
  border-bottom: 1.5px solid var(--land-ink);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.hero-doc-logo-placeholder {
  width: 32px; height: 32px;
  background: var(--land-ink);
  border-radius: 4px;
}
.hero-doc-company { flex: 1; padding-left: 12px; }
.hero-doc-line {
  height: 7px;
  background: var(--land-ink);
  border-radius: 3px;
  margin-bottom: 5px;
  width: 65%;
}
.hero-doc-line.short { width: 45%; height: 5px; background: var(--land-ink4); }
.hero-doc-contact {
  text-align: right;
  font-size: 5.5px;
  color: var(--land-ink3);
  line-height: 1.9;
}

.hero-doc-body { padding: 18px 20px; }
.hero-doc-text-line {
  height: 5px;
  background: var(--land-rule);
  border-radius: 2px;
  margin-bottom: 7px;
  width: 88%;
}
.hero-doc-text-line.wide { width: 100%; }
.hero-doc-text-line.gap { margin-top: 14px; }
.hero-doc-text-line.short { width: 50%; }

.hero-doc-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--land-rule);
  background: var(--land-cream);
}
.hero-doc-footer-line { height: 4px; background: var(--land-rule); border-radius: 2px; margin-bottom: 5px; width: 55%; }
.hero-doc-footer-line:last-child { width: 35%; }

/* floating annotation chips */
.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid var(--land-rule);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--land-ink2);
  box-shadow: 0 4px 16px rgba(26,24,20,0.1);
  white-space: nowrap;
}
.hero-chip-1 { top: -16px; right: -10px; animation: chipUp 5s ease-in-out infinite; }
.hero-chip-2 { bottom: 48px; left: -16px; animation: chipUp 6s 1s ease-in-out infinite; }
.hero-chip-3 { bottom: -16px; right: 32px; animation: chipUp 5.5s 2s ease-in-out infinite; }
.chip-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.chip-dot.green  { background: #22c55e; }
.chip-dot.blue   { background: #3b82f6; }
.chip-dot.amber  { background: #f59e0b; }
@keyframes chipUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MARQUEE TRUST BAR ──────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--land-warm);
  border-top: 1px solid var(--land-rule);
  border-bottom: 1px solid var(--land-rule);
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
  padding: 12px 0;
}
.trust-bar-inner:hover { animation-play-state: paused; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 32px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--land-ink3);
  white-space: nowrap;
  border-right: 1px solid var(--land-rule);
}
.trust-item svg { color: var(--land-green); flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTIONS ───────────────────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-warm { background: var(--land-warm); border-top: 1px solid var(--land-rule); border-bottom: 1px solid var(--land-rule); }
.section-cream { background: var(--land-cream); }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header-center {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--land-ink4);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--land-ink);
  margin: 0 0 14px;
  line-height: 1.12;
}
.section-title em {
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--land-ink2);
}
.section-desc {
  font-size: 0.975rem;
  color: var(--land-ink3);
  line-height: 1.72;
  margin: 0;
}

/* ── SCROLL REVEAL ──────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-children > * { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal-children.visible > *:nth-child(1) { opacity:1;transform:none;transition-delay:0s; }
.reveal-children.visible > *:nth-child(2) { opacity:1;transform:none;transition-delay:0.07s; }
.reveal-children.visible > *:nth-child(3) { opacity:1;transform:none;transition-delay:0.14s; }
.reveal-children.visible > *:nth-child(4) { opacity:1;transform:none;transition-delay:0.21s; }
.reveal-children.visible > *:nth-child(5) { opacity:1;transform:none;transition-delay:0.28s; }
.reveal-children.visible > *:nth-child(6) { opacity:1;transform:none;transition-delay:0.35s; }

/* ── WHY CARDS ──────────────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  border: 1px solid var(--land-rule);
  border-radius: 12px;
  overflow: hidden;
  background: var(--land-rule);
}
.why-card {
  background: var(--land-cream);
  padding: 36px 32px;
  transition: background 0.2s;
  cursor: default;
}
.why-card:hover { background: var(--land-warm); }
.why-icon { font-size: 1.5rem; margin-bottom: 16px; display: block; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--land-ink); margin: 0 0 10px; letter-spacing: -0.02em; }
.why-card p  { font-size: 0.875rem; color: var(--land-ink3); line-height: 1.68; margin: 0; }

/* ── FEATURE CARDS ──────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  border: 1px solid var(--land-rule);
  border-radius: 12px;
  overflow: hidden;
  background: var(--land-rule);
}
.feature-card {
  background: var(--land-warm);
  padding: 32px 28px;
  transition: background 0.2s;
}
.feature-card:hover { background: #eeeae0; }
.feature-icon-wrap {
  font-size: 1.3rem;
  margin-bottom: 14px;
  display: block;
  width: 40px; height: 40px;
  background: var(--land-cream);
  border: 1px solid var(--land-rule);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.feature-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--land-ink); margin: 0 0 8px; letter-spacing: -0.02em; }
.feature-card p  { font-size: 0.835rem; color: var(--land-ink3); line-height: 1.68; margin: 0; }

/* ── STEPS ──────────────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border: 1px solid var(--land-rule);
  border-radius: 12px;
  overflow: hidden;
  background: var(--land-rule);
  position: relative;
}
.step-card {
  background: var(--land-cream);
  padding: 32px 24px;
  text-align: left;
  border-right: 1px solid var(--land-rule);
  position: relative;
}
.step-card:last-child { border-right: none; }
.step-number-wrap {
  width: 36px; height: 36px;
  border: 1.5px solid var(--land-ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--land-ink);
  margin-bottom: 18px;
  position: relative;
  font-variant-numeric: tabular-nums;
}
.step-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--land-ink); margin: 0 0 8px; letter-spacing: -0.02em; }
.step-card p  { font-size: 0.835rem; color: var(--land-ink3); line-height: 1.68; margin: 0; }

/* ── TEMPLATES GRID ─────────────────────────────────────────────────────────── */
.templates-scroll {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.template-showcase-card {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--land-rule);
  background: #fff;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
  position: relative;
}
.template-showcase-card::before {
  content: 'Open in Editor →';
  position: absolute;
  inset: 0;
  background: rgba(26,24,20,0.65);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transition: opacity 0.22s;
  z-index: 2;
  border-radius: 10px;
  letter-spacing: -0.01em;
}
.template-showcase-card:hover::before { opacity: 1; }
.template-showcase-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--land-ink4);
  box-shadow: 0 16px 48px rgba(26,24,20,0.14);
}
.tpl-preview {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.template-showcase-info {
  padding: 12px 14px;
  border-top: 1px solid var(--land-rule);
  background: var(--land-warm);
}
.template-showcase-info h4 { font-size: 0.8rem; font-weight: 700; color: var(--land-ink); margin: 0 0 2px; letter-spacing: -0.01em; }
.template-showcase-info p  { font-size: 0.7rem; color: var(--land-ink4); margin: 0; }

/* ── BEST PRACTICES ─────────────────────────────────────────────────────────── */
.content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.practices-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--land-rule); border-radius: 12px; overflow: hidden; }
.practice-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  border-bottom: 1px solid var(--land-rule);
  background: var(--land-warm);
  transition: background 0.2s;
}
.practice-item:last-child { border-bottom: none; }
.practice-item:hover { background: #eeeae0; }
.practice-check {
  width: 24px; height: 24px; min-width: 24px;
  background: var(--land-ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--land-cream);
  font-weight: 700;
  margin-top: 1px;
}
.practice-item h4 { font-size: 0.875rem; font-weight: 700; color: var(--land-ink); margin: 0 0 4px; letter-spacing: -0.01em; }
.practice-item p  { font-size: 0.825rem; color: var(--land-ink3); line-height: 1.65; margin: 0; }

/* ── FAQ ────────────────────────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--land-rule);
  border-radius: 12px;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  padding: 22px 28px;
  border-bottom: 1px solid var(--land-rule);
  cursor: pointer;
  background: var(--land-cream);
  transition: background 0.2s;
}
.faq-item:last-child { border-bottom: none; }
.faq-item:hover { background: var(--land-warm); }
.faq-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--land-ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item h4::after { content: '+'; font-size: 1rem; color: var(--land-ink4); font-weight: 400; }
.faq-item.faq-open h4::after { content: '−'; }
.faq-item p  { font-size: 0.85rem; color: var(--land-ink3); line-height: 1.7; margin: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, margin 0.3s ease; }
.faq-item.faq-open p  { max-height: 200px; margin-top: 0; }

/* ── CTA ────────────────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--land-ink);
  padding: 96px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* subtle ruled lines in CTA */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 39px,
    rgba(255,255,255,0.03) 39px,
    rgba(255,255,255,0.03) 40px
  );
}
.cta-inner { max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
.cta-inner h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--land-cream);
  margin: 0 0 14px;
  line-height: 1.1;
}
.cta-inner h2 em {
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
}
.cta-inner p { font-size: 1rem; color: var(--land-ink4); margin: 0 0 36px; line-height: 1.7; }
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--land-cream);
  color: var(--land-ink);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.22s;
  letter-spacing: -0.02em;
}
.btn-cta-white:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

/* ── FOOTER ─────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--land-warm);
  border-top: 1px solid var(--land-rule);
  padding: 56px 32px 36px;
}
.footer-grid {
  max-width: 1120px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p { font-size: 0.85rem; color: var(--land-ink4); line-height: 1.7; margin-top: 14px; }
.footer-col h5 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--land-ink3); margin: 0 0 14px; }
.footer-col a  { display: block; font-size: 0.85rem; color: var(--land-ink4); text-decoration: none; margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: var(--land-ink); }
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--land-rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--land-ink4);
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; max-width: 320px; margin: 0 auto; }
  .features-grid, .why-grid { grid-template-columns: repeat(2,1fr); }
  .templates-scroll { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-inner { padding: 48px 20px 64px; }
  .hero-title { font-size: 2.4rem; }
  .hero-proof { gap: 20px; }
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .why-grid, .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-card:nth-child(2n) { border-right: none; }
  .step-card:nth-child(1), .step-card:nth-child(2) { border-bottom: 1px solid var(--land-rule); }
  .templates-scroll { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .content-2col { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { border-radius: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .hero-chip { display: none; }
  .cta-section { padding: 64px 20px; }
}
