/* FlatRatePortaPotty design system — shared by every page.
   v2 — 2026-06 redesign inspired by milaquote.com DNA.
*/

:root {
  --red: #DC2626;
  --red-dark: #B91C1C;
  --red-soft: #FEE2E2;
  --ink: #0A0A0A;
  --ink-soft: #1F1F1F;
  --body: #4B5563;
  --mute: #6B7280;
  --line: #E5E7EB;
  --line-soft: #F3F4F6;
  --bg: #FFFFFF;
  --panel: #FAFAFA;
  --panel-dark: #0A0A0A;
  --star: #F59E0B;
  --green: #10B981;
  --r-pill: 9999px;
  --r-card: 18px;
  --r-soft: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 12px 32px -8px rgba(0,0,0,0.10), 0 4px 12px -2px rgba(0,0,0,0.04);
  --shadow-lg: 0 24px 60px -12px rgba(0,0,0,0.16);
  --shadow-red: 0 8px 24px -4px rgba(220, 38, 38, 0.32);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; }
@media (max-width: 720px) { .container { padding: 0 18px; } }

/* ── Navigation ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.86);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; font-size: 22px; color: var(--ink); }
.brand-mark {
  width: 30px; height: 30px;
  background: var(--red);
  border-radius: 4px;
  position: relative;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.brand-mark::after { content: ''; position: absolute; inset: 4px; background: var(--bg); border-radius: 2px; }
.brand-mark::before { content: ''; position: absolute; inset: 8px; background: var(--red); border-radius: 1px; }
.brand-text { letter-spacing: -0.03em; }
.brand-text span { color: var(--red); }

.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-link {
  padding: 10px 18px;
  font-weight: 500; font-size: 15px; color: var(--ink-soft);
  border-radius: var(--r-pill);
  transition: all 0.18s var(--ease);
}
.nav-link:hover { background: var(--line-soft); color: var(--ink); }
.nav-link.active { background: var(--ink); color: white; }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-icon-btn {
  width: 40px; height: 40px; border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  transition: background 0.18s var(--ease);
}
.nav-icon-btn:hover { background: var(--line-soft); }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: var(--r-pill); align-items: center; justify-content: center; }
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
.nav-links.mobile-open {
  display: flex;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--bg);
  flex-direction: column;
  align-items: stretch;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  gap: 4px;
}
.nav-links.mobile-open .nav-link { padding: 14px 18px; }

/* ── Hero (homepage only) ── */
.hero { padding: 88px 0 96px; text-align: center; position: relative; overflow: hidden; }
@media (max-width: 720px) { .hero { padding: 56px 0 56px; } }

/* When the hero has a background image, layer it under a soft scrim
   so the form stays readable but the photo is still clearly visible. */
.hero-with-bg .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 70%;
  background-repeat: no-repeat;
  opacity: 0.72;
  z-index: 0;
}
.hero-with-bg .hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 32%, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.55) 40%, rgba(255,255,255,0.15) 75%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0) 70%, rgba(255,255,255,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-with-bg .container { position: relative; z-index: 2; }
@media (max-width: 720px) {
  .hero-with-bg .hero-bg { opacity: 0.55; background-position: center 90%; }
  .hero-with-bg .hero-scrim {
    background:
      radial-gradient(ellipse 90% 50% at 50% 28%, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.62) 50%, rgba(255,255,255,0.22) 100%),
      linear-gradient(180deg, rgba(255,255,255,0.50) 0%, rgba(255,255,255,0) 35%, rgba(255,255,255,0.45) 100%);
  }
}

/* ── Ratings strip (multi-platform trust signals) ── */
.ratings {
  padding: 28px 0 56px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
}
.ratings-eyebrow {
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mute);
  margin-bottom: 22px;
}
.ratings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .ratings-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.rating-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
  transition: transform 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.rating-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.rating-platform {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.rating-stars {
  display: inline-flex; gap: 2px;
  color: var(--star);
  margin: 2px 0;
  line-height: 0;
}
.rating-stars svg { width: 16px; height: 16px; display: inline-block; }
.rating-value {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-feature-settings: 'tnum';
  line-height: 1;
  margin-top: 2px;
}
.rating-value .red { color: var(--red); }
.rating-meta {
  font-size: 12px;
  color: var(--mute);
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 920px;
  margin: 0 auto 18px;
}
.hero h1 .accent { color: var(--red); display: inline-block; position: relative; }
.hero-sub { font-size: 17px; color: var(--mute); max-width: 640px; margin: 0 auto 22px; font-weight: 500; }
.stars-row { display: inline-flex; gap: 10px; align-items: center; margin-bottom: 18px; font-size: 14px; color: var(--mute); font-weight: 500; }
.stars { color: var(--star); display: inline-flex; gap: 2px; line-height: 0; }
.stars svg { width: 16px; height: 16px; display: inline-block; }
.reviews-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--line-soft);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-weight: 600; color: var(--ink-soft); font-size: 13px;
}
.quote-form {
  display: flex; align-items: center; gap: 8px;
  max-width: 560px; margin: 0 auto;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 24px;
  box-shadow: var(--shadow-md);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.quote-form:focus-within { border-color: var(--red); box-shadow: 0 0 0 4px var(--red-soft), var(--shadow-md); }
.quote-form input {
  flex: 1; border: none; outline: none;
  font-family: inherit; font-size: 16px; font-weight: 500;
  color: var(--ink); background: transparent;
  padding: 14px 0;
}
.quote-form input::placeholder { color: var(--mute); font-weight: 500; }
.quote-cta {
  background: var(--red); color: white;
  font-weight: 700; font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 0.18s var(--ease), transform 0.15s var(--ease), box-shadow 0.18s var(--ease);
  box-shadow: var(--shadow-red);
  letter-spacing: -0.005em;
}
.quote-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.quote-cta:active { transform: translateY(0); }
@media (max-width: 540px) {
  .quote-form { flex-direction: column; padding: 14px; gap: 10px; border-radius: 22px; }
  .quote-form input { padding: 12px 14px; width: 100%; text-align: center; }
  .quote-cta { width: 100%; justify-content: center; padding: 16px; }
}
.hero-ticks { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-top: 22px; font-size: 14px; color: var(--mute); font-weight: 500; }
.hero-ticks span { display: inline-flex; align-items: center; gap: 6px; }
.hero-ticks svg { color: var(--green); flex-shrink: 0; }
.hero-image-wrap { display: none; }

/* ── Sub-page hero (used by all non-homepage pages) ── */
.subhero {
  padding: 80px 0 56px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 720px) { .subhero { padding: 48px 0 36px; } }
.subhero .eyebrow-line {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--mute);
}
.subhero .eyebrow-line a { color: var(--ink); font-weight: 600; }
.subhero .eyebrow-line a:hover { color: var(--red); }
.subhero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--ink);
  max-width: 880px; margin: 0 auto 18px;
}
.subhero h1 .accent { color: var(--red); }
.subhero .lede {
  font-size: 18px; color: var(--mute);
  font-weight: 500; max-width: 640px; margin: 0 auto 32px;
  line-height: 1.55;
}
.subhero .quote-form { max-width: 460px; }

/* ── Trust strip ── */
.trust { padding: 24px 0 64px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
@media (max-width: 720px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
.trust-item { background: var(--bg); padding: 28px 24px; text-align: center; }
.trust-num { font-size: 36px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px; font-feature-settings: 'tnum'; }
.trust-num .red { color: var(--red); }
.trust-label { font-size: 13px; color: var(--mute); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

/* ── Section base ── */
.section { padding: 88px 0; }
@media (max-width: 720px) { .section { padding: 56px 0; } }
.section.tight { padding: 56px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--red); margin-bottom: 14px;
  background: var(--red-soft); padding: 4px 10px;
  border-radius: var(--r-pill);
}
.h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.028em; line-height: 1.1; color: var(--ink); margin-bottom: 12px; }
.h2 .accent { color: var(--red); }
.lede { font-size: 17px; color: var(--mute); font-weight: 500; max-width: 580px; margin: 0 auto; }

/* ── Prose body (for about/legal/long-form content) ── */
.prose { max-width: 720px; margin: 0 auto; font-size: 17px; line-height: 1.7; color: var(--body); }
.prose h2 { font-size: 28px; font-weight: 800; color: var(--ink); margin: 48px 0 14px; letter-spacing: -0.02em; line-height: 1.2; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 21px; font-weight: 700; color: var(--ink); margin: 32px 0 10px; letter-spacing: -0.015em; }
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { margin: 0 0 22px; padding-left: 24px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--red); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose blockquote { border-left: 3px solid var(--red); padding: 6px 0 6px 24px; margin: 24px 0; color: var(--ink); font-style: normal; font-weight: 500; font-size: 18px; }

/* ── How it works ── (legacy, kept for sub-pages still using sec.features) */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .how-grid { grid-template-columns: 1fr; } }
.how-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-card); padding: 36px 32px; position: relative; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease); }
.how-card:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: var(--shadow-md); }
.how-num { font-family: "JetBrains Mono", monospace; font-size: 13px; font-weight: 500; color: var(--red); margin-bottom: 16px; letter-spacing: 0.04em; }
.how-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 8px; line-height: 1.2; }
.how-card p { color: var(--body); font-size: 15px; line-height: 1.6; }
.how-card-icon { width: 44px; height: 44px; margin-bottom: 22px; display: inline-flex; align-items: center; justify-content: center; background: var(--ink); border-radius: 12px; color: white; }
.how-card-icon svg { width: 22px; height: 22px; display: block; }

/* ── Editorial "How it works" — asymmetric, large numbers, single column with vertical guide ── */
.process {
  background: var(--bg);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.process .container { position: relative; }
.process-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 880px) {
  .process { padding: 72px 0 56px; }
  .process-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px; align-items: start; }
}
.process-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.process-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--red);
}
.process-h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}
.process-h2 .accent { color: var(--red); }
.process-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  font-weight: 500;
  max-width: 480px;
}
.process-steps {
  border-top: 1px solid var(--line);
}
.process-step {
  display: grid;
  grid-template-columns: 1fr 1.3fr 2fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
@media (max-width: 880px) {
  .process-step { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
}
.process-num {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(64px, 9vw, 112px);
  font-weight: 500;
  line-height: 0.85;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.process-num .accent { color: var(--red); }
.process-title {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0;
}
.process-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
}
.process-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 5px 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.process-meta-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ── Pricing — featured price + sidebar list (asymmetric) ── */
.pricing-edit {
  background: var(--panel);
  padding: 100px 0;
  position: relative;
  border-top: 1px solid var(--line);
}
@media (max-width: 880px) { .pricing-edit { padding: 64px 0; } }
.pricing-edit .container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
@media (max-width: 1000px) { .pricing-edit .container { grid-template-columns: 1fr; gap: 48px; } }
.pricing-edit-intro h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.05;
  margin: 12px 0 16px;
  color: var(--ink);
}
.pricing-edit-intro h2 .accent { color: var(--red); }
.pricing-edit-intro p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.65;
  max-width: 440px;
}
.pricing-edit-intro ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.pricing-edit-intro li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--ink-soft); font-weight: 500;
}
.pricing-edit-intro li .pricing-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.pricing-edit-intro li .pricing-check svg { width: 11px; height: 11px; display: block; }

.pricing-featured {
  background: var(--bg);
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px -16px rgba(0,0,0,0.18), 0 6px 18px -4px rgba(0,0,0,0.06);
  border: 1px solid var(--line);
}
.pricing-featured-top {
  background: var(--ink);
  color: white;
  padding: 28px 32px 24px;
  position: relative;
  overflow: hidden;
}
.pricing-featured-top::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(220,38,38,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.pricing-featured-tag {
  position: relative;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.pricing-featured-tag::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulseRed 2s infinite;
}
@keyframes pulseRed { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.pricing-featured-name { position: relative; font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 4px; }
.pricing-featured-price {
  position: relative;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1;
  font-feature-settings: 'tnum';
  margin-bottom: 6px;
}
.pricing-featured-price .red { color: var(--red); }
.pricing-featured-price .currency { font-size: 0.55em; font-weight: 600; color: rgba(255,255,255,0.6); margin-right: 4px; vertical-align: top; line-height: 1; }
.pricing-featured-price .unit { font-size: 0.32em; font-weight: 500; color: rgba(255,255,255,0.55); letter-spacing: 0; margin-left: 8px; }
.pricing-featured-sub { position: relative; font-size: 13px; color: rgba(255,255,255,0.55); }

.pricing-secondary { padding: 0; }
.pricing-secondary-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 32px;
  border-top: 1px solid var(--line);
  transition: background 0.18s var(--ease);
}
.pricing-secondary-row:hover { background: var(--panel); }
.pricing-secondary-row:first-child { border-top: none; }
.pricing-secondary-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pricing-secondary-name small {
  display: block;
  font-weight: 500;
  font-size: 12.5px;
  color: var(--mute);
  margin-top: 3px;
  letter-spacing: 0;
}
.pricing-secondary-price {
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
}

/* ── Testimonials — magazine-style, asymmetric ── */
.testimonials {
  background: var(--bg);
  padding: 120px 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 880px) { .testimonials { padding: 72px 0; } }
.testimonials .container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1000px) {
  .testimonials .container { grid-template-columns: 1fr; gap: 48px; }
}
.testimonials-aside h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.05;
  color: var(--ink);
  margin: 14px 0 18px;
}
.testimonials-aside h2 .accent { color: var(--red); }
.testimonials-aside p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 24px;
}
.testimonials-aside .stars {
  display: inline-flex; gap: 3px;
  color: var(--star);
  margin-bottom: 8px;
  line-height: 0;
}
.testimonials-aside .stars svg { width: 18px; height: 18px; display: inline-block; }
.testimonials-aggregate {
  display: flex; align-items: baseline; gap: 8px;
  font-size: 13px;
  color: var(--mute);
  margin-top: 8px;
}
.testimonials-aggregate strong { color: var(--ink); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; line-height: 1; }
.testimonials-list {
  display: flex;
  flex-direction: column;
}
.testimonial {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.testimonial:first-child { padding-top: 0; }
.testimonial:last-child { border-bottom: none; }
.testimonial-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
}
.testimonial-stars {
  display: inline-flex; gap: 2px;
  color: var(--star);
  line-height: 0;
}
.testimonial-stars svg { width: 14px; height: 14px; display: inline-block; }
.testimonial-source {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mute);
}
.testimonial-quote {
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 16px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
}
.testimonial-author strong { font-weight: 700; color: var(--ink); }
.testimonial-author span { color: var(--mute); }
.testimonial-author::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--ink);
}

/* ── Industries grid (also used on hub indexes) ── */
.industries { background: var(--panel); }
.ind-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.ind-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-soft); padding: 24px 22px; display: flex; align-items: center; gap: 14px; transition: all 0.2s var(--ease); position: relative; }
.ind-card:hover { border-color: var(--red); transform: translateX(2px); box-shadow: var(--shadow-md); }
.ind-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--line-soft); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: background 0.2s var(--ease), color 0.2s var(--ease); color: var(--ink); }
.ind-icon svg { width: 22px; height: 22px; }
.ind-card:hover .ind-icon { background: var(--ink); color: white; }
.ind-name { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.3; letter-spacing: -0.01em; }

/* ── Spec card grid (for unit/size detail pages) ── */
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.spec-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-card); padding: 32px 28px; transition: transform 0.2s var(--ease), border-color 0.2s var(--ease); }
.spec-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.spec-label { font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 500; color: var(--red); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.spec-card h3 { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 8px; }
.spec-card p { color: var(--body); font-size: 15px; line-height: 1.6; }

/* ── Pricing transparency ── */
.pricing-wrap { max-width: 920px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; background: var(--bg); }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th { text-align: left; padding: 18px 24px; background: var(--ink); color: var(--bg); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.pricing-table td { padding: 22px 24px; border-bottom: 1px solid var(--line-soft); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--panel); }
.pricing-name { font-weight: 700; font-size: 15px; color: var(--ink); letter-spacing: -0.01em; }
.pricing-name small { display: block; font-weight: 500; font-size: 12px; color: var(--mute); margin-top: 3px; letter-spacing: 0; }
.pricing-price { font-family: "JetBrains Mono", monospace; font-weight: 600; font-size: 16px; color: var(--ink); white-space: nowrap; }
.pricing-note { font-size: 13px; color: var(--mute); line-height: 1.5; }

/* ── Reviews ── */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .review-grid { grid-template-columns: 1fr; } }
.review-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px; display: flex; flex-direction: column; transition: transform 0.2s var(--ease), border-color 0.2s var(--ease); }
.review-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.review-stars { color: var(--star); letter-spacing: 1px; font-size: 16px; margin-bottom: 12px; }
.review-quote { font-size: 16px; color: var(--ink-soft); font-weight: 500; line-height: 1.55; flex: 1; margin-bottom: 18px; letter-spacing: -0.005em; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--red) 0%, #7f1d1d 100%); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.review-meta { font-size: 13px; }
.review-name { font-weight: 700; color: var(--ink); }
.review-role { color: var(--mute); margin-top: 2px; }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 0; }
.faq-item summary { list-style: none; cursor: pointer; padding: 26px 0; font-size: 18px; font-weight: 600; color: var(--ink); display: flex; align-items: center; justify-content: space-between; letter-spacing: -0.015em; transition: color 0.18s var(--ease); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--red); }
.faq-toggle { width: 32px; height: 32px; border-radius: 50%; background: var(--line-soft); display: inline-flex; align-items: center; justify-content: center; color: var(--ink); transition: transform 0.25s var(--ease), background 0.18s var(--ease); flex-shrink: 0; margin-left: 16px; }
.faq-item[open] .faq-toggle { transform: rotate(45deg); background: var(--red); color: white; }
.faq-answer { padding: 0 0 26px; color: var(--body); font-size: 16px; line-height: 1.7; max-width: 680px; }

/* ── Big final CTA ── */
.final-cta { background: var(--ink); color: white; padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -100px; right: -100px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(220, 38, 38, 0.18) 0%, transparent 70%); pointer-events: none; }
.final-cta::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(220, 38, 38, 0.10) 0%, transparent 70%); pointer-events: none; }
.final-cta .container { position: relative; z-index: 1; }
.final-cta .h2 { color: white; }
.final-cta .lede { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.final-cta .quote-form { background: white; border-color: transparent; }
.final-cta .hero-ticks { color: rgba(255,255,255,0.65); }
.final-cta .hero-ticks svg { color: var(--red); }

/* ── Footer ── */
footer { background: #050505; color: rgba(255,255,255,0.75); padding: 64px 0 32px; font-size: 14px; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 880px) { .ft-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .ft-grid { grid-template-columns: 1fr; } }
.ft-brand { font-weight: 800; font-size: 22px; color: white; letter-spacing: -0.03em; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.ft-tag { color: rgba(255,255,255,0.55); max-width: 320px; line-height: 1.6; font-size: 14px; }
.ft-col h5 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.ft-col ul { list-style: none; padding: 0; margin: 0; }
.ft-col li { margin-bottom: 11px; }
.ft-col a { color: rgba(255,255,255,0.75); transition: color 0.18s var(--ease); }
.ft-col a:hover { color: white; }
.ft-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.10); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(255,255,255,0.45); }
.ft-legal { display: flex; gap: 24px; }

/* ── Multi-step Quote Modal ── */
.qmodal-backdrop {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.qmodal-backdrop.open { display: flex; opacity: 1; }
.qmodal {
  background: var(--bg); border-radius: 22px;
  width: 100%; max-width: 560px; max-height: calc(100vh - 48px);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.55), 0 8px 32px rgba(0,0,0,0.18);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s var(--ease);
}
.qmodal-backdrop.open .qmodal { transform: translateY(0) scale(1); }
@media (max-width: 600px) {
  .qmodal-backdrop { padding: 0; align-items: stretch; }
  .qmodal { border-radius: 0; max-height: 100vh; max-width: 100%; }
}
.qmodal-top { padding: 22px 28px; border-bottom: 1px solid var(--line-soft); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.qmodal-brand { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 17px; letter-spacing: -0.02em; }
.qmodal-brand .brand-mark { width: 22px; height: 22px; }
.qmodal-brand span { color: var(--red); }
.qmodal-close { width: 36px; height: 36px; border-radius: 50%; background: var(--line-soft); display: inline-flex; align-items: center; justify-content: center; color: var(--ink); cursor: pointer; transition: background 0.18s var(--ease); flex-shrink: 0; }
.qmodal-close:hover { background: var(--line); }
.qmodal-body { padding: 36px 32px 32px; }
@media (max-width: 480px) { .qmodal-body { padding: 28px 22px; } }
.qstep h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 10px; line-height: 1.15; text-align: center; }
.qstep p.sub { font-size: 15px; color: var(--mute); font-weight: 500; margin-bottom: 24px; text-align: center; }
.qinput { width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 18px 20px; font-family: inherit; font-size: 18px; font-weight: 600; color: var(--ink); outline: none; transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease); background: var(--bg); text-align: center; letter-spacing: 0.02em; font-feature-settings: 'tnum'; }
.qinput:focus { border-color: var(--red); box-shadow: 0 0 0 4px var(--red-soft); }
.qinput::placeholder { color: var(--mute); font-weight: 500; letter-spacing: 0; }

.qbtn-next { display: block; width: 100%; background: var(--red); color: white; padding: 17px 28px; margin-top: 14px; border-radius: var(--r-pill); font-family: inherit; font-weight: 700; font-size: 16px; letter-spacing: -0.005em; transition: all 0.18s var(--ease); box-shadow: var(--shadow-red); cursor: pointer; border: none; }
.qbtn-next:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ── SEARCHING phase ── */
.qsearch { padding: 18px 0 8px; text-align: center; }
.qsearch-spinner {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  position: relative;
}
.qsearch-spinner::before {
  content: ''; position: absolute; inset: 0;
  border: 3px solid var(--line-soft);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: qspin 0.9s linear infinite;
}
.qsearch-spinner::after {
  content: ''; position: absolute;
  inset: 12px;
  background: var(--red-soft);
  border-radius: 50%;
  animation: qpulse 1.4s var(--ease) infinite;
}
@keyframes qspin { to { transform: rotate(360deg); } }
@keyframes qpulse { 0%, 100% { transform: scale(0.85); opacity: 0.5; } 50% { transform: scale(1.05); opacity: 1; } }

.qsearch-title { font-size: 22px; font-weight: 800; letter-spacing: -0.022em; color: var(--ink); margin-bottom: 12px; }
.qsearch-status {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px; color: var(--mute);
  letter-spacing: 0.01em;
  min-height: 22px;
  transition: opacity 0.28s var(--ease);
  font-weight: 500;
}
.qsearch-dots { display: inline-flex; gap: 4px; margin-left: 4px; }
.qsearch-dots span {
  display: inline-block; width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
  animation: qdot 1.4s infinite;
}
.qsearch-dots span:nth-child(2) { animation-delay: 0.18s; }
.qsearch-dots span:nth-child(3) { animation-delay: 0.36s; }
@keyframes qdot { 0%, 60%, 100% { opacity: 0.25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.qsearch-checklist {
  margin-top: 22px;
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
  display: grid; gap: 8px;
}
.qsearch-check-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--mute);
  font-weight: 500;
}
.qsearch-check-row .qsearch-tick {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--line-soft);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--mute);
  transition: all 0.24s var(--ease);
}
.qsearch-check-row.done .qsearch-tick {
  background: var(--red);
  color: white;
}
.qsearch-check-row.done {
  color: var(--ink);
}

/* ── RESULT phase ── */
.qresult { text-align: center; padding: 0; }
.qresult-icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
  animation: qresult-pop 0.5s var(--ease);
}
.qresult-icon svg { width: 26px; height: 26px; display: block; }
@keyframes qresult-pop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}
.qresult-title {
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.025em; color: var(--ink);
  margin: 0 0 14px; line-height: 1.2;
}
.qresult-title .accent { color: var(--red); }

/* One-line stars row + inline rating */
.qresult-stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--star);
  margin: 0 auto 18px;
  padding: 8px 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
  flex-wrap: nowrap;
}
.qresult-stars-icons { display: inline-flex; gap: 1px; line-height: 0; }
.qresult-stars-icons svg { width: 14px; height: 14px; display: inline-block; }
.qresult-stars-label {
  color: var(--mute);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.qresult-sub { font-size: 14px; color: var(--mute); font-weight: 500; margin-bottom: 22px; max-width: 380px; margin-left: auto; margin-right: auto; line-height: 1.55; }
.qresult-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
}
.qresult-stat { background: var(--bg); padding: 16px 12px; text-align: center; }
.qresult-stat-num { font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1; margin-bottom: 4px; font-feature-settings: 'tnum'; }
.qresult-stat-num .red { color: var(--red); }
.qresult-stat-label { font-size: 11px; color: var(--mute); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* Phone CTA — bigger, centered, balanced */
.qfinal-call {
  display: block;
  background: var(--ink);
  color: white;
  padding: 20px 18px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.4);
}
.qfinal-call:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(0,0,0,0.5); }
.qfinal-call::before {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(220,38,38,0.18) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.qfinal-call-label {
  position: relative; z-index: 1;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px; font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.14em;
  display: block; margin-bottom: 10px;
}
.qfinal-call-num {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center;
  gap: 14px;
  font-size: 30px; font-weight: 800;
  letter-spacing: -0.02em;
  color: white;
  font-feature-settings: 'tnum';
  line-height: 1;
}
.qfinal-call-num .qfinal-phone-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  flex-shrink: 0;
}
.qfinal-call-num .qfinal-phone-icon svg { width: 14px; height: 14px; }
@media (max-width: 480px) { .qfinal-call-num { font-size: 24px; gap: 10px; } }
.qfinal-or { margin: 16px 0 12px; text-align: center; font-size: 13px; color: var(--mute); position: relative; }
.qfinal-or::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--line); }
.qfinal-or span { position: relative; background: var(--bg); padding: 0 10px; }
.qfinal-text { display: flex; gap: 8px; }
.qfinal-text .qinput { flex: 1; font-size: 15px; text-align: left; padding: 14px 16px; }
.qfinal-text button { background: var(--bg); border: 1.5px solid var(--line); color: var(--ink); padding: 14px 20px; border-radius: 12px; font-family: inherit; font-weight: 700; font-size: 14px; cursor: pointer; transition: all 0.18s var(--ease); }
.qfinal-text button:hover { border-color: var(--ink); }
.qfinal-fineprint { margin-top: 12px; font-size: 12px; color: var(--mute); line-height: 1.5; }

/* ── Reveal on load (staggered) ── */
.reveal { opacity: 0; transform: translateY(12px); animation: reveal 0.7s var(--ease) forwards; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.12s; }
.delay-3 { animation-delay: 0.20s; }
.delay-4 { animation-delay: 0.28s; }
.delay-5 { animation-delay: 0.36s; }
.delay-6 { animation-delay: 0.50s; }
