/* ============================================================
   LARYNGOSPONGE — styles.css
   White/Light/Navy/Gold palette
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&display=swap');

/* ── Variables ── */
:root {
  --navy:          #1d3083;
  --navy-deep:     #0d1a45;
  --navy-mid:      #243da0;
  --navy-light:    #eef1fb;
  --gold:          #d4841a;
  --gold-light:    #f5a832;
  --gold-pale:     #fef3e2;
  --gold-border:   rgba(212,132,26,0.3);
  --white:         #ffffff;
  --bg-light:      #f4f7fc;
  --bg-alt:        #eef1fb;
  --text:          #0d1a45;
  --text-body:     #374151;
  --text-muted:    #6b7280;
  --text-on-navy:  #f0ede8;
  --text-dim-navy: rgba(255,255,255,0.6);
  --border:        #e2e8f0;
  --border-mid:    #cbd5e1;
  --font:          'Inter', system-ui, sans-serif;
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-mono:     'SF Mono', 'Fira Code', monospace;
  --radius:        8px;
  --radius-lg:     16px;
  --shadow-sm:     0 1px 3px rgba(13,26,69,0.08);
  --shadow-md:     0 4px 16px rgba(13,26,69,0.12);
  --shadow-lg:     0 12px 40px rgba(13,26,69,0.15);
  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 100px 0; }

/* ── Progress bar ── */
.progress-bar {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  z-index: 1000; transition: transform 0.1s linear;
}


/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Section Label ── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold);
  flex-shrink: 0;
}

/* ── Section Header ── */
.section-header { margin-bottom: 3.5rem; }
.section-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; line-height: 1.15; color: var(--navy);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-body { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.7rem 1.6rem; border-radius: var(--radius);
  font-family: var(--font); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.02em; border: 2px solid transparent;
  transition: all 0.25s var(--ease); white-space: nowrap;
}
.btn-lg { padding: 0.85rem 2rem; font-size: 0.95rem; }
.btn-gold {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,132,26,0.35); }
.btn-primary {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline-white {
  background: transparent; color: var(--text-on-navy);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.9); }
.btn-outline-navy {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
  height: 68px;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 16px rgba(13,26,69,0.08);
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.96);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 68px; display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600;
  color: var(--navy); text-decoration: none; flex-shrink: 0;
}
.nav-logo img {
  height: 36px; width: auto;
  mix-blend-mode: multiply;
  transition: opacity 0.2s;
}
.nav-logo-fallback { display: none; }
.nav-links {
  display: flex; align-items: center; gap: 0.25rem; margin-left: auto;
}
.nav-links li { list-style: none; }
.nav-link {
  font-size: 0.875rem; font-weight: 500; color: var(--text-muted);
  padding: 0.4rem 0.75rem; border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  display: block;
}
.nav-link:hover, .nav-link.active {
  color: var(--navy); background: var(--navy-light);
}
.nav-cta {
  display: inline-flex; align-items: center;
  padding: 0.45rem 1.2rem; border-radius: var(--radius);
  background: var(--gold); color: var(--white);
  font-size: 0.875rem; font-weight: 600;
  border: 2px solid var(--gold);
  transition: all 0.25s var(--ease); margin-left: 1rem;
}
.nav-cta:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
  width: 40px; height: 40px; background: transparent; border: none;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--white); z-index: 490;
  display: flex; flex-direction: column; padding: 100px 2rem 2rem;
  gap: 0.5rem; transform: translateX(100%); transition: transform 0.35s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: none; }
.mobile-menu li { list-style: none; }
.mobile-menu a {
  font-size: 1.2rem; font-weight: 600; color: var(--navy);
  padding: 0.75rem 0; border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-menu li:last-child a { border-bottom: none; }
.mobile-menu ul { list-style: none; }
.mobile-menu-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: none; border: none;
  font-size: 2.2rem; line-height: 1;
  color: var(--navy); cursor: pointer;
  padding: 0.25rem 0.5rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.mobile-menu-close:hover { opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: stretch;
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-overlay::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 60% 40%, rgba(29,48,131,0.0) 0%, rgba(13,26,69,0.55) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  flex: 1;
  padding-top: 2rem; padding-bottom: 80px;
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding-left: 2rem; padding-right: 2rem;
}
/* Hero Left */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-light); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(245,168,50,0.7);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(245,168,50,0.7); }
  50% { opacity: 0.6; box-shadow: 0 0 16px rgba(245,168,50,0.4); }
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 600; line-height: 1.05;
  color: var(--text-on-navy);
  margin-bottom: 1.5rem;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1.05rem; color: var(--text-dim-navy);
  line-height: 1.75; margin-bottom: 2rem; max-width: 500px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-trust {
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  font-size: 0.78rem; color: var(--text-dim-navy);
}
.trust-item { display: flex; align-items: center; gap: 4px; }
.trust-sep { color: var(--gold); font-size: 0.6rem; }
/* Hero Right */
.hero-right { position: relative; }
.hero-badge {
  position: absolute; z-index: 5;
  background: var(--white); color: var(--navy);
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0.85rem; border-radius: var(--radius);
  font-size: 0.78rem; font-weight: 600;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.badge-1 { top: -20px; left: -30px; }
.badge-2 { bottom: 60px; right: -20px; }
.hero-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 3;
}
.hcard-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.hcard-title { font-size: 0.8rem; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; }
.hcard-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 700; color: #16a34a;
  letter-spacing: 0.08em;
}
.hcard-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #16a34a;
  animation: pulse-dot 1.5s infinite;
}
.hcard-metrics { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 1.25rem; }
.hcard-metric { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 0.5rem; }
.hcard-label { font-size: 0.72rem; color: var(--text-muted); }
.hcard-bar {
  width: 100px; height: 5px; background: var(--border);
  border-radius: 99px; overflow: hidden;
}
.hcard-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--navy), var(--navy-mid));
  transition: width 1s var(--ease);
}
.hcard-val { font-size: 0.72rem; font-weight: 700; color: var(--navy); min-width: 30px; text-align: right; }
.hcard-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.hcard-tag {
  background: var(--bg-light); color: var(--text-muted);
  padding: 0.25rem 0.6rem; border-radius: 99px; font-size: 0.68rem; font-weight: 500;
  border: 1px solid var(--border);
}
.hcard-tag.green { background: #dcfce7; color: #15803d; border-color: #bbf7d0; }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.62rem;
  color: var(--text-dim-navy); text-transform: uppercase; letter-spacing: 0.12em;
}
.scroll-bar {
  width: 1px; height: 40px; background: rgba(255,255,255,0.2);
  position: relative; overflow: hidden;
}
.scroll-bar::after {
  content: ''; position: absolute; top: -100%;
  width: 100%; height: 100%; background: var(--gold);
  animation: scroll-fill 1.8s ease-in-out infinite;
}
@keyframes scroll-fill {
  0% { top: -100%; } 100% { top: 100%; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden; height: 44px; display: flex; align-items: center;
}
.ttrack {
  display: flex; align-items: center;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
.titem {
  font-family: var(--font-mono); font-size: 0.65rem;
  color: rgba(255,255,255,0.75); text-transform: uppercase;
  letter-spacing: 0.1em; padding: 0 1.5rem;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SOUND FAMILIAR
   ============================================================ */
.familiar-section { background: var(--white); }
.familiar-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.scenario-card {
  border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid var(--border);
}
.scenario-card.bad { background: #fff8f8; border-color: #fecaca; }
.scenario-card.good { background: #f0fdf4; border-color: #bbf7d0; }
.scenario-tag {
  display: inline-flex; align-items: center;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.3rem 0.8rem; border-radius: 99px; margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.bad-tag { background: #fee2e2; color: #b91c1c; }
.good-tag { background: #dcfce7; color: #15803d; }
.scenario-item {
  display: flex; gap: 1rem; margin-bottom: 1rem;
  align-items: flex-start;
}
.scenario-x, .scenario-chk {
  font-size: 1rem; font-weight: 800; flex-shrink: 0; margin-top: 2px;
  width: 20px; text-align: center;
}
.scenario-x { color: #dc2626; }
.scenario-chk { color: #16a34a; }
.scenario-item p { font-size: 0.9rem; color: var(--text-body); line-height: 1.55; }

/* ============================================================
   PROBLEM CARDS
   ============================================================ */
.problem-section { background: var(--bg-light); }
.problem-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.problem-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: border-top-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.problem-card:hover {
  border-top-color: var(--navy); box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.prob-num {
  font-family: var(--font-serif); font-size: 2.5rem; font-weight: 600;
  color: var(--gold); line-height: 1; margin-bottom: 1rem;
  transition: color 0.3s;
}
.problem-card:hover .prob-num { color: var(--gold-light); }
.problem-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.problem-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   FEATURES LIST
   ============================================================ */
.features-section { background: var(--white); }
.features-list { display: flex; flex-direction: column; }
.feature-item {
  display: grid; grid-template-columns: 120px 1fr 40px;
  align-items: center; gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.feature-item:last-child { border-bottom: none; }
.feature-item:hover { padding-left: 12px; }
.feature-num {
  font-family: var(--font-serif); font-size: 3.5rem; font-weight: 600;
  color: var(--gold); line-height: 1;
  transition: color 0.3s var(--ease);
}
.feature-item:hover .feature-num { color: var(--gold-light); }
.feature-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
.feature-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.feature-arrow {
  font-size: 1.2rem; color: var(--border-mid);
  transition: color 0.3s, transform 0.3s;
}
.feature-item:hover .feature-arrow { color: var(--gold); transform: translateX(4px); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--bg-light); }
.steps-wrap { position: relative; margin-bottom: 2rem; }
.process-line {
  position: absolute; top: 40px; left: calc(16.66% + 24px);
  right: calc(16.66% + 24px); height: 2px;
  background: var(--border); z-index: 1;
}
.process-fill {
  height: 100%; width: 0; background: var(--gold);
  transition: width 0.4s var(--ease);
}
.steps-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; position: relative; z-index: 2;
}
.step-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-circle {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--white);
  font-family: var(--font-serif); font-size: 1rem; font-weight: 600;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background 0.3s, color 0.3s;
}
.step-card:hover .step-circle { background: var(--navy); color: var(--white); }
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.step-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.step-tag {
  display: inline-block;
  background: var(--navy-light); color: var(--navy);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem; border-radius: 99px;
}
.how-note {
  text-align: center; font-size: 0.8rem; color: var(--text-muted);
  border: 1px solid var(--border); padding: 0.75rem 1.25rem;
  border-radius: var(--radius); background: var(--white);
  max-width: 600px; margin: 0 auto;
}

/* ============================================================
   METRICS (navy bg)
   ============================================================ */
.metrics-section { background: var(--navy); }
.metrics-section .section-label {
  color: var(--gold-light);
}
.metrics-section .section-label::before { background: var(--gold-light); }
.metrics-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.metric-card {
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; text-align: center;
  transition: background 0.3s, transform 0.3s;
  background: rgba(255,255,255,0.04);
}
.metric-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.metric-value {
  font-family: var(--font-serif); font-size: 3rem; font-weight: 600;
  color: var(--gold-light); line-height: 1; margin-bottom: 0.5rem;
}
.metric-label { font-size: 0.875rem; font-weight: 700; color: var(--text-on-navy); margin-bottom: 0.75rem; }
.metric-desc { font-size: 0.8rem; color: var(--text-dim-navy); line-height: 1.6; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-section { background: var(--white); }
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th, .compare-table td {
  padding: 0.875rem 1.25rem; text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table thead th {
  background: var(--navy); color: var(--text-on-navy);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.compare-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
.compare-table thead th:last-child { border-radius: 0 var(--radius) 0 0; }
.compare-table tbody tr:nth-child(even) td { background: var(--bg-light); }
.compare-table tbody tr:hover td { background: var(--navy-light); }
.compare-col-ls {
  background: rgba(29,48,131,0.06) !important;
  border-left: 3px solid var(--navy) !important;
  font-weight: 600;
}
.compare-table td.feature-col { font-weight: 600; color: var(--navy); }
.chk { color: #16a34a; font-size: 1rem; font-weight: 800; }
.xmark { color: #dc2626; font-size: 1rem; font-weight: 800; }
.compare-badge {
  display: inline-block; background: var(--navy); color: var(--white);
  font-size: 0.65rem; font-weight: 700; padding: 2px 8px; border-radius: 99px;
  letter-spacing: 0.06em; vertical-align: middle; margin-left: 6px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { background: var(--bg-light); }
.pricing-head { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  margin-bottom: 1.5rem;
}
.price-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.25rem;
  text-align: center; position: relative;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s;
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.price-card.featured { border-color: var(--gold); border-width: 2px; }
.price-card.featured:hover { box-shadow: 0 8px 32px rgba(212,132,26,0.25); }
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 3px 12px; border-radius: 99px; white-space: nowrap;
}
.price-qty { font-family: var(--font-serif); font-size: 2rem; font-weight: 600; color: var(--navy); line-height: 1; margin-bottom: 0.3rem; }
.price-unit { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 0.75rem; font-weight: 500; }
.price-total { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 0.25rem; }
.price-per { font-size: 0.75rem; color: var(--gold); font-weight: 600; margin-bottom: 1.25rem; }
.price-card .btn { width: 100%; justify-content: center; font-size: 0.8rem; padding: 0.6rem; }
.pricing-note { text-align: center; font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   ABOUT TEASER (homepage)
   ============================================================ */
.about-section { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.about-quote-col { padding: 2rem; }
.quote-mark {
  font-family: var(--font-serif); font-size: 8rem; line-height: 0.6;
  color: var(--gold); margin-bottom: 1.5rem; display: block;
}
.quote-body {
  font-family: var(--font-serif); font-size: 1.4rem; font-style: italic;
  color: var(--navy); line-height: 1.55; margin-bottom: 1.5rem;
}
.quote-attr { display: flex; align-items: center; gap: 1rem; }
.quote-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; flex-shrink: 0;
}
.quote-name { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.quote-role { font-size: 0.78rem; color: var(--text-muted); }
.about-content { padding-top: 0.5rem; }
.about-content .section-label { margin-bottom: 0.75rem; }
.about-content p { font-size: 0.95rem; color: var(--text-body); line-height: 1.75; margin-bottom: 1rem; }
.founder-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 1.25rem;
}
.fh-item {
  font-size: 0.85rem; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 6px;
  padding: 0.5rem 0.75rem; background: var(--navy-light); border-radius: var(--radius);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: var(--navy); }
.cta-headline {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600; color: var(--text-on-navy); line-height: 1.15; margin-bottom: 1rem;
}
.cta-sub { font-size: 1.05rem; color: var(--text-dim-navy); max-width: 560px; margin: 0 auto 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cta-disclaimer { font-size: 0.75rem; color: var(--text-dim-navy); max-width: 500px; margin: 0 auto; line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-deep); }
.footer-main {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
  padding-top: 60px; padding-bottom: 60px;
}
.footer-logo {
  height: 56px; width: auto; margin-bottom: 0.75rem;
  filter: invert(1) hue-rotate(180deg) brightness(1.6) saturate(0.85);
  mix-blend-mode: screen;
  opacity: 0.9;
}
.footer-brand-name {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600;
  color: var(--gold-light); margin-bottom: 0.5rem; display: block;
}
.footer-brand p { font-size: 0.83rem; color: var(--text-dim-navy); line-height: 1.65; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: 0.6rem; }
.footer-social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); color: var(--text-on-navy);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 0.45rem 0.9rem;
  font-size: 0.78rem; font-weight: 600;
  transition: background 0.25s, border-color 0.25s;
}
.footer-social-btn:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
.footer-col h5 {
  font-size: 0.72rem; font-weight: 700; color: var(--text-on-navy);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.85rem; color: var(--text-dim-navy);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text-on-navy); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.25rem; padding-bottom: 1.25rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim-navy); }
.footer-bottom a { font-size: 0.8rem; color: var(--text-dim-navy); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--text-on-navy); }

/* ============================================================
   INNER HERO (subpages)
   ============================================================ */
.inner-hero {
  background: var(--navy); padding: 160px 0 80px;
  position: relative; overflow: hidden; text-align: center;
}
.inner-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none;
}
.inner-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(36,61,160,0.6) 0%, transparent 70%);
  pointer-events: none;
}
.inner-hero-content { position: relative; z-index: 2; padding: 0 2rem; }
.inner-hero-content .section-label { justify-content: center; }
.inner-hero-title {
  font-family: var(--font-serif); font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 600; color: var(--text-on-navy); line-height: 1.15; margin-bottom: 1rem;
}
.inner-hero-title em { font-style: italic; color: var(--gold-light); }
.inner-hero-subtitle { font-size: 1rem; color: var(--text-dim-navy); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
/* Founder Photo Section */
.founder-photo-section { background: var(--white); }
.founder-photo-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.founder-photo-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(212,132,26,0.35);
  box-shadow: 0 12px 48px rgba(13,26,69,0.15);
  max-width: 280px;
  margin: 0 auto;
}
.founder-photo-img {
  width: 100%; height: auto; display: block;
  object-fit: unset;
  filter: grayscale(0.4);
  transition: filter 0.5s var(--ease);
  image-rendering: high-quality;
}
.founder-photo-frame:hover .founder-photo-img { filter: grayscale(0); }
.founder-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(13,26,69,0.9));
}
.fpc-name { font-size: 1rem; font-weight: 700; color: var(--white); }
.fpc-role { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.founder-photo-aside { padding-top: 1rem; }
.founder-cred-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm); margin-bottom: 1.5rem;
}
.founder-cred-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 1.25rem; }
.cred-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.cred-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--gold); font-weight: 800; flex-shrink: 0;
}
.cred-text { font-size: 0.875rem; color: var(--text-body); line-height: 1.5; }
.cred-text strong { color: var(--navy); display: block; }
.founder-blurb {
  font-size: 0.9rem; color: var(--text-body); line-height: 1.75;
  border-left: 3px solid var(--gold); padding-left: 1rem;
}

/* Narrative Section */
.narrative-section { background: var(--bg-light); padding: 80px 0; }
.narrative-inner { max-width: 860px; margin: 0 auto; padding: 0 2rem; }
.narrative-quote-wrap { margin-bottom: 2.5rem; }
.narrative-quote-mark {
  font-family: var(--font-serif); font-size: 8rem; line-height: 0.6;
  color: var(--gold); display: block; margin-bottom: 1rem;
}
.narrative-quote {
  font-family: var(--font-serif); font-size: 2rem; font-style: italic;
  color: var(--navy); line-height: 1.45; margin-bottom: 1rem;
}
.narrative-attribution { font-size: 0.875rem; color: var(--text-muted); font-style: normal; font-weight: 500; }
.narrative-tagline {
  font-size: 1rem; color: var(--text-body); line-height: 1.8; margin-top: 1.5rem;
}
.narrative-prose { font-size: 1rem; color: var(--text-body); line-height: 1.8; }
.narrative-prose p { margin-bottom: 1.25rem; }

/* Story Section */
.story-section { background: var(--white); padding: 100px 0; }
.story-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: start;
}
.story-block { margin-bottom: 3rem; }
.story-block-label {
  font-family: var(--font-mono); font-size: 0.68rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 8px;
}
.story-block-label::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--gold); }
.story-block h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.story-block p { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; margin-bottom: 0.75rem; }

/* Founder Sidebar */
.founder-sidebar { position: sticky; top: 100px; }
.founder-sidebar-card {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 2rem; color: var(--text-on-navy);
  box-shadow: var(--shadow-lg);
}
.founder-sidebar-avatar {
  width: 80px; height: 80px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--gold-border); margin: 0 auto 1rem;
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700; color: var(--gold-light);
}
.founder-sidebar-avatar img { width: 100%; height: 100%; object-fit: cover; }
.founder-sidebar-name { text-align: center; font-size: 1rem; font-weight: 700; color: var(--text-on-navy); margin-bottom: 0.25rem; }
.founder-sidebar-creds { text-align: center; font-size: 0.78rem; color: var(--text-dim-navy); margin-bottom: 1.25rem; }
.founder-sidebar-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.25rem; }
.sidebar-stat {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 0.75rem; text-align: center;
}
.sidebar-stat-value { font-family: var(--font-serif); font-size: 1.25rem; color: var(--gold-light); font-weight: 600; }
.sidebar-stat-label { font-size: 0.65rem; color: var(--text-dim-navy); margin-top: 2px; }
.founder-sidebar-social { display: flex; gap: 0.6rem; justify-content: center; margin-bottom: 1.25rem; }
.founder-sidebar-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-dim-navy); font-size: 0.72rem; font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.founder-sidebar-social a:hover { background: rgba(255,255,255,0.15); color: var(--text-on-navy); }
.founder-sidebar-card .btn { width: 100%; justify-content: center; }

/* Benefits Section (About page) */
.benefits-section { background: var(--bg-light); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.benefit-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem; border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.benefit-num {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 600;
  color: var(--gold); line-height: 1; margin-bottom: 0.75rem;
}
.benefit-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-section { background: var(--white); }
.products-info-bar {
  background: var(--navy-light); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem 1.75rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  margin-bottom: 3rem; font-size: 0.875rem; color: var(--navy);
}
.info-bar-item { display: flex; align-items: center; gap: 6px; font-weight: 500; }
.info-bar-sep { color: var(--border-mid); }
.variant-block { margin-bottom: 4rem; }
.variant-title {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.75rem; padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}
.variant-title h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.variant-pill {
  display: inline-block; padding: 0.25rem 0.75rem; border-radius: 99px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
}
.pill-yellow { background: #fef9c3; color: #854d0e; border: 1px solid #fde047; }
.pill-white { background: var(--bg-light); color: var(--navy); border: 1px solid var(--border); }
.prod-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
/* ── Hero product name ── */
.hero-product-name {
  position: relative; z-index: 2;
  width: 100%;
  padding: 130px 2rem 0;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 13vw, 13rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  white-space: nowrap;
  opacity: 0.95;
  line-height: 1;
  text-align: center;
}
.hero-product-name em { font-style: italic; }
.hero-copyright {
  font-family: var(--font-sans);
  font-size: 0.18em;
  font-style: normal;
  font-weight: 400;
  vertical-align: super;
  letter-spacing: 0;
  opacity: 0.7;
}
.logo-copyright {
  font-family: var(--font-sans);
  font-size: 0.45rem;
  font-weight: 400;
  font-style: normal;
  vertical-align: super;
  letter-spacing: 0;
  opacity: 0.65;
}
.nav-logo .logo-copyright {
  align-self: flex-start;
  margin-top: 5px;
  color: var(--navy);
}
.footer-brand-name .logo-copyright {
  color: var(--gold-light);
}

/* ── Product Showcase ── */
.product-showcase { background: var(--white); }
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3.5rem;
}
.showcase-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.showcase-img-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 1px solid var(--border);
  margin-bottom: 0.5rem;
}
.showcase-img {
  max-width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  max-height: 320px;
  object-fit: contain;
}
.showcase-size-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  width: fit-content;
}
.showcase-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
}
.showcase-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 420px;
}
@media (max-width: 640px) {
  .showcase-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Sponge Comparison Gallery ── */
.sponge-gallery {
  margin: 3.5rem 0 0;
  padding: 2.5rem 2rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.sponge-gallery-heading {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.75rem;
  letter-spacing: 0.01em;
}
.sponge-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.sponge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.sponge-img-wrap {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-mid);
  box-shadow: var(--shadow-md);
  background: #fff;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.sponge-img-wrap:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.sponge-img-wrap img {
  width: 100%; height: auto; display: block;
  object-fit: cover;
}
.sponge-label {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.sponge-label span {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
}
@media (max-width: 600px) {
  .sponge-gallery-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .sponge-gallery { padding: 1.75rem 1.25rem; }
}

.prod-notice {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem 1.75rem;
  margin-top: 3rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.7;
}
.prod-notice strong { color: var(--navy); }
/* ── Order Configurator ── */
.order-configurator {
  margin: 3.5rem 0 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.order-cfg-header { background: var(--navy); padding: 2.5rem 2.5rem 2rem; }
.order-cfg-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin: 0.4rem 0 0.5rem;
}
.order-cfg-sub { color: rgba(255,255,255,0.65); font-size: 0.95rem; max-width: 520px; }
.order-cfg-body {
  background: var(--white);
  padding: 2rem 2.5rem 2.5rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.order-step { display: flex; flex-direction: column; gap: 0.9rem; }
.order-step-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--navy);
  border-left: 3px solid var(--gold); padding-left: 0.75rem;
}
.order-size-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.size-btn {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.25rem;
  padding: 1.1rem 1.25rem; border: 2px solid var(--border);
  border-radius: var(--radius); background: var(--bg-light); cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s;
  text-align: left; font-family: var(--font);
}
.size-btn:hover { border-color: var(--gold); background: var(--gold-pale); }
.size-btn.active { border-color: var(--gold); background: var(--gold-pale); box-shadow: 0 0 0 3px rgba(212,132,26,0.15); }
.size-btn-pill {
  font-size: 0.72rem; font-weight: 700; background: var(--navy); color: white;
  padding: 0.15rem 0.55rem; border-radius: 20px; letter-spacing: 0.05em;
}
.size-btn.active .size-btn-pill { background: var(--gold); }
.size-btn-name { font-size: 1rem; font-weight: 600; color: var(--navy); margin-top: 0.2rem; }
.size-btn-desc { font-size: 0.78rem; color: var(--text-muted); }
.order-qty-btns { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.qty-btn {
  display: flex; flex-direction: column; align-items: center;
  padding: 0.7rem 1.2rem; border: 2px solid var(--border); border-radius: var(--radius);
  background: var(--bg-light); cursor: pointer; font-size: 0.95rem; font-weight: 700;
  color: var(--navy); min-width: 72px; gap: 0.1rem; font-family: var(--font);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s;
}
.qty-btn span { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); }
.qty-btn:hover { border-color: var(--gold); background: var(--gold-pale); }
.qty-btn.active { border-color: var(--gold); background: var(--gold-pale); box-shadow: 0 0 0 3px rgba(212,132,26,0.15); }
.qty-btn.active span { color: var(--navy); }
.order-summary {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.order-summary-line { display: flex; align-items: baseline; gap: 0.75rem; }
.order-summary-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-muted); min-width: 58px;
}
.order-summary-val { font-size: 0.95rem; font-weight: 500; color: var(--navy); }
.order-summary-price {
  font-size: 1.75rem; font-weight: 800; color: var(--navy);
  font-family: var(--font-serif); line-height: 1;
}
.order-per { font-size: 0.82rem; color: var(--text-muted); padding-left: calc(58px + 0.75rem); }
.btn-paypal {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem;
  background: var(--navy); color: white; font-size: 1rem; font-weight: 700;
  padding: 1rem 2.5rem; border-radius: var(--radius); text-decoration: none;
  border: none; cursor: pointer; font-family: var(--font);
  transition: background 0.2s var(--ease), transform 0.15s;
  width: 100%; max-width: 420px; margin-top: 0.75rem; letter-spacing: 0.02em;
}
.btn-paypal:hover { background: var(--navy-mid); transform: translateY(-2px); }
.checkout-btns { display: flex; flex-direction: column; gap: 0; margin-top: 0.75rem; width: 100%; max-width: 420px; }
.checkout-btns .btn-paypal { margin-top: 0; }
.checkout-divider {
  display: flex; align-items: center; gap: 0.75rem;
  margin: 0.6rem 0; color: var(--text-muted); font-size: 0.78rem;
}
.checkout-divider::before, .checkout-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.btn-guest {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: transparent; color: var(--navy); font-size: 0.9rem; font-weight: 600;
  padding: 0.9rem 2rem; border-radius: var(--radius); text-decoration: none;
  border: 2px solid var(--navy); cursor: pointer; font-family: var(--font);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.15s;
  width: 100%; letter-spacing: 0.01em;
}
.btn-guest:hover { background: var(--navy); color: white; transform: translateY(-2px); }
.order-payment-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border);
}
.pay-option { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.1rem; }
.pay-option-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.4rem; }
.pay-option-name { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.pay-option-detail { font-size: 0.78rem; color: var(--text-muted); line-height: 1.45; }
.venmo-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 800;
  background: #3D95CE; color: white; padding: 0.1rem 0.55rem;
  border-radius: 4px; letter-spacing: 0.04em; margin-bottom: 0.35rem;
}
.order-checkout-note {
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.55;
  margin-top: 1rem; padding: 0.9rem 1.1rem;
  background: var(--navy-light); border-radius: var(--radius);
  border-left: 3px solid var(--navy);
}
.order-checkout-note strong { color: var(--navy); }
@media (max-width: 640px) {
  .order-cfg-header { padding: 1.75rem 1.25rem 1.5rem; }
  .order-cfg-body { padding: 1.5rem 1.25rem 2rem; }
  .order-payment-row { grid-template-columns: 1fr; }
  .qty-btn { min-width: 60px; padding: 0.6rem 0.85rem; }
  .btn-paypal { max-width: 100%; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 3rem;
}
.contact-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem; border: 1px solid var(--border);
  border-radius: var(--radius-lg); background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s;
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); border-color: var(--gold-border); }
.contact-icon-box {
  width: 48px; height: 48px; border-radius: var(--radius); flex-shrink: 0;
  border: 1px solid var(--gold-border); background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--gold);
}
.contact-card-label { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.contact-card-value { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.contact-card-sub { font-size: 0.8rem; color: var(--text-muted); }
.contact-liability {
  margin-top: 1.5rem; padding: 1.25rem;
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 0.8rem; color: var(--text-muted); line-height: 1.65;
}
.contact-sidebar {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 2rem; color: var(--text-on-navy);
  position: sticky; top: 100px;
  box-shadow: var(--shadow-lg);
}
.contact-sidebar h3 { font-size: 1.25rem; font-weight: 700; color: var(--text-on-navy); margin-bottom: 0.5rem; }
.contact-sidebar p { font-size: 0.875rem; color: var(--text-dim-navy); line-height: 1.7; margin-bottom: 1.25rem; }
.sidebar-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.25rem 0; }
.sidebar-detail { font-size: 0.8rem; color: var(--text-dim-navy); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 8px; }
.sidebar-detail a { color: var(--text-on-navy); }
.sidebar-detail a:hover { color: var(--gold-light); }

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.privacy-section { background: var(--white); padding: 80px 0; }
.privacy-inner { max-width: 820px; margin: 0 auto; padding: 0 2rem; }
.privacy-date { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2rem; }
.privacy-inner h2 {
  font-size: 1.15rem; font-weight: 700; color: var(--navy);
  margin: 2rem 0 0.75rem;
  padding-top: 1rem; border-top: 1px solid var(--border);
}
.privacy-inner p { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; margin-bottom: 0.9rem; }
.privacy-inner ul { margin: 0 0 1rem 1.5rem; list-style: disc; }
.privacy-inner ul li { font-size: 0.95rem; color: var(--text-body); line-height: 1.75; margin-bottom: 0.4rem; }
.privacy-inner a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold-border); }
.privacy-inner a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .pricing-grid, .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-product-name { padding-top: 100px; white-space: normal; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding-top: 1.5rem; padding-bottom: 108px; }
  .hero-right { display: none; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .familiar-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .founder-photo-wrap { grid-template-columns: 1fr; }
  .story-inner { grid-template-columns: 1fr; }
  .founder-sidebar { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .compare-table th, .compare-table td { padding: 0.65rem 0.75rem; font-size: 0.82rem; }
}
@media (max-width: 700px) {
  .section-pad { padding: 64px 0; }
  .pricing-grid, .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-line { display: none; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .inner-hero { padding: 130px 0 60px; }
}
@media (max-width: 500px) {
  .pricing-grid, .prod-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero-product-name { padding-top: 90px; font-size: clamp(2.2rem, 14vw, 5rem); }
  .hero-inner { padding-top: 1rem; padding-bottom: 112px; }
  .hero-headline { font-size: 2.5rem; }
  .footer-bottom-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
}
