/* ============================================================
   MY BITCOIN WILL — DESIGN SYSTEM
   Version 1.0 | mybitcoinwill.com
   ============================================================ */

/* ---- Blog hidden for launch — delete rules below to restore -- */
.nav-links a[href="/blog/"],
#mobile-nav a[href="/blog/"] { display: none; }
.footer-col a[href="/blog/"],
.footer-col a[href="../blog/"] { display: none; }

/* ---- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0f1724;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ---- CSS Variables ---------------------------------------- */
:root {
  --orange:        #F7931A;
  --orange-hover:  #e07d0a;
  --orange-glow:   rgba(247, 147, 26, 0.10);
  --navy:          #2C3E50;
  --navy-light:    #3a5068;
  --navy-dark:     #1a2535;
  --bg:            #0f1724;
  --bg-section:    #142035;
  --bg-card:       #1e2d42;
  --bg-card-hover: #243349;
  --border:        rgba(255,255,255,0.09);
  --border-orange: rgba(247, 147, 26, 0.30);
  --text-primary:  #ffffff;
  --text-secondary:#c0cdd8;
  --text-muted:    #7a8fa6;
  --grey-dark:     #404040;
  --container:     1160px;
  --section-pad:   2.5rem 0;
  --radius:        10px;
  --radius-lg:     18px;
  --shadow:        0 6px 30px rgba(0,0,0,0.4);
  --shadow-orange: 0 6px 30px rgba(247,147,26,0.18);
  --transition:    all 0.3s ease;
  --nav-height:    165px;
}

/* ---- Typography ------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { color: var(--text-secondary); line-height: 1.75; }
strong { color: #fff; font-weight: 600; }

/* ---- Layout ----------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: var(--section-pad); }

/* ---- Active Section Glow ---------------------------------- */
section {
  position: relative;
  border: 1px solid transparent;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}
section.section-active {
  border-color: var(--border-orange);
  box-shadow: var(--shadow-orange);
}
/* Orange top bar — injected by JS to avoid ::before/::after conflicts */
.section-glow-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 2;
  pointer-events: none;
}
section.section-active .section-glow-bar {
  transform: scaleX(1);
}

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--orange);
  color: #000000 !important;
  border-color: var(--orange);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---- Section Labels --------------------------------------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.85rem;
}
.section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--orange);
  display: block;
  border-radius: 2px;
}
.divider-orange {
  width: 52px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 1rem 0;
}
.divider-orange.centered { margin: 1rem auto; }
.section-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 1rem;
}

/* ---- Announcement Bar ------------------------------------- */
#announcement-bar {
  background: var(--orange);
  color: #2C3E50;
  text-align: center;
  padding: 0.65rem 1rem;
  font-weight: 800;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1001;
}
#announcement-bar strong { color: #fff; font-weight: 800; }
#announcement-bar .price-black { color: #2C3E50; font-weight: 800; }
#announcement-bar .countdown-inline {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #fff;
}
#announcement-bar a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#announcement-bar .bar-sep { opacity: 0.5; color: #2C3E50; }
#announcement-bar .bar-row { display: inline-flex; align-items: center; gap: 0.75rem; }

/* ---- Navigation ------------------------------------------- */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15,23,36,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#main-nav.scrolled {
  background: rgba(15,23,36,0.99);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img { height: 155px; max-height: 155px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.05rem;
}
.nav-links a {
  padding: 0.5rem 0.65rem;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 7px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links .btn {
  margin-left: 0.5rem;
  font-weight: 800 !important;
  font-size: 0.88rem;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Mobile Nav Drawer */
#mobile-nav {
  display: none;
  flex-direction: column;
  background: #0f1724;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.5rem 1.25rem;
  gap: 0.25rem;
  position: sticky;
  top: var(--nav-height);
  z-index: 999;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
}
#mobile-nav a:hover { color: #fff; background: rgba(255,255,255,0.04); }
#mobile-nav .btn { margin-top: 0.25rem; text-align: center; }

/* ---- Hero ------------------------------------------------- */
#hero {
  background: var(--bg);
  padding: 2.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
  min-height: calc(75vh - var(--nav-height));
  display: flex;
  align-items: center;
}
#hero::after {
  content: '';
  position: absolute;
  top: -300px;
  right: -300px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(247,147,26,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.hero-content h1 { margin-bottom: 1.5rem; }
.hero-content h1 em { font-style: normal; color: var(--orange); }
.hero-lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary) !important;
  margin-bottom: 1rem;
}
.hero-content p { margin-bottom: 1rem; }
.hero-includes {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: normal;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-orange);
  margin: 1.5rem 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.kit-stack {
  position: relative;
  width: 300px;
  height: 360px;
}
.kit-doc {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  width: 260px;
}
.kit-doc:nth-child(1) {
  top: 0; right: 0;
  transform: rotate(4deg);
  opacity: 0.45;
}
.kit-doc:nth-child(2) {
  top: 18px; right: 18px;
  transform: rotate(2deg);
  opacity: 0.7;
}
.kit-doc:nth-child(3) {
  top: 36px; right: 36px;
  z-index: 3;
  border-color: var(--border-orange);
  box-shadow: var(--shadow-orange);
}
.kit-doc-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.btc-badge {
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #000;
  flex-shrink: 0;
}
.kit-doc-header span { font-size: 0.82rem; font-weight: 600; color: #fff; }
.kit-doc-lines div {
  height: 7px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 9px;
}
.kit-doc-lines div:nth-child(1) { width: 88%; }
.kit-doc-lines div:nth-child(2) { width: 72%; }
.kit-doc-lines div:nth-child(3) { width: 82%; }
.kit-doc-lines div:nth-child(4) { width: 58%; }
.kit-doc-lines div:nth-child(5) { width: 78%; }
.kit-badge-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

/* ---- Utility ---------------------------------------------- */
.mobile-only { display: none; }
.desktop-only { display: inline; }
@media (max-width: 768px) { .mobile-only { display: inline; } .desktop-only { display: none; } }

/* ---- Trust Bar -------------------------------------------- */
#trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  align-items: center;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 auto;
  display: none;
}
.trust-item .t-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.3rem;
}
.trust-item .t-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.trust-item .t-value span { color: var(--orange); }

/* ---- Problem / Failure Modes ------------------------------ */
#problem {
  background: var(--bg-section);
}
#problem .section-label {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
#problem h2 {
  text-align: center;
  max-width: 700px;
  margin: 0.5rem auto 1rem;
}
#problem .section-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}
.failure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.failure-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.failure-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.failure-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-orange);
}
.failure-card:hover::after { transform: scaleX(1); }
.failure-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.failure-icon {
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.failure-card h3 {
  color: #fff;
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}
.failure-card p { font-size: 0.93rem; }

/* ---- Solution / Kit Contents ------------------------------ */
#solution { background: var(--bg); }
#solution .section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
#solution .section-header h2 { margin-bottom: 0.6rem; }
.kit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
/* Make 5th item span full width */
.kit-grid .kit-item:nth-child(5) {
  grid-column: 1 / -1;
  max-width: 580px;
  margin: 0 auto;
  width: 100%;
}
.kit-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: var(--transition);
}
.kit-item:hover {
  border-color: var(--border-orange);
  box-shadow: 0 4px 24px rgba(247,147,26,0.12);
}
.kit-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--orange);
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.kit-body h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.kit-subtitle {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}
.kit-body p { font-size: 0.9rem; line-height: 1.65; }

/* ---- How It Works / Steps --------------------------------- */
#how-it-works { background: var(--bg-section); }
#how-it-works .section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}
#how-it-works .section-header h2 { margin-bottom: 0.6rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps-connector {
  display: none;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.step-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
}
.step-num {
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: #000;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
}
.step-card h3 { color: #fff; margin-bottom: 0.75rem; font-size: 1.1rem; }
.step-card p { font-size: 0.9rem; }

/* ---- About Dale ------------------------------------------- */
#about-dale { background: var(--bg); }
.about-photo-mobile { display: none; } /* shown only on mobile via media query */
.about-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4.5rem;
  align-items: start;
}
.about-photo-wrap {
  position: relative;
}
.about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(135deg, var(--orange), transparent 60%);
  z-index: 0;
}
.about-photo-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 2rem;
}
.about-photo-placeholder svg {
  width: 52px;
  height: 52px;
  opacity: 0.25;
}
.about-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(247,147,26,0.3);
}
.about-photo-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-top: 2rem;
}
.about-photo-caption .credential-badge {
  color: var(--orange);
}
.about-photo-caption-company {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.about-text .section-label { margin-bottom: 0.5rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-credentials {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.5rem;
}
.credential-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}
.about-text p { margin-bottom: 0.85rem; }
.disclaimer-inline {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: normal;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  line-height: 1.6;
}

/* ---- Consultation Section --------------------------------- */
#consultation {
  background: linear-gradient(135deg, #1a2535 0%, var(--navy) 100%);
  border-top: 1px solid rgba(247,147,26,0.18);
  border-bottom: 1px solid rgba(247,147,26,0.18);
}
.consultation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.consultation-text h2 { margin-bottom: 1rem; }
.consultation-text p { margin-bottom: 1rem; }
.consultation-text .btn { display: block; width: fit-content; margin-left: auto; margin-right: auto; }
.price-tag-block {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(247,147,26,0.15);
  border: 1px solid var(--border-orange);
  color: var(--orange);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 1rem 0 0.4rem;
}
.price-premium-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem !important;
}
.consultation-card {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.consultation-card h3 { color: #fff; margin-bottom: 1rem; }
.consultation-card ul { margin-bottom: 1.75rem; }
.consultation-card ul li {
  display: flex;
  gap: 0.6rem;
  padding: 0.45rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.consultation-card ul li:last-child { border-bottom: none; }
.check { color: var(--orange); font-weight: 700; flex-shrink: 0; }
.zoom-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  text-align: center;
}

/* ---- Pricing / Founding Member ---------------------------- */
#get-kit { background: var(--bg-section); }
#get-kit .section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
#get-kit .section-header h2 { margin-bottom: 0.6rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.ribbon-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 0 var(--radius-lg) 0 0;
  pointer-events: none;
}
.ribbon {
  position: absolute;
  top: 22px;
  right: -28px;
  background: var(--orange);
  color: #000;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.22rem 3rem;
  transform: rotate(45deg);
  transform-origin: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.pricing-card.featured .pricing-label { color: var(--orange); }
.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.price-amount sup { font-size: 1.5rem; vertical-align: super; }
.price-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  margin-bottom: 0.25rem;
}
.price-selling-points {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  justify-self: end;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .price-selling-points { font-size: 0.6rem; gap: 0.3rem; }
}
@media (max-width: 380px) {
  .price-selling-points { font-size: 0.55rem; }
}
@media (max-width: 380px) {
  .price-selling-points { font-size: 0.62rem; }
}
.price-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.price-strikethrough {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 0.2rem;
}
.pricing-features {
  margin-bottom: 2rem;
  flex: 1;
}
.pricing-features li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check { color: var(--orange); font-weight: 700; flex-shrink: 0; }
.pricing-disclaimer {
  text-align: left;
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 820px;
  margin: 1.75rem auto 0;
  padding: 1rem 1.25rem;
  border: 1px solid var(--orange);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow-orange);
  line-height: 1.6;
}

/* ---- Countdown Timer -------------------------------------- */
.countdown-wrap {
  text-align: center;
  margin: 2.5rem 0 0.5rem;
}
.countdown-wrap .cdown-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}
.countdown-display {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 1.1rem 2rem;
}
.cdown-unit {
  text-align: center;
  min-width: 52px;
}
.cdown-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  display: block;
}
.cdown-label-unit {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  display: block;
}
.cdown-colon {
  font-size: 1.8rem;
  color: var(--border-orange);
  font-weight: 700;
  align-self: flex-start;
  padding-top: 0.1rem;
}

/* ---- FAQ -------------------------------------------------- */
#faq { background: var(--bg); }
#faq .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item.open { border-color: var(--border-orange); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 0.85rem;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 1.5rem 1.3rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ---- Disclaimer Section Wrapper --------------------------- */
.disclaimer-section { padding: 2.5rem 0; }

/* ---- Disclaimer Box --------------------------------------- */
.disclaimer-box {
  background: var(--bg-card);
  border: 1px solid var(--orange);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-orange);
  padding: 1.5rem 1.75rem;
  margin: 2.5rem auto;
  max-width: 820px;
  text-align: center;
}
.disclaimer-box h4 {
  font-size: 0.85rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.6rem;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.disclaimer-box p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: left;
}

/* ---- Final CTA -------------------------------------------- */
#final-cta {
  padding: 2rem 0 1rem;
  background: linear-gradient(160deg, #1e2d42 0%, #0f1724 55%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#final-cta::before {
  content: '₿';
  position: absolute;
  font-size: 22rem;
  font-weight: 800;
  color: rgba(247,147,26,0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
#final-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
  position: relative;
}
#final-cta p {
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  position: relative;
}
#final-cta p:last-of-type {
  margin-bottom: 0;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ---- Free Checklist / Lead Magnet ------------------------- */
.checklist-callout {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0;
}
.checklist-callout .section-label {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.checklist-callout h2 {
  margin-bottom: 0.75rem;
}
.checklist-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.checklist-preview {
  list-style: none;
  text-align: left;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}
.checklist-preview li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.checklist-preview .check {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.checklist-form {
  margin-top: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.checklist-form-inner {
  display: flex;
  gap: 1rem;
  align-items: end;
}
.checklist-field {
  flex: 1;
}
.checklist-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-align: left;
}
.checklist-field input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.checklist-field input:focus {
  outline: none;
  border-color: var(--orange);
}
.checklist-field input::placeholder {
  color: var(--text-muted);
}
.checklist-form .btn {
  white-space: nowrap;
  padding: 0.75rem 1.5rem;
}
.checklist-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  text-align: center;
}

/* ---- Jurisdiction / Waitlist ------------------------------- */
.jurisdiction-callout {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0;
}
.jurisdiction-callout .section-label {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.jurisdiction-callout h2 {
  margin-bottom: 0.75rem;
}
.jurisdiction-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.waitlist-form {
  margin-top: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.waitlist-fields {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1.25rem;
  align-items: end;
}
.waitlist-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.waitlist-field input,
.waitlist-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.waitlist-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8fa6' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.waitlist-field input:focus,
.waitlist-field select:focus {
  outline: none;
  border-color: var(--orange);
}
.waitlist-field select option {
  background: var(--bg-card);
  color: #fff;
}
.waitlist-field input::placeholder {
  color: var(--text-muted);
}
.waitlist-btn-wrap .btn {
  white-space: nowrap;
  padding: 0.75rem 1.5rem;
}
.waitlist-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}
.waitlist-success {
  margin-top: 1.5rem;
  background: rgba(247, 147, 26, 0.08);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.waitlist-success p {
  color: var(--orange);
  font-weight: 600;
  font-size: 1rem;
}

/* ---- Trust Badge ------------------------------------------ */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  padding: 0.5rem 1rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4ade80;
}
.trust-badge .shield {
  font-size: 1rem;
}

/* ---- Footer ----------------------------------------------- */
footer {
  background: #0b1220;
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand {
  display: none !important;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 1.1rem;
}
.footer-col a {
  display: block;
  color: #ffffff;
  font-size: 0.85rem;
  padding: 0.3rem 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 0.78rem;
  color: #ffffff;
  line-height: 1.5;
}
.footer-legal {
  font-size: 0.75rem;
  color: #ffffff;
  max-width: 620px;
  line-height: 1.6;
  text-align: left;
}

/* ---- Blog Page -------------------------------------------- */
.blog-hero {
  padding: 4.5rem 0 3rem;
  background: var(--bg);
}
.blog-hero h1 { margin-bottom: 0.75rem; }
.blog-hero p { max-width: 560px; }
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 3rem 0 5rem;
}
.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.post-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-orange);
}
.post-thumb {
  aspect-ratio: 16/9;
  background: var(--bg-section);
  overflow: hidden;
  position: relative;
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--navy) 100%);
  font-size: 2.5rem;
}
.video-indicator {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.post-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-meta {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.post-cat {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}
.post-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.post-body h3 {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.post-body p { font-size: 0.875rem; flex: 1; }
.post-read-more {
  margin-top: 1rem;
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}
.post-card:hover .post-read-more { gap: 0.6rem; }

/* ---- About Page ------------------------------------------- */
.about-page-hero {
  background: var(--bg);
  padding: 4.5rem 0 3rem;
}
.about-page-hero h1 { margin-bottom: 0.5rem; }

/* Podcast embed below headshot on about page */
.podcast-embed-wrap {
  margin-top: 1.5rem;
  text-align: center;
}
.podcast-embed-wrap h4 {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.podcast-embed-wrap iframe {
  border-radius: var(--radius);
  width: 100%;
}

/* ---- Contact Page ----------------------------------------- */
.contact-hero {
  background: var(--bg);
  padding: 4.5rem 0 3rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  padding: 4rem 0 5rem;
}
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form-wrap p { margin-bottom: 1.75rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-style: italic;
}
.contact-info-wrap { }
.contact-info-wrap h3 { margin-bottom: 0.5rem; }
.contact-info-wrap > p { margin-bottom: 2rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item .ci-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.contact-info-item .ci-value {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
.contact-info-item .ci-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ---- Book a Session Page ---------------------------------- */
.book-hero {
  background: var(--bg);
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}
.book-hero h1 { margin-bottom: 0.75rem; }
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  padding: 3rem 0 5rem;
  align-items: start;
}
.book-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
}
.book-info-card .price-display {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin: 0.5rem 0 0.2rem;
}
.book-info-card .price-display span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}
.book-divider { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }
.book-features { margin-bottom: 1.5rem; }
.book-features li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.book-features li:last-child { border-bottom: none; }
.cal-embed-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Refund Guarantee Badge ------------------------------- */
.refund-guarantee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  text-align: left;
}
.refund-guarantee .shield-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.refund-guarantee p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}
.refund-guarantee strong {
  color: #4ade80;
}

/* ---- Fade-up Animations ----------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---- Utility ---------------------------------------------- */
.text-orange { color: var(--orange); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ---- Responsive ------------------------------------------- */

/* Large desktop — slightly tighter nav */
@media (max-width: 1400px) {
  .nav-links a { font-size: 0.76rem; padding: 0.5rem 0.45rem; }
  .nav-links .btn { font-size: 0.8rem; padding: 0.65rem 1rem; }
}

@media (max-width: 1200px) {
  .nav-links a { font-size: 0.7rem; padding: 0.5rem 0.3rem; }
  .nav-links .btn { font-size: 0.75rem; padding: 0.6rem 0.85rem; }
}

/* Switch to hamburger at 1100px — long nav link names overflow below this */
@media (max-width: 1100px) {
  :root { --section-pad: 2.5rem 0; --nav-height: 175px; }
  .nav-logo img { height: 169px; max-height: 169px; }
  .nav-container { justify-content: center; position: relative; }
  .nav-logo { flex-grow: 1; justify-content: center; }
  .nav-toggle { position: absolute; right: 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo-wrap {
    max-width: 240px;
    margin: 0 auto;
    order: -1; /* Photo above text */
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .book-grid { grid-template-columns: 1fr; }
  .book-info-card { position: static; }
  /* Announcement bar: hide outer pipe only; keep inner row separators */
  #announcement-bar .bar-sep-outer { display: none; }
  #announcement-bar { gap: 0.35rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 2.5rem 0; }
  .failure-grid { grid-template-columns: 1fr; }
  .kit-grid { grid-template-columns: 1fr; }
  .kit-grid .kit-item:nth-child(5) { max-width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  /* Show photo on mobile — centered above text */
  .about-photo-wrap {
    display: block;
    max-width: 200px;
    margin: 0 auto;
    order: -1;
  }
  .consultation-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .posts-grid { grid-template-columns: 1fr; }
  /* Footer 2-col layout — hide logo on mobile, tight spacing */
  footer { padding: 1.5rem 0 0; }
  .footer-brand { display: none !important; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding-top: 0;
  }
  .footer-bottom { flex-direction: column; gap: 1rem; }
  .footer-legal { text-align: left; max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-projects-grid { grid-template-columns: 1fr !important; }
  /* Announcement bar: 2-line layout on mobile */
  #announcement-bar { flex-direction: column; align-items: center; gap: 0.2rem; font-size: 0.68rem; font-weight: 800; }
  #announcement-bar .bar-sep-outer { display: none; }
  #announcement-bar .bar-row { gap: 0.5rem; justify-content: center; }
  /* Hero padding tighter */
  #hero { padding: 1.25rem 0 1rem; min-height: auto; }
  .hero-lead { font-size: 1.05rem; }
  /* Reduce top padding on key sections */
  #solution { padding-top: 1.5rem; }
  #how-it-works { padding-top: 1.5rem; }
  .who-for-section { padding-top: 1.5rem; }
  .testimonials-section { padding-top: 1.5rem; }
  /* Left-align section leads */
  #solution .section-lead, .who-for-section .section-lead { text-align: left; }
  /* Left-align step card text on mobile; number left, heading right inline */
  .step-card { text-align: left; display: grid; grid-template-columns: 48px 1fr; column-gap: 0.85rem; align-items: center; }
  .step-num { margin: 0; grid-row: 1; grid-column: 1; }
  .step-card h3 { grid-row: 1; grid-column: 2; margin-bottom: 0; align-self: center; }
  .step-card p { grid-row: 2; grid-column: 1 / 3; margin-top: 0.65rem; }
  /* Centre About Dale headings */
  #about-dale .about-text .section-label { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
  #about-dale .about-text h2 { text-align: center; }
  /* Centre consultation section headings */
  #consultation .section-label { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
  #consultation h2 { text-align: center; }
  /* Left-align final CTA paragraph and price notes */
  #final-cta p { text-align: left; margin-left: 0; margin-right: 0; max-width: none; }
  .price-premium-note { text-align: left; }
  /* Tighten disclaimer section */
  .disclaimer-section { padding: 1rem 0; }
  /* Section headers tighter margins */
  #problem .section-intro { margin-bottom: 2rem; }
  #solution .section-header { margin-bottom: 2rem; }
  #how-it-works .section-header { margin-bottom: 2rem; }
  #get-kit .section-header { margin-bottom: 2rem; }
  #faq .section-header { margin-bottom: 2rem; }
  /* About Dale — hide stacked photo, float mobile photo within text */
  #about-dale .container { padding-right: 2.5rem; }
  .about-photo-wrap { display: none !important; }
  .about-photo-mobile {
    display: block;
    float: right;
    width: 42%;
    margin: 0.5rem 0 0.75rem 1rem;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .about-photo-mobile img { width: 100%; display: block; border-radius: var(--radius); }
  .about-text { overflow: hidden; } /* clear float from mobile photo */
  .about-full-width > h3:first-child { margin-top: 0; }
  /* Book page */
  .book-hero { padding: 3rem 0 1.5rem; }
  .book-grid { padding: 2rem 0 3rem; }
  .payment-methods-note { text-align: left !important; }
  .cal-embed-wrap { min-height: 500px; }
  /* About page */
  .about-page-hero { padding: 3rem 0 2rem; }
  /* Contact */
  .contact-hero { padding: 3rem 0 2rem; }
  .contact-grid { padding: 2rem 0 3rem; }
  .contact-form-wrap { padding: 1.5rem; }
  /* Blog */
  .blog-hero { padding: 3rem 0 2rem; }
  .posts-grid { padding: 2rem 0 3rem; }
  /* Waitlist form stacks on mobile */
  .waitlist-fields { grid-template-columns: 1fr; gap: 1rem; }
  .waitlist-btn-wrap { margin-top: 0.25rem; }
  .waitlist-btn-wrap .btn { width: 100%; }
  .waitlist-form { padding: 1.5rem; }
  /* Checklist form stacks on mobile */
  .checklist-form-inner { flex-direction: column; align-items: center; text-align: center; }
  .checklist-form .btn { width: 100%; }
  .checklist-form { padding: 1.5rem; }
  .checklist-field { width: 100%; }
  .checklist-field label { text-align: center; }
  .checklist-field input { text-align: center; }
}

@media (max-width: 520px) {
  :root { --nav-height: 155px; }
  .nav-logo img { height: 150px; max-height: 150px; }
  .section-label { font-size: 0.85rem; }
  /* Hide orange dash on testimonials label so text fits one line */
  .testimonials-section .section-label::before { display: none; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.05rem; }
  .container { padding: 0 1rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { width: 100%; }
  .countdown-display { padding: 0.75rem 0.9rem; gap: 0.25rem; }
  .cdown-num { font-size: 1.5rem; }
  .cdown-unit { min-width: 40px; }
  #announcement-bar { font-size: 0.65rem; padding: 0.55rem 0.75rem; }
  .consultation-card { padding: 1.25rem; }
  /* Trust bar single column on small phones */
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .trust-item .t-value { font-size: 0.9rem; }
  .trust-item .t-label { font-size: 0.65rem; }
  .jurisdiction-soon { display: block; }
  /* Kit items stack icon + text */
  .kit-item { padding: 1.5rem; gap: 1rem; }
  /* Steps */
  .step-card { padding: 1.5rem; }
  .step-num { width: 48px; height: 48px; font-size: 1.25rem; }
  /* Pricing */
  .pricing-card { padding: 1.75rem; }
  .pricing-card .pricing-features { font-size: 0.82rem; }
  .price-amount { font-size: 2.5rem; }
  .price-amount sup { font-size: 1.2rem; }
  /* Failure cards */
  .failure-card { padding: 1.5rem; }
  /* FAQ */
  .faq-q { padding: 1rem 1.1rem; font-size: 0.88rem; }
  .faq-a-inner { padding: 0 1.1rem 1rem; }
  /* Final CTA */
  #final-cta { padding: 2rem 0 1rem; }
  #final-cta h2 { font-size: 1.6rem; }
  /* Disclaimer */
  .disclaimer-box { padding: 1.25rem; }
  .disclaimer-inline { font-size: 0.75rem; }
  /* Footer tighter */
  footer { padding: 2.5rem 0 0; }
  footer { padding: 1.5rem 0 0; }
  .footer-brand { display: none !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding-bottom: 1.5rem; }
  .footer-col { font-size: 0.8rem; }
  /* Mobile nav touch-friendly */
  #mobile-nav a { padding: 0.9rem 1rem; font-size: 0.95rem; }
  #mobile-nav { padding: 0.5rem 1rem 1rem; }
  /* About photo — keep hidden on very small screens */
  .about-photo-wrap { display: none !important; }
  .about-photo-mobile { width: 38%; }
  /* Allow long button text to wrap on small screens */
  .btn { white-space: normal; text-align: center; }
}

@media (max-width: 380px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.3rem; }
  .container { padding: 0 0.75rem; }
  #announcement-bar { font-size: 0.62rem; }
  .countdown-display { padding: 0.65rem 0.75rem; }
  .cdown-num { font-size: 1.3rem; }
  .cdown-unit { min-width: 36px; }
  .trust-grid { grid-template-columns: 1fr; }
  .price-amount { font-size: 2.2rem; }
  .pricing-card { padding: 1.5rem; }
  .btn { padding: 0.7rem 1.2rem; font-size: 0.88rem; }
  .btn-lg { padding: 0.85rem 1.5rem; font-size: 0.95rem; }
}

/* ============================================================
   NEW ADDITIONS — UI/UX Improvements
   ============================================================ */

/* ---- Sticky Mobile CTA Bar -------------------------------- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(15,23,36,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-orange);
  padding: 0.65rem 1rem;
  text-align: center;
}
.mobile-sticky-cta .btn {
  width: 100%;
  max-width: 400px;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
}
@media (max-width: 1100px) {
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 70px; }
}

/* ---- Testimonials Section --------------------------------- */
.testimonials-section {
  background: var(--bg-section);
  padding: 2.5rem 0 1rem;
}
/* Tighten spacing between testimonials and free download */
#free-checklist { padding-top: 1rem; }
/* Tighten spacing between availability and disclaimer */
#jurisdiction { padding-bottom: 1rem; }
/* Tighten spacing between get-kit disclaimer and jurisdiction */
#get-kit { padding-bottom: 1rem; }
.testimonials-section .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  display: none;
}
.testimonial-card p {
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  padding-top: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: #000;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ---- Who Is This For Section ------------------------------ */
.who-for-section {
  background: var(--bg);
  padding: var(--section-pad);
}
.who-for-section .section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.who-for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto;
}
.who-for-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.who-for-card:hover {
  border-color: var(--border-orange);
}
.who-for-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.who-for-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.who-for-card p {
  font-size: 0.85rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .who-for-grid { grid-template-columns: 1fr; }
}

/* ---- Countdown Flip Animation ----------------------------- */
.cdown-num {
  position: relative;
  overflow: hidden;
}
.cdown-num .cd-digit {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
.cdown-num .cd-digit.flip-out {
  transform: translateY(-100%);
  opacity: 0;
}
.cdown-num .cd-digit.flip-in {
  transform: translateY(100%);
  opacity: 0;
}

/* ---- Trust Bar Icons -------------------------------------- */
.trust-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.3rem;
  font-size: 1.1rem;
}

/* ---- Exit-Intent Popup (desktop only) --------------------- */
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.exit-popup-overlay.active { display: flex; }
.exit-popup {
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s;
}
.exit-popup-close:hover { color: #fff; }
.exit-popup h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.exit-popup p {
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.exit-popup .form-inline {
  display: flex;
  gap: 0.5rem;
}
.exit-popup .form-inline input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
}
.exit-popup .form-inline input:focus { border-color: var(--orange); }
.exit-popup .form-inline .btn { flex-shrink: 0; }
.exit-popup .form-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
@media (max-width: 1100px) {
  .exit-popup-overlay { display: none !important; }
}

/* ---- Video Placeholder ------------------------------------ */
.video-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247,147,26,0.06) 0%, transparent 50%);
}
.video-placeholder .play-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-glow);
  border: 2px solid var(--border-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  position: relative;
}

/* ---- As Seen On Bar --------------------------------------- */
.as-seen-on {
  background: var(--bg);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.as-seen-on .section-label {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
}
.as-seen-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.as-seen-logos img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(40%) brightness(0.9);
  opacity: 0.75;
  transition: all 0.3s ease;
}
.as-seen-logos img:hover {
  filter: none;
  opacity: 1;
}
@media (max-width: 768px) {
  .as-seen-logos { flex-wrap: wrap; justify-content: center; }
  .logo-row2-wrap { order: 99; display: flex; align-items: center; gap: 1.5rem; flex-basis: 100%; justify-content: center; }
}
@media (max-width: 520px) {
  .as-seen-logos { gap: 1.5rem 1rem; display: flex; flex-wrap: wrap; justify-content: center; }
  .as-seen-logos img { height: 36px; }
  .logo-row2-wrap img { height: 30px; }
}

/* ---- Booking Timeline ------------------------------------- */
.booking-timeline {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 720px;
  position: relative;
  justify-content: center;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  position: relative;
  flex: 1;
}
.timeline-text { text-align: center; }
.timeline-text h4 { display: block; margin: 0 0 0.15rem; }
.timeline-text p { display: block; margin: 0; }
.timeline-text h4::after { content: none; }
.timeline-step::after {
  display: none;
}
.timeline-step:last-child::after { display: none; }
.timeline-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--orange);
  color: #000;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: relative;
  z-index: 1;
}
.timeline-step h4 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.timeline-step p { font-size: 0.8rem; color: var(--text-muted); }
@media (max-width: 520px) {
  .booking-timeline { flex-direction: column; display: grid; grid-template-columns: 40px 1fr; column-gap: 0.75rem; row-gap: 0.75rem; align-items: center; margin: 1rem 0; }
  .timeline-step { display: contents; flex-direction: row; }
  .timeline-step::after { display: none; }
  .timeline-num { margin: 0; }
  .timeline-text { text-align: left; }
  .timeline-text h4 { display: inline; margin: 0; }
  .timeline-text p { display: inline; margin: 0; }
  .timeline-text h4::after { content: ' \2013  '; font-weight: 400; color: var(--text-muted); }
}

/* ---- Cookie/Privacy Banner -------------------------------- */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(15,23,36,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.cookie-banner.active { display: block; }
.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-inner p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.cookie-inner p a { color: var(--orange); text-decoration: underline; }
.cookie-btns {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cookie-btns .btn { padding: 0.5rem 1.25rem; font-size: 0.82rem; }

/* ---- Breadcrumbs ------------------------------------------ */
.breadcrumbs {
  padding: 0.75rem 0;
  background: transparent;
}
.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li { display: flex; align-items: center; gap: 0.4rem; }
.breadcrumbs ol li a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumbs ol li a:hover { color: var(--orange); }
.breadcrumbs .bc-sep { color: var(--text-muted); opacity: 0.5; }
.breadcrumbs .bc-current { color: var(--text-secondary); }

/* ---- Mobile Nav Backdrop ---------------------------------- */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav-backdrop.active {
  display: block;
  opacity: 1;
}

/* ---- Back to Top Button ----------------------------------- */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 997;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(10px);
}
.back-to-top.visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--orange-hover);
  transform: translateY(-3px);
}
@media (max-width: 1100px) {
  .back-to-top { bottom: 5rem; right: 1rem; }
}

/* ---- Response Time Badge ---------------------------------- */
.response-badge {
  background: linear-gradient(135deg, rgba(247,147,26,0.15), rgba(247,147,26,0.05));
  border: 2px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.response-badge .badge-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}
.response-badge h4 {
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.response-badge p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ---- Is This Right For Me (Book page) --------------------- */
.right-for-me {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}
.right-for-me h3 { margin-bottom: 1rem; }
.right-for-me .rfm-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.right-for-me .rfm-item:last-child { border-bottom: none; }
.right-for-me .rfm-icon {
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
}
.right-for-me .rfm-item p { font-size: 0.88rem; margin: 0; }

/* ---- Dot Navigation (section jumper) ---------------------- */
.dot-nav {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.dot-nav.visible {
  opacity: 1;
  pointer-events: auto;
}
.dot-nav-dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.dot-nav-dot:hover {
  background: rgba(247,147,26,0.5);
  border-color: var(--orange);
  transform: scale(1.3);
}
.dot-nav-dot.active {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 8px rgba(247,147,26,0.5);
  transform: scale(1.25);
}
.dot-nav-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: var(--bg-card);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  border: 1px solid var(--border-orange);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.dot-nav-label::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--border-orange);
}
.dot-nav-dot:hover .dot-nav-label {
  opacity: 1;
}

/* Mobile: smaller dots, closer to edge */
@media (max-width: 768px) {
  .dot-nav {
    right: 0.6rem;
    gap: 0.75rem;
  }
  .dot-nav-dot {
    width: 10px;
    height: 10px;
  }
  .dot-nav-label {
    right: calc(100% + 10px);
    font-size: 0.7rem;
    padding: 0.3rem 0.55rem;
  }
}

/* ---- Section visual separation (gradient shifts) ---------- */
#problem {
  background: linear-gradient(180deg, #142035 0%, #16243a 100%);
}
#solution {
  background: linear-gradient(180deg, #0f1724 0%, #121d30 100%);
}
#how-it-works {
  background: linear-gradient(180deg, #152238 0%, #142035 100%);
}
#who-for {
  background: linear-gradient(180deg, #111c2c 0%, #142035 100%);
}
.testimonials-section {
  background: linear-gradient(180deg, #152238 0%, #16253d 100%) !important;
}
#free-checklist {
  background: linear-gradient(180deg, #142035 0%, #111c2c 100%) !important;
}
#about-dale {
  background: linear-gradient(180deg, #0f1724 0%, #121d30 100%);
}
#consultation {
  background: linear-gradient(180deg, #152238 0%, #162640 100%);
}
#get-kit {
  background: linear-gradient(180deg, #142035 0%, #16243a 100%);
}
#jurisdiction {
  background: linear-gradient(180deg, #111c2c 0%, #142035 100%) !important;
}
#faq {
  background: linear-gradient(180deg, #0f1724 0%, #121d30 100%);
}

/* ---- Stronger section headings ---------------------------- */
.section-label {
  font-size: 0.95rem !important;
  letter-spacing: 0.15em !important;
  text-shadow: 0 0 20px rgba(247,147,26,0.3);
}
#problem .section-label,
#solution .section-label,
#how-it-works .section-label,
.who-for-section .section-label,
.testimonials-section .section-label,
#about-dale .section-label,
#consultation .section-label,
#get-kit .section-label,
#faq .section-label {
  margin-bottom: 1rem;
}
.section-header h2,
#problem h2 {
  font-size: 2.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
  .section-header h2,
  #problem h2 {
    font-size: 1.6rem;
  }
}
