@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   TIGHTWAD.DEV — Main Stylesheet
   Dark terminal theme, green/amber accents
   ============================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #0a0c0f;
  color: #c9d1d9;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: #4ade80; text-decoration: none; transition: color 0.2s; }
a:hover { color: #86efac; }
img, svg { max-width: 100%; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; color: #f0f6fc; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
code { font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace; font-size: 0.9em; background: #161b22; padding: 0.15em 0.4em; border-radius: 4px; color: #4ade80; }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section--dark { background: #060809; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 12, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #161b22;
  transition: border-color 0.3s;
}
.nav.scrolled { border-bottom-color: #21262d; }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 800; font-size: 1.1rem; color: #f0f6fc; }
.logo-pig { font-size: 1.3rem; }
.logo-text { font-family: 'JetBrains Mono', monospace; color: #4ade80; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { color: #8b949e; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #f0f6fc; }
.nav-github {
  display: flex; align-items: center; gap: 0.4rem;
  background: #21262d; color: #c9d1d9 !important;
  padding: 0.4rem 0.8rem; border-radius: 6px;
  border: 1px solid #30363d; font-size: 0.85rem !important;
  transition: background 0.2s, border-color 0.2s !important;
}
.nav-github:hover { background: #30363d !important; border-color: #4ade80 !important; color: #f0f6fc !important; }
.nav-toggle { display: none; background: none; border: none; color: #c9d1d9; font-size: 1.3rem; cursor: pointer; padding: 0.3rem; }

/* ---- HERO ---- */
.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(74, 222, 128, 0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(251, 191, 36, 0.03) 0%, transparent 50%);
}
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(74, 222, 128, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 222, 128, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero .container { position: relative; z-index: 1; }
.hero-terminal-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #0d1117; border: 1px solid #21262d;
  border-radius: 20px; padding: 0.3rem 0.9rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem; color: #8b949e; margin-bottom: 1.5rem;
}
.badge-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-headline {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.headline-accent {
  color: #4ade80;
  display: inline-block;
  min-width: 2ch;
}
.cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: #4ade80;
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #8b949e; max-width: 700px;
  margin-bottom: 2.5rem; line-height: 1.7;
}
.hero-sub strong { color: #f0f6fc; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.6rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.2s; cursor: pointer; border: none;
  text-decoration: none;
}
.btn-primary {
  background: #4ade80; color: #0a0c0f;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}
.btn-primary:hover { background: #86efac; color: #0a0c0f; box-shadow: 0 0 30px rgba(74, 222, 128, 0.5); transform: translateY(-1px); }
.btn-secondary { background: #21262d; color: #c9d1d9; border: 1px solid #30363d; }
.btn-secondary:hover { background: #30363d; color: #f0f6fc; border-color: #4ade80; transform: translateY(-1px); }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* ---- HERO STATS ---- */
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: #0d1117; border: 1px solid #21262d;
  border-radius: 12px; padding: 1.2rem 1.5rem;
  margin-bottom: 2.5rem; flex-wrap: wrap; gap: 0;
}
.stat { text-align: center; padding: 0.5rem 1.5rem; }
.stat-num { display: block; font-size: 1.6rem; font-weight: 800; color: #4ade80; font-family: 'JetBrains Mono', monospace; }
.stat-label { display: block; font-size: 0.75rem; color: #8b949e; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: #21262d; }

/* ---- HERO CODE BLOCK ---- */
.hero-code {
  background: #0d1117; border: 1px solid #21262d;
  border-radius: 12px; overflow: hidden;
  max-width: 700px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.code-header {
  background: #161b22; padding: 0.6rem 1rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.code-dot { width: 12px; height: 12px; border-radius: 50%; }
.code-dot.red { background: #ff5f57; }
.code-dot.yellow { background: #febc2e; }
.code-dot.green { background: #28c840; }
.code-title { margin-left: auto; font-size: 0.75rem; color: #484f58; font-family: 'JetBrains Mono', monospace; }
.code-body {
  padding: 1.2rem 1.5rem;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.85rem; line-height: 1.8;
  overflow-x: auto; color: #c9d1d9;
}

/* ---- SYNTAX COLORS ---- */
.c-prompt { color: #4ade80; }
.c-green { color: #4ade80; }
.c-amber { color: #fbbf24; }
.c-dim { color: #484f58; }
.c-key { color: #79c0ff; }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block; margin-bottom: 0.8rem;
  font-family: 'JetBrains Mono', monospace; font-size: 0.8rem;
  color: #4ade80; letter-spacing: 0.05em;
}
.section-sub { color: #8b949e; max-width: 600px; margin: 0.8rem auto 0; font-size: 1.05rem; }

/* ---- MODES GRID ---- */
.modes-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-bottom: 4rem;
}
.mode-card {
  background: #0d1117; border: 1px solid #21262d;
  border-radius: 16px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}
.mode-card:hover { border-color: #30363d; transform: translateY(-2px); }
.mode-card--featured { border-color: #4ade80; background: linear-gradient(135deg, #0d1117 0%, #0a1a0f 100%); }
.mode-card--featured:hover { border-color: #86efac; }
.mode-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: #4ade80; color: #0a0c0f;
  font-size: 0.7rem; font-weight: 800;
  padding: 0.25rem 0.6rem; border-radius: 4px;
  letter-spacing: 0.05em;
}
.mode-number { font-size: 3rem; font-weight: 900; color: #21262d; font-family: 'JetBrains Mono', monospace; line-height: 1; margin-bottom: 0.5rem; }
.mode-card--featured .mode-number { color: rgba(74,222,128,0.15); }
.mode-title { font-size: 1.4rem; margin-bottom: 1rem; color: #f0f6fc; }
.mode-desc { color: #8b949e; margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.7; }
.mode-desc strong { color: #c9d1d9; }

/* ---- ASCII DIAGRAMS ---- */
.diagram { margin: 1.5rem 0; }
.ascii-art {
  background: #060809; border: 1px solid #161b22;
  border-radius: 8px; padding: 1rem 1.2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem; line-height: 1.6;
  color: #8b949e; overflow-x: auto;
  white-space: pre;
}

/* ---- MODE FEATURES ---- */
.mode-features { margin-top: 1rem; }
.mode-features li { display: flex; align-items: flex-start; gap: 0.5rem; padding: 0.3rem 0; font-size: 0.9rem; color: #8b949e; }
.check { color: #4ade80; font-weight: 700; flex-shrink: 0; }

/* ---- SPECULATION EXPLAINER ---- */
.speculation-explainer {
  background: #0d1117; border: 1px solid #21262d;
  border-radius: 16px; padding: 2.5rem;
}
.speculation-explainer h3 { text-align: center; margin-bottom: 2rem; font-size: 1.3rem; }
.steps-row {
  display: flex; align-items: flex-start; gap: 0.5rem;
  flex-wrap: wrap; justify-content: center;
}
.step { flex: 1; min-width: 140px; max-width: 180px; text-align: center; }
.step-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.step h4 { color: #4ade80; margin-bottom: 0.4rem; font-size: 1rem; }
.step p { font-size: 0.85rem; color: #8b949e; line-height: 1.5; }
.step-arrow { font-size: 1.5rem; color: #30363d; padding-top: 1.5rem; flex-shrink: 0; }

/* ---- BENCHMARKS ---- */
.bench-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; margin-bottom: 4rem; align-items: start; }
.bench-table-wrap { overflow-x: auto; }
.bench-table { width: 100%; border-collapse: collapse; }
.bench-table th {
  background: #161b22; color: #8b949e;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.8rem 1rem; text-align: left;
  border-bottom: 1px solid #21262d;
}
.bench-table td {
  padding: 0.8rem 1rem; border-bottom: 1px solid #0d1117;
  font-size: 0.9rem; vertical-align: middle;
}
.bench-table tr:hover td { background: rgba(255,255,255,0.02); }
.bench-row--top td { color: #4ade80; }
.bench-row--avg { background: rgba(74,222,128,0.04); }
.bench-row--avg td { border-top: 1px solid #21262d; }
.prompt-icon { margin-right: 0.3rem; }
.rate-bar-wrap { display: flex; align-items: center; gap: 0.6rem; min-width: 160px; }
.rate-bar {
  flex: 1; height: 8px; background: #161b22; border-radius: 4px; overflow: hidden;
  position: relative;
}
.rate-bar::after {
  content: ''; position: absolute; inset-block: 0; left: 0;
  width: var(--pct); background: #4ade80; border-radius: 4px;
  animation: bar-grow 1.2s ease-out both;
}
.rate-bar--avg::after { background: linear-gradient(90deg, #4ade80, #fbbf24); }
@keyframes bar-grow { from { width: 0; } to { width: var(--pct); } }
.rate-num { font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; color: #c9d1d9; min-width: 40px; }
.bench-vibe { color: #484f58; font-size: 0.82rem; font-style: italic; }

/* ---- BENCH SIDEBAR ---- */
.bench-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.bench-callout {
  background: #0d1117; border: 1px solid #21262d;
  border-radius: 12px; padding: 1.2rem;
}
.bench-callout--green { border-color: rgba(74,222,128,0.3); background: rgba(74,222,128,0.04); }
.bench-callout--amber { border-color: rgba(251,191,36,0.3); background: rgba(251,191,36,0.04); }
.callout-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.bench-callout h4 { font-size: 0.9rem; margin-bottom: 0.4rem; color: #f0f6fc; }
.bench-callout p { font-size: 0.82rem; color: #8b949e; line-height: 1.6; }

/* ---- CALCULATOR ---- */
.calculator {
  background: #0d1117; border: 1px solid #21262d;
  border-radius: 16px; padding: 2.5rem;
  margin-top: 2rem;
}
.calc-header { text-align: center; margin-bottom: 2rem; }
.calc-header h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.calc-header p { color: #8b949e; font-size: 0.95rem; }
.calc-body {}
.calc-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.calc-input-group label { display: block; font-size: 0.85rem; color: #8b949e; margin-bottom: 0.6rem; }
.slider-row { display: flex; align-items: center; gap: 1rem; }
.slider {
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 6px; background: #21262d; border-radius: 3px; outline: none;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: #4ade80; cursor: pointer;
  box-shadow: 0 0 10px rgba(74,222,128,0.4);
}
.slider::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: #4ade80; cursor: pointer; border: none;
}
.slider-val { font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; color: #4ade80; min-width: 50px; }
.calc-results {
  display: flex; align-items: center; gap: 1.5rem;
  background: #060809; border: 1px solid #161b22;
  border-radius: 12px; padding: 1.5rem 2rem;
  flex-wrap: wrap; justify-content: center;
  margin-bottom: 1rem;
}
.calc-result { text-align: center; }
.result-label { display: block; font-size: 0.82rem; color: #8b949e; margin-bottom: 0.3rem; }
.result-val { display: block; font-size: 1.6rem; font-weight: 800; font-family: 'JetBrains Mono', monospace; }
.calc-result--bad .result-val { color: #f85149; }
.calc-result--good .result-val { color: #4ade80; }
.calc-arrow { font-size: 1.5rem; color: #30363d; }
.calc-savings { text-align: center; background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3); border-radius: 8px; padding: 0.8rem 1.5rem; }
.savings-label { display: block; font-size: 0.78rem; color: #8b949e; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.savings-val { display: block; font-size: 1.8rem; font-weight: 900; color: #4ade80; font-family: 'JetBrains Mono', monospace; }
.calc-disclaimer { font-size: 0.78rem; color: #484f58; text-align: center; line-height: 1.5; }

/* ---- USE CASES ---- */
.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.use-card {
  background: #0d1117; border: 1px solid #21262d;
  border-radius: 16px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}
.use-card:hover { border-color: #30363d; transform: translateY(-2px); }
.use-card--featured { border-color: rgba(251,191,36,0.4); background: linear-gradient(135deg, #0d1117, #120f08); }
.use-card--featured:hover { border-color: #fbbf24; }
.use-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: #fbbf24; color: #0a0c0f;
  font-size: 0.68rem; font-weight: 800;
  padding: 0.2rem 0.5rem; border-radius: 4px;
  letter-spacing: 0.05em;
}
.use-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.use-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; color: #f0f6fc; }
.use-desc { color: #8b949e; font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.use-tag {
  display: inline-block; background: #161b22; border: 1px solid #21262d;
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: #4ade80;
  padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 1rem;
}
.use-list li { font-size: 0.88rem; color: #8b949e; padding: 0.25rem 0; padding-left: 1rem; position: relative; }
.use-list li::before { content: '→'; position: absolute; left: 0; color: #4ade80; font-size: 0.8rem; }

/* ---- QUICK START ---- */
.quickstart-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; }
.tab-btn {
  background: #0d1117; border: 1px solid #21262d;
  color: #8b949e; padding: 0.6rem 1.2rem;
  border-radius: 8px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.tab-btn:hover { border-color: #30363d; color: #c9d1d9; }
.tab-btn--active { background: #4ade80; color: #0a0c0f; border-color: #4ade80; }
.tab-content { display: none; }
.tab-content--active { display: block; }
.steps-list { display: flex; flex-direction: column; gap: 0; }
.qs-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem 0; border-bottom: 1px solid #0d1117;
}
.qs-step:last-child { border-bottom: none; }
.qs-step-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: #4ade80; color: #0a0c0f;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: 'JetBrains Mono', monospace; font-size: 0.9rem;
}
.qs-step-body { flex: 1; }
.qs-step-body h4 { font-size: 1rem; margin-bottom: 0.8rem; color: #f0f6fc; }
.code-block { background: #0d1117; border: 1px solid #21262d; border-radius: 10px; overflow: hidden; }
.code-block-header {
  background: #161b22; padding: 0.5rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: #484f58;
}
.copy-btn {
  background: #21262d; border: 1px solid #30363d; color: #8b949e;
  font-size: 0.72rem; padding: 0.2rem 0.6rem; border-radius: 4px;
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.copy-btn:hover { background: #30363d; color: #c9d1d9; }
.copy-btn.copied { background: rgba(74,222,128,0.1); color: #4ade80; border-color: #4ade80; }
.code-block pre {
  padding: 1.2rem 1.5rem;
  font-family: 'JetBrains Mono', monospace; font-size: 0.83rem;
  line-height: 1.8; overflow-x: auto; color: #c9d1d9;
}

/* ---- FEATURES GRID ---- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-item {
  background: #0d1117; border: 1px solid #21262d;
  border-radius: 12px; padding: 1.5rem;
  transition: border-color 0.3s, transform 0.2s;
}
.feature-item:hover { border-color: #30363d; transform: translateY(-2px); }
.feature-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.feature-item h4 { font-size: 0.95rem; margin-bottom: 0.5rem; color: #f0f6fc; }
.feature-item p { font-size: 0.85rem; color: #8b949e; line-height: 1.6; }
.feature-item code { font-size: 0.78em; }

/* ---- FOOTER ---- */
.footer { background: #060809; border-top: 1px solid #161b22; padding: 4rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-tagline { color: #8b949e; font-size: 0.9rem; margin-top: 0.8rem; line-height: 1.6; }
.footer-badge { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.badge-pill {
  background: #0d1117; border: 1px solid #21262d;
  font-size: 0.72rem; color: #8b949e;
  padding: 0.2rem 0.6rem; border-radius: 20px;
  font-family: 'JetBrains Mono', monospace;
}
.footer-links-col h5 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: #484f58; margin-bottom: 1rem; }
.footer-links-col ul li { margin-bottom: 0.5rem; }
.footer-links-col ul li a { color: #8b949e; font-size: 0.88rem; }
.footer-links-col ul li a:hover { color: #4ade80; }
.footer-bottom { border-top: 1px solid #161b22; padding-top: 1.5rem; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: #484f58; margin-bottom: 0.5rem; }
.footer-sub { color: #30363d !important; font-size: 0.78rem !important; margin-top: 0.5rem; }

/* ---- SCROLL ANIMATIONS ---- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- MOBILE RESPONSIVE ---- */
@media (max-width: 900px) {
  .modes-grid { grid-template-columns: 1fr; }
  .bench-layout { grid-template-columns: 1fr; }
  .bench-sidebar { flex-direction: row; flex-wrap: wrap; }
  .bench-callout { flex: 1; min-width: 200px; }
  .cards-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .calc-inputs { grid-template-columns: 1fr; }
  .calc-results { flex-direction: column; align-items: stretch; text-align: center; }
  .calc-arrow { transform: rotate(90deg); }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: #0a0c0f; border-bottom: 1px solid #21262d; padding: 1rem 1.5rem; gap: 0.8rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 90px 0 60px; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat-divider { width: 100%; height: 1px; }
  .stat { width: 100%; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .qs-step { flex-direction: column; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .bench-sidebar { flex-direction: column; }
}

/* ---- FONT IMPORT ---- */

