/* landing.css - koristi gi istite :root varijabli od auth.css (vekje linkuvan pred ova) */

body {
  overflow: visible;
  font-family: 'IBM Plex Sans', sans-serif;
}

/* ============ NAV ============ */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(14, 20, 32, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--panel-border);
}

.nav-actions { display: flex; align-items: center; gap: 20px; }

.nav-link {
  color: var(--mist);
  text-decoration: none;
  font-size: 14px;
}
.nav-link:hover { color: var(--phosphor); }

.nav-cta {
  background: linear-gradient(135deg, #E8CE8B, var(--phosphor) 55%, #8A6D3A);
  color: var(--ink);
  padding: 11px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-cta:hover { box-shadow: 0 0 20px var(--phosphor-dim); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 24px 80px;
}

.hero .radar-stage { position: absolute; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  animation: heroIn 0.7s cubic-bezier(0.2, 0.8, 0.3, 1) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content, .step-card { animation: none; }
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  line-height: 1.2;
  margin: 0 0 22px;
  background: linear-gradient(135deg, var(--mist) 20%, var(--phosphor) 70%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--mist);
}

.hero-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--static);
  max-width: 560px;
  margin: 0 auto 34px;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary, .btn-ghost {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--phosphor), #8A6D3A);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  box-shadow: 0 0 30px var(--phosphor-dim), 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}
.btn-primary.large {
  padding: 16px 34px;
  font-size: 16px;
  box-shadow: 0 0 40px var(--phosphor-dim);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--panel-border);
  color: var(--mist);
}
.btn-ghost:hover { border-color: var(--phosphor); color: var(--phosphor); }
.btn-primary.full, .btn-ghost.full { display: block; width: 100%; text-align: center; box-sizing: border-box; margin-top: 16px; }

/* ============ HOW IT WORKS ============ */
.how-it-works, .plans-section, .final-cta {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--phosphor);
  text-align: center;
  margin: 0 0 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: linear-gradient(160deg, var(--panel) 0%, rgba(20,27,44,0.5) 100%);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 26px 20px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  animation: stepIn 0.5s ease both;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--phosphor);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 30px var(--phosphor-dim);
}
.step-card:nth-child(1) { animation-delay: 0.05s; }
.step-card:nth-child(2) { animation-delay: 0.15s; }
.step-card:nth-child(3) { animation-delay: 0.25s; }
.step-card:nth-child(4) { animation-delay: 0.35s; }

@keyframes stepIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-icon {
  width: 40px;
  height: 40px;
  color: var(--phosphor);
  margin-bottom: 14px;
  padding: 10px;
  background: radial-gradient(circle, var(--phosphor-dim), transparent 70%);
  border-radius: 50%;
  box-sizing: content-box;
}

.step-num {
  position: absolute;
  top: 22px; right: 22px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--panel-border);
}

.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--mist);
  margin: 0 0 10px;
}

.step-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--static);
  margin: 0;
}

/* ============ COMPARISON BAR (Rachno vs Avtomatski) ============ */
.comparison-bar {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

.comparison-intro {
  max-width: 700px;
  margin: 0 auto 44px;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  color: var(--static);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.comparison-panel {
  background: linear-gradient(160deg, var(--panel) 0%, rgba(20,27,44,0.5) 100%);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 30px 28px;
  position: relative;
}

.panel-auto {
  border-color: var(--phosphor);
  box-shadow: 0 0 40px var(--phosphor-dim);
}

.comparison-illustration {
  width: 100%;
  max-width: 260px;
  height: auto;
  color: var(--static);
  margin-bottom: 18px;
}
.panel-manual .comparison-illustration { opacity: 0.85; }

.panel-tag {
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.tag-manual { background: rgba(181,75,66,0.12); color: #E0897E; }
.tag-auto { background: var(--phosphor-dim); color: var(--phosphor); }

.comparison-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--mist);
  margin: 0 0 18px;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--static);
}
.comparison-list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 12px;
}
.panel-manual .comparison-list li::before {
  content: "✕";
  position: absolute; left: 0;
  color: #E0897E;
}
.panel-auto .comparison-list li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--phosphor);
}

.comparison-stat {
  text-align: center;
  font-size: 15px;
  color: var(--mist);
  background: var(--phosphor-dim);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 18px 24px;
  max-width: 700px;
  margin: 0 auto;
}
.comparison-stat strong { color: var(--phosphor); }

@media (max-width: 800px) {
  .comparison-grid { grid-template-columns: 1fr; }
}

/* ============ SECTION INTRO (shared subtitle under section-label) ============ */
.section-intro {
  max-width: 640px;
  margin: -18px auto 40px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: var(--static);
}

/* ============ HOW IT WORKS - real UI mockup panels ============ */
.mockup-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mockup-step {
  background: linear-gradient(160deg, var(--panel, #171F32) 0%, rgba(20,27,44,0.5) 100%);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 20px 20px 26px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  animation: stepIn 0.5s ease both;
}
.mockup-step:hover {
  transform: translateY(-6px);
  border-color: var(--phosphor);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 30px var(--phosphor-dim);
}
.mockup-step:nth-child(1) { animation-delay: 0.05s; }
.mockup-step:nth-child(2) { animation-delay: 0.15s; }
.mockup-step:nth-child(3) { animation-delay: 0.25s; }

.mockup-step .step-num {
  top: 20px; right: 20px;
}

.mockup-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--mist);
  margin: 18px 0 8px;
}

.mockup-step p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--static);
  margin: 0;
}

/* --- the "screenshot" panel itself --- */
.mockup-panel {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background: var(--scope-black);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35) inset, 0 6px 18px rgba(0,0,0,0.3);
  pointer-events: none;
  user-select: none;
}

.mockup-panel-chrome {
  display: flex;
  gap: 6px;
  padding: 9px 12px;
  background: var(--deep-pine, #14110B);
  border-bottom: 1px solid var(--panel-border);
}
.mockup-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--panel-border);
}
.mockup-dot:first-child { background: #B54B42; opacity: 0.7; }
.mockup-dot:nth-child(2) { background: var(--phosphor); opacity: 0.7; }
.mockup-dot:nth-child(3) { background: #6B5D3A; opacity: 0.5; }

.mockup-panel-body {
  padding: 16px;
}

.mockup-h2 {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--static);
  margin-bottom: 10px;
}

/* mini search form mockup */
.mockup-search-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.mockup-input {
  flex: 1;
  min-width: 56px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--panel-border);
  color: var(--static);
  font-size: 10px;
  padding: 8px 8px;
  border-radius: 5px;
}
.mockup-input-narrow { flex: 0.7; }
.mockup-btn {
  background: linear-gradient(135deg, var(--phosphor), #8A6D3A 130%);
  color: var(--ink);
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 10px;
  padding: 8px 10px;
  border-radius: 5px;
  white-space: nowrap;
}

/* mini leads table mockup */
.mockup-table {
  width: 100%;
  border-collapse: collapse;
}
.mockup-table td {
  padding: 8px 4px;
  border-bottom: 1px solid var(--panel-border);
  font-size: 11px;
  color: var(--mist);
}
.mockup-table tr:last-child td { border-bottom: none; }
.mockup-table td:last-child { text-align: right; width: 46px; }

.score-pill {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 11px;
  font-family: 'Space Mono', monospace;
}
.score-high { background: var(--phosphor-dim); color: var(--phosphor); }
.score-mid { background: var(--amber-dim); color: var(--amber); }
.score-low { background: rgba(181,75,66,0.12); color: #E0897E; }

/* mini email preview modal mockup */
.mockup-panel-body-modal {
  background: rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
}
.mockup-modal-card {
  width: 100%;
  max-width: 220px;
  background: var(--deep-pine, #14110B);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  padding: 14px;
}
.mockup-modal-title {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--mist);
  margin-bottom: 10px;
}
.mockup-modal-lines { margin-bottom: 12px; }
.mockup-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(245,241,232,0.1);
  margin-bottom: 6px;
}
.mockup-line-80 { width: 80%; }
.mockup-line-100 { width: 100%; }
.mockup-line-60 { width: 60%; }
.mockup-modal-btn {
  background: var(--phosphor);
  color: var(--ink);
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 10px;
  text-align: center;
  padding: 7px;
  border-radius: 5px;
}

/* ============ STATS ROW (inside comparison-bar) ============ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 28px;
}
.stat-box {
  background: linear-gradient(160deg, var(--panel, #171F32) 0%, rgba(20,27,44,0.5) 100%);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--phosphor);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  line-height: 1.5;
  color: var(--static);
}

/* ============ PRODUCT PROOF ============ */
.proof-section {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
}

.proof-card {
  background: linear-gradient(160deg, var(--panel, #171F32) 0%, rgba(20,27,44,0.5) 100%);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 30px 28px;
}

.proof-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--panel-border);
  flex-wrap: wrap;
}

.proof-badge {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--amber);
  background: var(--amber-dim);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.proof-business h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--mist);
  margin: 0 0 6px;
}
.proof-meta { font-size: 13px; color: var(--static); margin: 0; }

.proof-score-badge {
  text-align: center;
  background: var(--phosphor-dim);
  border: 1px solid var(--phosphor);
  border-radius: 12px;
  padding: 10px 22px;
  flex-shrink: 0;
}
.proof-score-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--phosphor);
  line-height: 1;
}
.proof-score-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--static);
  margin-top: 4px;
}

.proof-why-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--mist);
  margin: 0 0 16px;
}

.proof-breakdown {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
}
.proof-item strong { display: block; color: var(--mist); font-weight: 600; margin-bottom: 2px; }
.proof-item span { color: var(--static); font-size: 12.5px; }

.proof-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.proof-positive .proof-icon { background: var(--phosphor-dim); color: var(--phosphor); }
.proof-negative .proof-icon { background: rgba(181,75,66,0.12); color: #E0897E; }

/* ============ SIX CAPABILITIES GRID (reuses .step-card) ============ */
.capabilities-section {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.capability-icon {
  font-size: 26px;
  margin-bottom: 14px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, var(--phosphor-dim), transparent 70%);
  border-radius: 50%;
}

/* ============ PERSONAS ============ */
.personas-section {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.persona-card {
  background: linear-gradient(160deg, var(--panel, #171F32) 0%, rgba(20,27,44,0.5) 100%);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.persona-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 30px var(--amber-dim);
}
.persona-icon { font-size: 30px; margin-bottom: 14px; }
.persona-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--mist);
  margin: 0 0 10px;
}
.persona-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--static);
  margin: 0;
}

/* ============ FAQ ACCORDION ============ */
.faq-section {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: linear-gradient(160deg, var(--panel, #171F32) 0%, rgba(20,27,44,0.5) 100%);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open { border-color: var(--phosphor); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--mist);
  cursor: pointer;
}

.faq-toggle {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--phosphor-dim);
  color: var(--phosphor);
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p {
  margin: 0;
  padding: 0 22px 18px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--static);
}

/* ============ PLANS (public) ============ */
.plans-grid-public {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plans-grid-public .plan-card {
  background: linear-gradient(160deg, var(--panel) 0%, rgba(20,27,44,0.5) 100%);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.plans-grid-public .plan-card::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(201,162,75,0.16), rgba(138,109,58,0.12), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.plans-grid-public .plan-card:hover::before {
  left: 130%;
}
.plans-grid-public .plan-card:hover {
  transform: translateY(-8px);
  border-color: var(--phosphor);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 30px var(--phosphor-dim);
}
.plans-grid-public .plan-card.featured {
  border-color: var(--phosphor);
  box-shadow: 0 0 40px var(--phosphor-dim);
}
.plans-grid-public .plan-card.featured:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 55px var(--amber-dim);
  border-color: var(--amber);
}

.featured-tag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E8CE8B, var(--phosphor) 55%, #8A6D3A);
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.plans-grid-public h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--mist);
  margin: 6px 0 10px;
}

.plans-grid-public .price {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--phosphor);
  margin-bottom: 18px;
}
.plans-grid-public .price span { font-size: 14px; color: var(--static); font-weight: 400; }

.plans-grid-public ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 13px;
  color: var(--static);
}
.plans-grid-public li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}
.plans-grid-public li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--phosphor);
}

.plans-grid-public .ultra-bonus-line {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed var(--panel-border);
  color: var(--amber);
  font-size: 12px;
}
.plans-grid-public .ultra-bonus-line::before { content: "★"; color: var(--amber); }

/* ============ FINAL CTA ============ */
.final-cta { text-align: center; padding-bottom: 100px; }
.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  line-height: 1.3;
  color: var(--mist);
  margin: 0 0 30px;
}

/* ============ FOOTER ============ */
.landing-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--panel-border);
  padding: 40px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(201,162,75,0.03));
}
.wordmark.small { font-size: 15px; margin-bottom: 8px; }
.landing-footer p { font-size: 12px; color: var(--static); margin: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .steps-grid, .plans-grid-public,
  .mockup-steps-grid, .capabilities-grid, .personas-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-content h1 { font-size: 32px; }
  .stats-row { grid-template-columns: 1fr; }
  .proof-breakdown { grid-template-columns: 1fr; }
  .proof-header { flex-direction: column; }
}

@media (max-width: 600px) {
  .steps-grid, .plans-grid-public,
  .mockup-steps-grid, .capabilities-grid, .personas-grid {
    grid-template-columns: 1fr;
  }
  .landing-nav { padding: 18px 20px; }
  .hero-content h1 { font-size: 26px; }
  .hero { min-height: auto; padding-top: 60px; }
  .faq-question { padding: 16px 18px; font-size: 13px; }
}
