/* ═══════════════════════════════════════════════════════════
   ELITE COMFORT SWFL — Main Stylesheet
   EliteComfortSWFL.com
   ═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --navy:        #0A1628;
  --navy-mid:    #112040;
  --navy-light:  #1C3357;
  --gold:        #C9A84C;
  --gold-light:  #E2C97A;
  --gold-pale:   #F4E9CA;
  --white:       #FFFFFF;
  --off-white:   #F8F6F1;
  --slate:       #4A5568;
  --slate-light: #718096;
  --border:      #E2DACE;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow:    0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg: 0 24px 64px rgba(10,22,40,0.18);

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
select { cursor: pointer; }

/* ── SPA PAGE ROUTING ───────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ── SKIP LINK ──────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--gold); color: var(--navy);
  padding: 0.5rem 1rem; border-radius: 0 0 4px 4px;
  font-size: 0.85rem; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ── NAVIGATION ─────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; cursor: pointer; }
.nav-logo-top {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.02em;
}
.nav-logo-bottom {
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.18em;
  color: var(--gold); text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  transition: color 0.2s; cursor: pointer;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; background: none; border: none; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 72px 0 0 0;
  background: var(--navy); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem; padding: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.2rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.85); cursor: pointer;
}
.mobile-menu a:hover, .mobile-menu .mobile-cta { color: var(--gold); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 1rem 2rem; border-radius: 2px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
  cursor: pointer; border: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-centered { margin: 0 auto; display: flex; width: fit-content; justify-content: center; }
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85);
  padding: 1rem 2rem; border-radius: 2px;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; transition: var(--transition);
  cursor: pointer; background: none;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-secondary-dark {
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7);
  padding: 0.85rem 2rem; border-radius: 2px;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; transition: var(--transition);
  cursor: pointer; background: none;
}
.btn-secondary-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ── SECTION LAYOUT ──────────────────────────────────────── */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-dark { background: var(--navy); color: var(--white); }
.section-white { background: var(--white); }
.section-off { background: var(--off-white); }
.section-center { max-width: 680px; margin: 0 auto; text-align: center; }

.section-eyebrow {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.center-eyebrow { justify-content: center; }
.center-eyebrow::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500; line-height: 1.22; letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--slate); max-width: 560px; margin-top: 1rem;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }
.section-header { margin-bottom: 3.5rem; }
.section-header-center { text-align: center; }
.section-header-center .section-eyebrow { justify-content: center; }
.section-header-center .section-eyebrow::before { display: none; }
.section-header-center .section-subtitle { margin: 1rem auto 0; }

.gold-rule { width: 48px; height: 2px; background: var(--gold); margin: 1.5rem 0; }
.gold-rule-center { margin: 1.5rem auto; }
.gold-text { color: var(--gold); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.35); }
  50%       { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}
.pulse { animation: pulse-gold 2.5s infinite; }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 40%, #0F2A4A 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 65% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04; pointer-events: none;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 6rem 2rem 4rem;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500; line-height: 1.18;
  color: var(--white); letter-spacing: -0.01em; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  line-height: 1.75; max-width: 480px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; flex-direction: column; gap: 2rem; }
.hero-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius); padding: 1.5rem; backdrop-filter: blur(8px);
}
.hero-card-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.hero-card-value {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 600;
  color: var(--white); line-height: 1;
}
.hero-card-accent { font-size: 1.8rem; color: var(--gold); }
.hero-card-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 0.35rem; }

.hero-trust {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.hero-trust-label {
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.trust-badge {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.65);
}
.trust-badge svg { color: var(--gold); flex-shrink: 0; }

/* ── TRUST GRID ──────────────────────────────────────────── */
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.trust-item {
  background: var(--white); padding: 2.5rem 2rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.trust-item:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.trust-icon {
  width: 48px; height: 48px; margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.trust-item h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  margin-bottom: 0.75rem; color: var(--navy);
}
.trust-item p { font-size: 0.9rem; color: var(--slate); line-height: 1.7; }

/* ── PROCESS GRID ────────────────────────────────────────── */
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(201,168,76,0.15);
}
.process-step { background: var(--navy); padding: 2.5rem 2rem; position: relative; }
.process-num {
  font-family: var(--font-display); font-size: 4rem; font-weight: 700;
  color: rgba(201,168,76,0.12); line-height: 1;
  position: absolute; top: 1.5rem; right: 1.5rem;
}
.process-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; margin-bottom: 1.25rem; }
.process-step h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.75rem;
}
.process-step p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── SOLUTIONS GRID ──────────────────────────────────────── */
.solutions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.solution-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
}
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.solution-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
}
.solution-img.hvac  { background: linear-gradient(135deg,#0A1628,#1C3357); }
.solution-img.humid { background: linear-gradient(135deg,#0F2A4A,#1A4060); }
.solution-img.air   { background: linear-gradient(135deg,#112040,#0A1628); }
.solution-img-icon { font-size: 3.5rem; opacity: 0.8; }
.solution-body { padding: 1.75rem; }
.solution-tag {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.solution-card h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.65rem;
}
.solution-card p { font-size: 0.88rem; color: var(--slate); line-height: 1.7; margin-bottom: 1.25rem; }
.solution-link {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
}

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg,var(--navy-mid),var(--navy));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg); padding: 4rem;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3rem;
}
.cta-banner h2 {
  font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 500; color: var(--white); margin-bottom: 0.75rem;
}
.cta-banner p { font-size: 0.95rem; color: rgba(255,255,255,0.65); max-width: 480px; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; }
.cta-note { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-align: right; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.92rem; line-height: 1.75; color: var(--slate); font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-pale); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; color: var(--navy);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.85rem; color: var(--navy); }
.testimonial-loc  { font-size: 0.75rem; color: var(--slate-light); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-layout {
  display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start;
}
.faq-intro { font-size: 0.9rem; color: var(--slate); line-height: 1.75; margin-top: 1rem; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 500; color: var(--navy);
  cursor: pointer; transition: color 0.2s; background: none; border: none;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 50%;
  font-size: 1rem; line-height: 1;
  transition: transform 0.3s, border-color 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }
.faq-answer p { font-size: 0.92rem; color: var(--slate); line-height: 1.75; }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta-sub {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  line-height: 1.75; margin-bottom: 2.5rem;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--navy); color: rgba(255,255,255,0.6);
  padding: 5rem 2rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.25rem;
}
.footer-brand-tagline {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-desc { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); font-weight: 600; margin-bottom: 1.25rem;
}
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color 0.2s; cursor: pointer; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-legal { font-size: 0.75rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-link { font-size: 0.75rem; color: rgba(255,255,255,0.4); cursor: pointer; transition: color 0.2s; }
.footer-link:hover { color: var(--gold); }
.footer-disclaimer {
  font-size: 0.72rem; line-height: 1.6; color: rgba(255,255,255,0.3);
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── CONTENT PAGES (shared hero) ────────────────────────── */
.content-hero {
  background: linear-gradient(160deg,var(--navy) 0%,var(--navy-mid) 100%);
  padding: 10rem 2rem 6rem;
}
.content-hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.content-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem,4.5vw,3.2rem);
  font-weight: 500; color: var(--white); margin-bottom: 1rem;
}
.content-hero h1 em { font-style: italic; color: var(--gold-light); }
.content-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.75; }

.content-body { padding: 5rem 2rem; }
.content-body-inner { max-width: 1100px; margin: 0 auto; }
.content-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.content-body h2 {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 500;
  color: var(--navy); margin-bottom: 1rem;
}
.content-body h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.65rem; margin-top: 1.5rem;
}
.content-body p { font-size: 0.95rem; color: var(--slate); line-height: 1.8; margin-bottom: 1.25rem; }
.content-body ul { margin-bottom: 1.25rem; }
.content-body ul li {
  font-size: 0.92rem; color: var(--slate); line-height: 1.7;
  padding-left: 1.25rem; position: relative; margin-bottom: 0.5rem;
}
.content-body ul li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
}
.callout {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 2rem 2.25rem;
  border-left: 3px solid var(--gold); margin: 2rem 0;
}
.callout p { color: rgba(255,255,255,0.8); margin-bottom: 0; font-size: 0.92rem; line-height: 1.75; }
.page-cta-sub {
  color: rgba(255,255,255,0.65); margin: 1rem auto 2rem;
  font-size: 0.95rem; line-height: 1.75; max-width: 500px;
}

/* Stats Row */
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.stat-box { background: var(--white); padding: 2rem; text-align: center; }
.stat-box-value {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--navy);
}
.stat-box-label { font-size: 0.8rem; color: var(--slate); margin-top: 0.25rem; line-height: 1.5; }

/* ── HOW IT WORKS PAGE ───────────────────────────────────── */
.how-inner { max-width: 780px; margin: 0 auto; }
.how-steps { display: flex; flex-direction: column; }
.how-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 2.5rem;
  padding: 3rem 0; border-bottom: 1px solid var(--border); align-items: start;
}
.how-step:last-child { border-bottom: none; }
.how-step-num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
  color: var(--gold-pale); line-height: 1; text-align: right;
}
.how-step-body h3 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.75rem;
}
.how-step-body p { font-size: 0.95rem; color: var(--slate); line-height: 1.8; }
.how-step-badge {
  display: inline-flex; align-items: center;
  background: var(--gold-pale); color: var(--navy);
  padding: 0.4rem 0.85rem; border-radius: 20px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 0.75rem;
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-founder {
  display: grid; grid-template-columns: 1fr 2fr; gap: 5rem;
  align-items: start; margin-bottom: 5rem;
}
.founder-img {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg,var(--navy),var(--navy-light));
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; font-size: 5rem; border: 1px solid var(--border);
}
.founder-bio h2 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 500;
  color: var(--navy); margin-bottom: 0.35rem;
}
.founder-title {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.founder-bio p { font-size: 0.95rem; color: var(--slate); line-height: 1.8; margin-bottom: 1rem; }
.about-values { border-top: 1px solid var(--border); padding-top: 4rem; }

/* Standards Grid */
.standards-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.standard-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
}
.standard-card h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.65rem;
}
.standard-card p { font-size: 0.88rem; color: var(--slate); line-height: 1.7; }

/* ── ASSESSMENT PAGE ─────────────────────────────────────── */
.assessment-wrap {
  min-height: 100vh; padding-top: 72px;
  background: linear-gradient(160deg,var(--navy) 0%,var(--navy-mid) 100%);
  display: flex; align-items: center;
}
.assessment-inner { max-width: 680px; margin: 0 auto; padding: 4rem 2rem; width: 100%; }
.assessment-header { text-align: center; margin-bottom: 2.5rem; }
.assessment-header h1 {
  font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.6rem);
  font-weight: 500; color: var(--white); margin-bottom: 0.75rem;
}
.assessment-header p { font-size: 0.95rem; color: rgba(255,255,255,0.65); }

.progress-bar-wrap { margin-bottom: 2rem; }
.progress-label {
  display: flex; justify-content: space-between;
  font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-bottom: 0.5rem;
}
.progress-track { height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.progress-fill { height: 100%; background: var(--gold); border-radius: 2px; transition: width 0.5s cubic-bezier(0.4,0,0.2,1); }

.assessment-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.assessment-q {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 500;
  color: var(--white); margin-bottom: 0.5rem;
}
.assessment-hint { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 1.75rem; }
.option-list { display: flex; flex-direction: column; gap: 0.75rem; }
.option-btn {
  width: 100%; text-align: left; padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius);
  font-size: 0.92rem; color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.03); font-family: var(--font-body);
  transition: border-color 0.2s, background 0.2s, color 0.2s; cursor: pointer;
}
.option-btn:hover,
.option-btn.selected {
  border-color: var(--gold); background: rgba(201,168,76,0.1); color: var(--white);
}
.form-stack { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.assessment-input {
  width: 100%; padding: 0.9rem 1.1rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); color: var(--white); font-size: 0.95rem;
  font-family: var(--font-body); transition: border-color 0.2s; outline: none;
}
.assessment-input::placeholder { color: rgba(255,255,255,0.3); }
.assessment-input:focus { border-color: var(--gold); }

.assessment-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.75rem;
}
.btn-back {
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  padding: 0.5rem 0; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); transition: color 0.2s;
}
.btn-back:hover { color: rgba(255,255,255,0.8); }
.btn-next {
  background: var(--gold); color: var(--navy);
  padding: 0.85rem 2rem; border-radius: 2px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; transition: background 0.2s;
  cursor: pointer; border: none; font-family: var(--font-body);
}
.btn-next:hover { background: var(--gold-light); }
.btn-next:disabled { opacity: 0.4; cursor: not-allowed; }

.assessment-trust {
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
  margin-top: 1.5rem;
}
.assessment-trust span { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.assessment-privacy {
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  margin-top: 1rem; text-align: center;
}

/* ── ASSESSMENT v2: INTRO SCREEN ─────────────────────────── */
.intro-badge {
  display: inline-flex; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35); border-radius: 20px;
  padding: 0.4rem 1rem; margin-bottom: 1.5rem;
}
.intro-title {
  font-family: var(--font-display); font-size: clamp(1.7rem,4vw,2.4rem);
  font-weight: 500; color: var(--white); line-height: 1.25; margin-bottom: 1rem;
}
.intro-sub { font-size: 0.98rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 2rem; }
.intro-meta {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
  margin-bottom: 2.5rem;
}
.intro-meta-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.5rem; padding: 1.25rem 0.75rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}
.intro-meta-icon { font-size: 1.5rem; }
.intro-meta-item strong { display: block; font-size: 0.85rem; color: var(--white); font-weight: 600; margin-bottom: 0.15rem; }
.intro-meta-item span { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

/* ── ASSESSMENT v2: SECTION TAGS ─────────────────────────── */
.section-tag {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
}

/* ── ASSESSMENT v2: FIELD LABELS ──────────────────────────── */
.field-label {
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em; margin: 1.75rem 0 0.75rem;
}
.field-label:first-of-type { margin-top: 1.5rem; }
.field-optional {
  font-weight: 400; font-size: 0.72rem; color: rgba(255,255,255,0.35);
  text-transform: none; letter-spacing: normal;
}

/* ── ASSESSMENT v2: FORM ROW (side-by-side inputs) ───────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ── ASSESSMENT v2: CHIPS (multi/single toggle pills) ────── */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  padding: 0.6rem 1.1rem; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03); color: rgba(255,255,255,0.75);
  font-size: 0.82rem; font-family: var(--font-body);
  transition: border-color 0.2s, background 0.2s, color 0.2s; cursor: pointer;
}
.chip:hover { border-color: rgba(201,168,76,0.5); }
.chip.selected {
  border-color: var(--gold); background: rgba(201,168,76,0.12); color: var(--white);
}

/* ── ASSESSMENT v2: OPTION VARIANT — SOFT (smaller, for cost ranges) ── */
.option-btn.opt-soft { padding: 0.8rem 1.25rem; font-size: 0.85rem; }

/* ── ASSESSMENT v2: TEXTAREA (dark theme) ────────────────── */
.form-textarea-dark {
  width: 100%; padding: 0.9rem 1.1rem; resize: vertical; min-height: 90px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); color: var(--white); font-size: 0.92rem;
  font-family: var(--font-body); transition: border-color 0.2s; outline: none;
}
.form-textarea-dark::placeholder { color: rgba(255,255,255,0.3); }
.form-textarea-dark:focus { border-color: var(--gold); }

/* ── ASSESSMENT v2: SLIDERS ───────────────────────────────── */
.slider-wrap { margin-bottom: 0.5rem; }
.comfort-slider {
  width: 100%; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.12); outline: none;
  -webkit-appearance: none; appearance: none; cursor: pointer; margin-bottom: 0.75rem;
}
.comfort-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3); cursor: pointer;
}
.comfort-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3); cursor: pointer;
}
.slider-scale {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: rgba(255,255,255,0.4);
}
.slider-value {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--gold); min-width: 32px; text-align: center;
}

/* ── ASSESSMENT v2: PHOTO UPLOAD GRID ─────────────────────── */
.photo-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 1.5rem;
}
@media (max-width: 640px) { .photo-grid { grid-template-columns: 1fr; } }
.photo-upload {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.4rem; padding: 1.5rem 1rem;
  border: 1px dashed rgba(255,255,255,0.2); border-radius: var(--radius);
  background: rgba(255,255,255,0.02); cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.photo-upload:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.photo-upload input[type="file"] { display: none; }
.photo-icon { font-size: 1.6rem; }
.photo-label { font-size: 0.82rem; font-weight: 600; color: var(--white); }
.photo-status { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.photo-upload.has-file { border-color: var(--gold); border-style: solid; }
.photo-upload.has-file .photo-status { color: var(--gold); }

/* ── ASSESSMENT v2: RESULTS GRID ──────────────────────────── */
.results-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin: 1.5rem 0;
}
.result-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
}
.result-label {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.result-value {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--white);
}


.assessment-complete { text-align: center; padding: 1rem 0; }
.complete-icon { font-size: 3rem; margin-bottom: 1rem; }
.assessment-complete h2 {
  font-family: var(--font-display); font-size: 2rem; color: var(--white); margin-bottom: 1rem;
}
.assessment-complete p { font-size: 0.95rem; color: rgba(255,255,255,0.65); margin-bottom: 1rem; }
.complete-sub { font-size: 0.82rem !important; color: rgba(255,255,255,0.4) !important; margin-bottom: 2rem !important; }
.complete-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 0.5rem;
}
.form-input, .form-textarea {
  width: 100%; padding: 0.9rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.92rem; color: var(--navy);
  background: var(--white); transition: border-color 0.2s; outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }
.contact-info-col h3 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  color: var(--navy); margin-bottom: 1.5rem; margin-top: 1.5rem;
}
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.contact-detail-icon {
  width: 40px; height: 40px; background: var(--gold-pale);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 1rem;
}
.contact-detail-text strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.contact-detail-text span { display: block; font-size: 0.88rem; color: var(--slate); line-height: 1.6; }
.contact-fastest {
  margin-top: 2.5rem; background: var(--off-white);
  border-radius: var(--radius); padding: 1.75rem;
}
.contact-fastest-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
}
.contact-fastest p { font-size: 0.9rem; color: var(--slate); line-height: 1.7; margin-bottom: 1rem; }

/* ── ACCESSIBILITY ───────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── RESPONSIVE — TABLET (≤900px) ───────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; padding: 5rem 1.5rem 3rem; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
  .hero-card { flex: 1 1 140px; }
  .trust-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem; }
  .cta-banner-actions { align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .content-2col { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-founder { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .standards-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── RESPONSIVE — MOBILE (≤640px) ───────────────────────── */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 4rem 1.25rem; }
  .hero-inner { padding: 4rem 1.25rem 2.5rem; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .how-step { grid-template-columns: 50px 1fr; gap: 1.25rem; }
  .assessment-inner { padding: 2.5rem 1.25rem; }
  .assessment-card { padding: 1.5rem; }
  .content-hero { padding: 8rem 1.25rem 4rem; }
  .hero-sub { font-size: 1rem; }
  .cta-banner { padding: 2rem 1.5rem; }
  .hero-trust { gap: 1rem; }
}
