/* ==========================================================================
   Stone & Prism — Design System
   ========================================================================== */

/* --- Fonts --- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(assets/fonts/fraunces-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(assets/fonts/plus-jakarta-sans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url(assets/fonts/jetbrains-mono-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Custom Properties --- */
:root {
  --bg: #0f1117;
  --bg-surface: rgba(255, 255, 255, 0.06);
  --bg-surface-hover: rgba(255, 255, 255, 0.09);
  --bg-elevated: rgba(255, 255, 255, 0.10);
  --text-primary: #f5f5f5;
  --text-body: #d1d5db;
  --text-secondary: #b0b6c3;
  --text-muted: #8891a0;
  --accent: #e8b04a;
  --accent-light: #f2ca6e;
  --accent-dim: rgba(232, 176, 74, 0.15);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);

  /* Prism spectrum — brighter for visibility */
  --prism-amber: #eab543;
  --prism-coral: #e87461;
  --prism-violet: #b294e8;
  --prism-blue: #6fa3e8;

  /* Typography */
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

  /* Spacing */
  --container: 1140px;
  --section-gap: 5rem;
  --section-gap-mobile: 3.5rem;
}

/* --- Reset + Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 15% 30%, rgba(232, 176, 74, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 55%, rgba(178, 148, 232, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 40% 85%, rgba(111, 163, 232, 0.05) 0%, transparent 60%);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  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)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* --- Typography --- */
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.6rem, 5vw, 3.75rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
}

p {
  color: var(--text-body);
  font-size: 1.065rem;
  max-width: 65ch;
  line-height: 1.75;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-light);
}

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--section-gap) 0;
}

/* --- Label / Eyebrow --- */
.label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

/* ==========================================================================
   Prism Motif
   ========================================================================== */

.prism-line {
  position: relative;
  height: 3px;
  margin: 1.5rem 0 0;
  overflow: visible;
}

.prism-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
}

.prism-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: -2px;
  width: 55%;
  height: 7px;
  background: linear-gradient(
    90deg,
    var(--prism-amber) 0%,
    var(--prism-coral) 30%,
    var(--prism-violet) 65%,
    var(--prism-blue) 100%
  );
  border-radius: 2px;
}

/* Triangle where refraction happens */
.prism-triangle {
  position: absolute;
  left: 38%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 18px solid rgba(255, 255, 255, 0.12);
}

/* Prism divider (smaller version for between sections) */
.prism-divider {
  position: relative;
  height: 2px;
  margin: 0 auto;
  max-width: 300px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--prism-amber) 20%,
    var(--prism-coral) 40%,
    var(--prism-violet) 60%,
    var(--prism-blue) 80%,
    transparent
  );
  opacity: 0.6;
}

/* Animated prism (triggers on scroll) */
.prism-line.animate::before {
  animation: prism-enter 0.8s ease-out forwards;
}

.prism-line.animate::after {
  animation: prism-refract 0.6s ease-out 0.4s forwards;
  opacity: 0;
}

.prism-line.animate .prism-triangle {
  animation: prism-glow 0.3s ease-out 0.35s forwards;
  opacity: 0;
}

@keyframes prism-enter {
  from { width: 0; }
  to { width: 40%; }
}

@keyframes prism-refract {
  from { width: 0; opacity: 0; }
  to { width: 55%; opacity: 1; }
}

@keyframes prism-glow {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* ==========================================================================
   Nav
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(15, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nav__logo:hover {
  color: var(--text-primary);
}

.nav__logo-img {
  height: 22px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.nav__links a:hover {
  color: var(--text-primary);
}

.nav__cta {
  padding: 0.45rem 1.1rem;
  background: var(--accent);
  color: #111 !important;
  border-radius: 5px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}

.nav__cta:hover {
  background: var(--accent-light) !important;
  color: #111 !important;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

/* Ambient glow behind hero content */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 176, 74, 0.06) 0%,
    rgba(178, 148, 232, 0.03) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

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

.hero .subline {
  font-size: 1.2rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  max-width: 50ch;
  line-height: 1.7;
}

/* CTA Form */
.cta-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 640px;
}

.cta-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--bg-surface);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}

.cta-form input::placeholder {
  color: var(--text-muted);
}

.cta-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-surface-hover);
}

.cta-form button {
  padding: 0.9rem 2.25rem;
  border: none;
  border-radius: 6px;
  background: var(--accent);
  color: #111;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.cta-form button:hover {
  background: var(--accent-light);
}

.cta-form button:active {
  transform: scale(0.98);
}

/* ==========================================================================
   Problem Section
   ========================================================================== */

.problem {
  position: relative;
  padding-top: 3.5rem;
}

.problem h2 {
  margin-bottom: 1.5rem;
  max-width: 20ch;
}

.problem .lead {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  max-width: 60ch;
  line-height: 1.75;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.problem-card {
  padding: 1.75rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.problem-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-surface-hover);
}

.problem-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   Sample Report Preview
   ========================================================================== */

.sample-report {
  position: relative;
}

.sample-report h2 {
  margin-bottom: 1rem;
}

.sample-report .section-desc {
  margin-bottom: 3rem;
  max-width: 55ch;
}

.report-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.report-card {
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.report-card .card-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.report-card h3 {
  margin-bottom: 0.75rem;
}

.report-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

/* Data viz: Competitive comparison bars */
.viz-bars {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.viz-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.viz-bar__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  width: 100px;
  flex-shrink: 0;
  text-align: right;
}

.viz-bar__track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  overflow: hidden;
}

.viz-bar__fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease-out;
}

.viz-bar__fill--you {
  background: var(--accent);
}

.viz-bar__fill--comp {
  background: var(--prism-blue);
  opacity: 0.7;
}

.viz-bar__value {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-body);
  width: 40px;
}

/* Data viz: Radar/spider chart (SVG) */
.viz-radar {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

/* Data viz: Gap indicators */
.viz-gaps {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.viz-gap-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.viz-gap-row__label {
  font-size: 0.92rem;
  color: var(--text-body);
}

.viz-gap-row__status {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  font-weight: 500;
}

.viz-gap-row__status--gap {
  background: rgba(232, 116, 97, 0.18);
  color: var(--prism-coral);
}

.viz-gap-row__status--ok {
  background: rgba(234, 181, 67, 0.18);
  color: var(--accent);
}

.viz-gap-row__status--strong {
  background: rgba(111, 163, 232, 0.18);
  color: var(--prism-blue);
}

/* Review platform breakdown */
.viz-reviews-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.viz-review-platform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.viz-review-platform:last-child {
  border-bottom: none;
}

.viz-review-platform__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.viz-review-platform__name {
  font-size: 0.92rem;
  color: var(--text-body);
  font-weight: 500;
}

.viz-review-platform__score {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

.viz-review-platform__score--warning {
  color: var(--prism-coral);
}

.viz-review-platform__count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   How It Works
   ========================================================================== */

.how-it-works h2 {
  margin-bottom: 1rem;
}

.how-it-works .section-desc {
  margin-bottom: 3rem;
  max-width: 55ch;
}

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

/* Connector line between steps */
.steps::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--border),
    var(--accent) 50%,
    var(--border)
  );
  opacity: 0.5;
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0 auto;
  line-height: 1.65;
}

/* ==========================================================================
   What You Get
   ========================================================================== */

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

.deliverables .section-desc {
  margin-bottom: 3rem;
  max-width: 55ch;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.deliverable-card {
  padding: 1.75rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.deliverable-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-surface-hover);
}

.deliverable-card .card-icon {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
  font-weight: 500;
}

.deliverable-card h3 {
  margin-bottom: 0.5rem;
}

.deliverable-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
  position: relative;
}

.about__inner {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.about__photo {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__photo-placeholder {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about__text h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.about__text p {
  margin-bottom: 0.75rem;
}

.about__text p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Bottom CTA
   ========================================================================== */

.bottom-cta {
  text-align: center;
  padding: var(--section-gap) 0;
}

.bottom-cta h2 {
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.bottom-cta .section-desc {
  margin: 0 auto 2.5rem;
}

.bottom-cta .cta-form {
  justify-content: center;
  max-width: 640px;
  margin: 0 auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 auto;
}

.footer a {
  color: var(--text-secondary);
}

.footer a:hover {
  color: var(--accent);
}

.footer__links {
  margin-top: 0.5rem;
}

.footer__links a {
  margin: 0 0.75rem;
}

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

.faq h2 {
  margin-bottom: 2rem;
}

.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-item summary {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--accent);
}

.faq-item p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 60ch;
}

/* ==========================================================================
   Design Enhancements — Motion, Glow, Polish
   ========================================================================== */

/* CTA button subtle ambient glow */
.cta-form button {
  box-shadow: 0 0 20px rgba(232, 176, 74, 0.2), 0 0 60px rgba(232, 176, 74, 0.06);
}

.cta-form button:hover {
  box-shadow: 0 0 25px rgba(232, 176, 74, 0.3), 0 0 80px rgba(232, 176, 74, 0.1);
}

/* Card hover: soft glow lift */
.problem-card:hover,
.deliverable-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 40px rgba(232, 176, 74, 0.04);
  transform: translateY(-2px);
}

.problem-card,
.deliverable-card {
  transition: border-color 0.2s, background 0.2s, box-shadow 0.3s, transform 0.3s;
}

/* Report cards: prism spectrum top accent */
.report-card {
  position: relative;
  overflow: hidden;
}

.report-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--prism-amber), var(--prism-coral), var(--prism-violet), var(--prism-blue));
}

/* Scroll-triggered reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children reveal */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }

/* Step number hover glow */
.step__number {
  transition: box-shadow 0.3s, border-color 0.3s;
}

.step:hover .step__number {
  box-shadow: 0 0 16px rgba(232, 176, 74, 0.2);
  border-color: var(--accent-light);
}

/* About photo subtle border glow on section visible */
.about__photo {
  transition: box-shadow 0.5s;
}

.about.visible .about__photo {
  box-shadow: 0 0 30px rgba(232, 176, 74, 0.08);
}

/* Viz bar "your business" row highlight */
.viz-bar__fill--you {
  box-shadow: 0 0 8px rgba(232, 176, 74, 0.3);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
  section {
    padding: var(--section-gap-mobile) 0;
  }

  .nav__links a:not(.nav__cta) {
    display: none;
  }

  .nav__links {
    gap: 0;
  }

  .hero {
    padding: 3rem 0 1rem;
  }

  .report-preview {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .steps::before {
    display: none;
  }

  .step {
    text-align: left;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .step__number {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .step p {
    margin: 0;
  }

  .about__inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about__photo {
    width: 110px;
    height: 110px;
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cta-form {
    flex-direction: column;
  }

  .cta-form input {
    min-width: 100%;
  }

  .cta-form button {
    width: 100%;
  }
}

/* Honeypot — hidden from humans, bots fill it in */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.cta-form__status { margin-top: 0.5rem; font-size: 0.875rem; }
.cta-form__success { color: #d4a053; font-size: 1.05rem; line-height: 1.6; padding: 1rem 0; }
