/* ============================================================
   SUCCESS FORGE MARKETING - Main Stylesheet
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* Brand colors */
  --dark:          hsl(225, 24%, 6%);     /* #0b0d12 - main dark bg */
  --card:          hsl(224, 26%, 10%);    /* #131620 - dark card bg */
  --light:         hsl(220, 18%, 96%);    /* #f3f4f7 - light section bg */
  --orange:        hsl(24, 95%, 53%);     /* #f97316 - primary CTA */
  --orange-hover:  hsl(24, 88%, 48%);     /* #ea6800 - CTA hover */

  /* Text */
  --text-on-dark:  #ffffff;
  --text-light:    hsl(214, 32%, 82%);    /* #b8c9e0 - body on dark */
  --text-muted:    hsl(215, 20%, 65%);    /* #6b7f99 - secondary on dark */
  --text-dark:     hsl(220, 13%, 30%);    /* #3b434d - body on light */
  --heading-dark:  hsl(220, 43%, 11%);    /* #0f1a2a - heading on light */

  /* Borders */
  --border-dark:   hsl(228, 20%, 16%);    /* #1a212d - dark section border */
  --border-light:  hsl(215, 20%, 88%);    /* #d5dce8 - light section border */

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container: 1280px;
  --header-h: 72px;

  /* Radius */
  --r-sm: 0.5rem;
  --r:    0.75rem;
  --r-lg: 1.25rem;
  --r-xl: 2rem;

  /* Transitions */
  --t: 0.2s ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--r);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px hsla(24, 95%, 53%, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-secondary:hover {
  background: hsla(24, 95%, 53%, 0.08);
  transform: translateY(-1px);
}

.btn-lg { font-size: 1.125rem; padding: 1rem 2.25rem; }
.btn-sm { font-size: 0.875rem; padding: 0.625rem 1.25rem; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 2rem;
}

.site-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* ── Main Nav ───────────────────────────────────────────────── */
.main-nav {
  display: none;
  flex: 1;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .main-nav { display: flex; }
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 0.4rem 0.75rem;
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
}

.nav-link.active { font-weight: 600; }

/* ── Header Actions ─────────────────────────────────────────── */
.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .header-actions { display: flex; }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  transition: color var(--t);
}
.header-phone:hover { color: var(--orange); }

/* ── Mobile Menu Toggle ─────────────────────────────────────── */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  margin-left: auto;
  border-radius: var(--r-sm);
  background: transparent;
  transition: background var(--t);
}

.mobile-menu-toggle:hover { background: var(--border-dark); }

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t), width var(--t);
  transform-origin: center;
}

.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
}

/* ── Mobile Nav Dropdown ────────────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--card);
  border-bottom: 1px solid var(--border-dark);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav .nav-link {
  font-size: 1rem;
  padding: 0.6rem 0.75rem;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-dark);
}

.mobile-nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1rem;
}

/* ── Sections - Dark ────────────────────────────────────────── */
.section-dark {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 5rem 0;
}

.section-card {
  background: var(--card);
  color: var(--text-on-dark);
  padding: 5rem 0;
}

/* ── Sections - Light ───────────────────────────────────────── */
.section-light {
  background: var(--light);
  color: var(--heading-dark);
  padding: 5rem 0;
}

.section-white {
  background: #fff;
  color: var(--heading-dark);
  padding: 5rem 0;
}

/* ── Section Text Helpers ───────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-heading.on-dark { color: #fff; }
.section-heading.on-light { color: var(--heading-dark); }

.section-subtext {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 680px;
}
.section-subtext.on-dark { color: var(--text-light); }
.section-subtext.on-light { color: var(--text-dark); }

.section-center { text-align: center; }
.section-center .section-subtext { margin: 0 auto; }

/* ── Long-form Content Sections ─────────────────────────────── */
.content-section p {
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 780px;
}
.content-section h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin: 2.25rem 0 0.75rem;
}
.content-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 780px;
}
.content-section ul li {
  line-height: 1.75;
}
.section-dark .content-section p,
.section-dark .content-section ul li { color: var(--text-light); }
.section-dark .content-section h3  { color: #fff; }
.section-light .content-section p,
.section-light .content-section ul li { color: var(--text-dark); }
.section-light .content-section h3  { color: var(--heading-dark); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  padding: 4.5rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
  }
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.5rem;
}

.hero-headline .accent { color: var(--orange); }

.hero-sub {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.hero-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Feature list inside hero */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.hero-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-features li svg {
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 0.1rem;
}

.hero-features li strong { color: #fff; }

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  transition: color var(--t);
}
.hero-phone:hover { color: var(--orange); }

.hero-serving {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Hero form card */
.form-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.form-card iframe {
  display: block;
  width: 100%;
  border: none;
  min-height: 580px;
}

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border-dark);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
}

/* ── Trust Signals ──────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 640px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.trust-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-dark);
}

.trust-desc {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ── Process Steps ──────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(5, 1fr); }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1rem;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Testimonial Quote ──────────────────────────────────────── */
.testimonial {
  text-align: center;
  padding: 3rem 0;
}

.testimonial blockquote {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 600;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.testimonial blockquote::before { content: '\201C'; color: var(--orange); }
.testimonial blockquote::after  { content: '\201D'; color: var(--orange); }

/* ── Services Overview Cards ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  color: var(--orange);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--heading-dark);
}

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

.service-card p .accent-link {
  color: var(--orange);
  font-weight: 600;
}

.service-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.service-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.service-card-features li svg {
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 0.1rem;
}

/* ── Features Grid ──────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-card-icon {
  width: 40px;
  height: 40px;
  color: var(--orange);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── Stats Row ──────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── Pricing Cards ──────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.pricing-badge {
  display: inline-block;
  background: hsla(24, 95%, 53%, 0.15);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid hsla(24, 95%, 53%, 0.3);
  width: fit-content;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.pricing-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

.pricing-features li svg {
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 0.1rem;
}

.pricing-features li.accent { color: var(--orange); font-weight: 600; }

.pricing-cta-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.25rem;
}

/* ── Results Estimator ──────────────────────────────────────── */
.estimator {
  background: var(--card);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}

.estimator-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.estimator-header .eyebrow { margin-bottom: 0.5rem; }
.estimator-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: #fff; margin-bottom: 0.5rem; }
.estimator-header p { font-size: 0.95rem; color: var(--text-muted); }

.estimator-sliders {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.slider-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.slider-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange);
}

/* Custom range input */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  background: var(--border-dark);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  /* filled track override via JS + background-size */
  background: linear-gradient(to right, var(--orange) 0%, var(--orange) var(--fill, 30%), var(--border-dark) var(--fill, 30%), var(--border-dark) 100%);
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px hsla(24, 95%, 53%, 0.5);
  transition: transform 0.1s;
}
input[type="range"]::-webkit-slider-thumb:active { transform: scale(1.15); }

input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px hsla(24, 95%, 53%, 0.5);
}

input[type="range"]::-moz-range-track {
  height: 5px;
  background: var(--border-dark);
  border-radius: 3px;
}

input[type="range"]::-moz-range-progress {
  height: 5px;
  background: var(--orange);
  border-radius: 3px;
}

.estimator-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .estimator-results { grid-template-columns: repeat(4, 1fr); }
}

.result-box {
  background: hsl(225, 24%, 9%);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: 1.25rem 1rem;
  text-align: center;
}

.result-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.result-value {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.estimator-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.estimator-note {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  text-align: center;
  margin-bottom: 1.5rem;
}

.estimator-cta { text-align: center; }

/* ── Scarcity Banner ────────────────────────────────────────── */
.scarcity {
  background: hsl(39, 100%, 97%);
  border: 1px solid hsl(39, 100%, 85%);
  border-radius: var(--r-lg);
  padding: 1.5rem 2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.scarcity h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: hsl(32, 80%, 25%);
  margin-bottom: 0.5rem;
}

.scarcity p {
  font-size: 0.875rem;
  color: hsl(32, 50%, 40%);
}

.scarcity a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-section {
  max-width: 820px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 2.5rem;
}

.faq-category-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-dark);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--orange);
}

/* On dark sections */
.faq-category-title.on-dark {
  color: #fff;
}

details.faq-item {
  border-bottom: 1px solid var(--border-light);
}

details.faq-item.on-dark {
  border-bottom-color: var(--border-dark);
}

details.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  color: var(--heading-dark);
  transition: color var(--t);
}

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

details.faq-item.on-dark summary { color: #fff; }

details.faq-item summary:hover { color: var(--orange); }

details.faq-item summary svg {
  flex-shrink: 0;
  transition: transform var(--t);
  color: var(--text-muted);
}

details.faq-item[open] summary svg { transform: rotate(180deg); }
details.faq-item[open] summary { color: var(--orange); }

.faq-answer {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-dark);
}

.faq-answer.on-dark { color: var(--text-light); }

/* ── Final CTA Section ──────────────────────────────────────── */
.final-cta {
  text-align: center;
  padding: 5rem 0;
}

.final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #fff;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.final-cta-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.final-cta-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border-dark);
  padding: 3.5rem 0 2rem;
  text-align: center;
}

.footer-logo {
  margin: 0 auto 1.25rem;
  display: flex;
  justify-content: center;
}

.footer-logo img { height: 44px; width: auto; }

.footer-tagline {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-serving {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1.75rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--text-light);
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--orange); }

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color var(--t);
}
.footer-contact a:hover { color: var(--orange); }

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--border-dark);
  margin: 1rem 0;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--t);
}
.footer-legal a:hover { color: var(--orange); }

/* ── Philosophy Cards (About) ───────────────────────────────── */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .philosophy-grid { grid-template-columns: repeat(3, 1fr); }
}

.philosophy-card {
  background: var(--card);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.philosophy-icon {
  width: 48px;
  height: 48px;
  background: hsla(24, 95%, 53%, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.philosophy-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.philosophy-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── Why Clients Stay (About) ───────────────────────────────── */
.stay-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stay-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.65;
}

.stay-list li svg {
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 0.25rem;
}

.stay-list li strong { color: var(--heading-dark); }

/* ── Contact Page ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

.contact-info h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--heading-dark);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: hsla(24, 95%, 53%, 0.1);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-detail h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-detail a, .contact-detail p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-dark);
  transition: color var(--t);
  margin: 0;
}
.contact-detail a:hover { color: var(--orange); }

.contact-detail .sub {
  font-size: 0.875rem;
  color: var(--text-dark);
  font-weight: 400;
  margin-top: 0.15rem;
  display: block;
}

.contact-form-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

.contact-form-card iframe {
  display: block;
  width: 100%;
  border: none;
  min-height: 640px;
}

/* ── Animations ─────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Utility ─────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-orange { color: var(--orange); }
.mt-2  { margin-top: 2rem; }
.mt-3  { margin-top: 3rem; }
.mb-2  { margin-bottom: 2rem; }

/* ── Responsive Tweaks ──────────────────────────────────────── */
@media (max-width: 640px) {
  .section-dark,
  .section-card,
  .section-light,
  .section-white { padding: 3.5rem 0; }

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

  .estimator { padding: 1.75rem 1.25rem; }

  .estimator-results {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card { padding: 1.5rem; }

  .final-cta { padding: 3.5rem 0; }

  .btn-lg { font-size: 1rem; padding: 0.875rem 1.75rem; }
}
