/* No-Prep Veneers landing page additions.
   Builds on _shared.css + _service-page.css tokens. */

/* ═══ HERO ENHANCEMENTS ═══ */
.lp-hero {
  padding: 200px 0 90px;
  background:
    radial-gradient(ellipse at 75% 25%, rgba(13,158,143,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(13,158,143,.10) 0%, transparent 55%),
    linear-gradient(180deg, #07182B 0%, #0B2240 60%, #0E2A4E 100%);
  color: #E6EEF5;
}
.lp-hero::before {
  /* subtle grid texture */
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}
.lp-hero .breadcrumb,
.lp-hero .breadcrumb a { color: rgba(230,238,245,.55); }
.lp-hero .breadcrumb a:hover { color: var(--teal); }
.lp-hero h1 { font-size: clamp(2.6rem, 5.2vw, 4rem); font-weight: 500; color: #fff; }
.lp-hero h1 .accent { color: #5BD4C4; font-style: normal; }
.lp-hero .lead { color: rgba(230,238,245,.78); }
.lp-hero .service-hero-meta { border-top-color: rgba(255,255,255,.12); }
.lp-hero .service-hero-meta .meta-label { color: rgba(230,238,245,.55); }
.lp-hero .service-hero-meta .meta-value { color: #fff; }
.lp-hero .btn-outline {
  border-color: rgba(255,255,255,.28);
  color: #fff;
}
.lp-hero .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}
.lp-price-strip {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(13,158,143,.14);
  border: 1px solid rgba(91,212,196,.35);
  padding: 10px 18px; border-radius: 50px;
  margin-bottom: 22px;
}
.lp-price-strip .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #5BD4C4;
  box-shadow: 0 0 0 4px rgba(91,212,196,.25);
}
.lp-price-strip .text {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5BD4C4;
}

/* ═══ THICKNESS DIAGRAM (custom hero visual) ═══ */
.lp-hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(91,212,196,.18) 0%, transparent 55%),
    linear-gradient(180deg, #122F52 0%, #0B2240 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.lp-hero-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.lp-hv-corner {
  position: absolute;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(230,238,245,.45);
}
.lp-hv-corner.tl { top: 20px; left: 20px; color: #5BD4C4; }
.lp-hv-corner.tr { top: 20px; right: 20px; }
.lp-hv-corner.bl { bottom: 20px; left: 20px; }
.lp-hv-corner.br { bottom: 20px; right: 20px; }
.lp-thickness-svg {
  position: relative; z-index: 1;
  width: 100%; max-width: 360px;
  /* On dark bg: the dark-navy strokes need to flip to light. We override per-element via CSS below. */
}
/* invert tooth/root strokes for dark hero bg */
.lp-thickness-svg path[stroke="#0B2240"] { stroke: #E6EEF5 !important; fill: rgba(255,255,255,0.06) !important; }
.lp-thickness-svg text[fill="#6B8090"] { fill: rgba(230,238,245,.55) !important; }
.lp-thickness-svg text[fill="#0B2240"] { fill: #fff !important; }
.lp-thickness-svg line[stroke="#6B8090"] { stroke: rgba(230,238,245,.4) !important; }
.lp-thickness-svg path[stroke="#6B8090"] { stroke: rgba(230,238,245,.45) !important; }
.lp-thickness-svg path[stroke="#0D9E8F"] { stroke: #5BD4C4 !important; }
.lp-thickness-svg text[fill="#0D9E8F"] { fill: #5BD4C4 !important; }
.lp-thickness-svg line[stroke="#0D9E8F"] { stroke: #5BD4C4 !important; }
.lp-thickness-svg text[fill="#B7C2CC"] { fill: rgba(230,238,245,.35) !important; }
.lp-thickness-svg line[stroke="#B7C2CC"] { stroke: rgba(230,238,245,.25) !important; }
.lp-thickness-svg circle[fill="#B7C2CC"] { fill: rgba(230,238,245,.2) !important; }

/* ═══ TRUST STRIP (light variant for landing page) ═══ */
.lp-trust-strip {
  background: var(--navy);
  padding: 22px 0;
}
.lp-trust-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 28px;
}
.lp-trust-pill {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.8); font-size: 0.85rem;
  font-family: var(--sans);
}
.lp-trust-pill svg {
  width: 18px; height: 18px;
  color: var(--teal);
  stroke-width: 1.6;
}
.lp-trust-pill strong { color: #fff; font-weight: 600; }
.lp-trust-sep {
  width: 1px; height: 22px;
  background: rgba(255,255,255,.14);
}
@media (max-width: 700px) {
  .lp-trust-sep { display: none; }
}

/* ═══ PRICING CALCULATOR ═══ */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
.calc-side .h3-style {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.calc-side p { font-size: 1rem; line-height: 1.7; color: #4a6278; margin-bottom: 16px; }
.calc-rationale {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.calc-rationale li {
  padding-left: 26px;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #3e5a73;
}
.calc-rationale li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 1px;
  background: var(--teal);
}
.calc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.calc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(13,158,143,.08) 0%, transparent 55%);
  pointer-events: none;
}
.calc-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
  position: relative;
}
.calc-eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
}
.calc-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 24px;
  position: relative;
}
.calc-count-row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 14px;
  position: relative;
}
.calc-count-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.calc-count-value {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.calc-count-value .unit {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .04em;
  margin-left: 6px;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  outline: none;
  margin: 18px 0 12px;
  position: relative;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(13,158,143,.4);
  transition: transform .2s, box-shadow .2s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(13,158,143,.4);
}
.calc-tickmarks {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--muted);
  padding: 0 4px;
  margin-bottom: 28px;
}
.calc-tick {
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.calc-tick.active {
  color: var(--teal);
  background: var(--teal-lt);
}
.calc-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0 22px;
}
.calc-line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: #4a6278;
  position: relative;
}
.calc-line .right { font-weight: 500; color: var(--navy); }
.calc-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0 0;
  margin-top: 12px;
  border-top: 1px solid var(--border);
  position: relative;
}
.calc-total-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.calc-total-value {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.01em;
  transition: color .25s;
}
.calc-total-value.flash { color: var(--teal); }
.calc-fineprint {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px dashed var(--border);
  position: relative;
}
@media (max-width: 900px) {
  .calc-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ═══ COMPARISON TOGGLE ═══ */
.cmp-card {
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.cmp-toggle-row {
  display: flex;
  background: var(--offwhite);
  border-bottom: 1px solid var(--border);
}
.cmp-toggle-btn {
  flex: 1;
  padding: 22px 24px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color .25s;
  text-align: left;
  display: flex; align-items: center; gap: 12px;
}
.cmp-toggle-btn .num {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: inherit;
  letter-spacing: 0;
  text-transform: none;
}
.cmp-toggle-btn.active { color: var(--teal); background: var(--white); }
.cmp-toggle-btn.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--teal);
}
.cmp-body { padding: 40px; }
.cmp-pane {
  display: none;
  animation: fadeUp .35s var(--ease-out);
}
.cmp-pane.active { display: grid; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.cmp-pane {
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.cmp-pane h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.cmp-pane .cmp-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.cmp-pane.np .cmp-eyebrow { color: var(--teal); }
.cmp-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.cmp-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.55;
  color: #3e5a73;
}
.cmp-list li:last-child { border-bottom: 1px solid var(--border); }
.cmp-list .ic {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: -1px;
}
.cmp-list .ic.x {
  background: rgba(11,34,64,.06);
  color: var(--navy);
}
.cmp-list .ic.check {
  background: var(--teal-lt);
  color: var(--teal);
}
@media (max-width: 700px) {
  .cmp-pane { grid-template-columns: 1fr; gap: 28px; }
  .cmp-toggle-btn { padding: 16px; font-size: 0.7rem; }
  .cmp-toggle-btn .num { font-size: 1rem; }
  .cmp-body { padding: 28px; }
}

/* ═══ TECH PILLARS (light, on landing page) ═══ */
.tech-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.tech-pillar {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color .3s, transform .3s var(--ease-out);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}
.tech-pillar:hover { border-color: var(--teal); transform: translateY(-3px); }
.tech-pillar-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--teal-lt);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.tech-pillar-icon svg { width: 28px; height: 28px; stroke-width: 1.5; }
.tech-pillar h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.tech-pillar .pillar-meta {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.tech-pillar p { font-size: 0.92rem; line-height: 1.6; color: #4a6278; margin: 0; }
@media (max-width: 700px) {
  .tech-pillars-grid { grid-template-columns: 1fr; }
  .tech-pillar { grid-template-columns: 1fr; }
}

/* ═══ CANDIDATES — TWO COLUMN ═══ */
.cand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.cand-col {
  padding: 32px;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.cand-col.yes {
  background: rgba(13,158,143,.04);
  border-color: rgba(13,158,143,.25);
}
.cand-col.no {
  background: var(--offwhite);
}
.cand-col .cand-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.cand-col.yes .cand-header { border-bottom-color: rgba(13,158,143,.18); }
.cand-col .cand-tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
}
.cand-col.yes .cand-tag { background: var(--teal); color: #fff; }
.cand-col.no .cand-tag { background: rgba(11,34,64,.08); color: var(--navy); }
.cand-col h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
}
.cand-list {
  list-style: none;
  display: grid;
  gap: 14px;
}
.cand-list li {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #3e5a73;
  display: flex; gap: 12px; align-items: flex-start;
}
.cand-list li::before {
  flex-shrink: 0;
  width: 18px; text-align: center;
  margin-top: -2px;
  font-family: var(--sans);
  font-weight: 600;
}
.cand-col.yes .cand-list li::before { content: '+'; color: var(--teal); font-size: 1.1rem; }
.cand-col.no .cand-list li::before { content: '–'; color: var(--muted); font-size: 1.2rem; }
@media (max-width: 700px) {
  .cand-grid { grid-template-columns: 1fr; }
}

/* ═══ DR JAY — CONDENSED ═══ */
.lp-drjay-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 56px;
  align-items: center;
  margin-top: 40px;
}
.lp-drjay-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
}
.lp-drjay-portrait img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.lp-drjay-handle {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(8,24,40,.78);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
}
.lp-drjay-handle svg { width: 16px; height: 16px; color: var(--teal); }
.lp-drjay-text h2 { margin-bottom: 16px; }
.lp-drjay-creds {
  display: flex; flex-direction: column;
  gap: 12px; margin-top: 24px; margin-bottom: 28px;
}
.lp-drjay-creds li {
  font-size: 0.95rem;
  color: #3e5a73;
  display: flex; align-items: flex-start; gap: 10px;
}
.lp-drjay-creds li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 9px;
  flex-shrink: 0;
}
.lp-practice-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.lp-practice-meta div {
  font-family: var(--sans);
}
.lp-pm-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.lp-pm-value {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .lp-drjay-grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-practice-meta { grid-template-columns: 1fr; gap: 14px; }
}

/* ═══ STICKY MOBILE CTA ═══ */
.lp-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: none;
  gap: 10px;
  align-items: center;
  box-shadow: 0 -8px 24px rgba(11,34,64,.08);
  transform: translateY(100%);
  transition: transform .3s var(--ease-out);
}
.lp-sticky-cta.show { transform: none; }
.lp-sticky-cta .price {
  flex-shrink: 0;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.1;
}
.lp-sticky-cta .price .sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.lp-sticky-cta .btn {
  flex: 1;
  justify-content: center;
  padding: 12px 18px;
  font-size: 0.85rem;
}
@media (max-width: 700px) {
  .lp-sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
}

/* ═══ TWEAKS PANEL ═══ */
#lp-tweaks {
  position: fixed;
  top: 50%; right: 24px;
  transform: translateY(-50%);
  z-index: 200;
  width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(11,34,64,.18);
  padding: 22px;
  display: none;
  font-family: var(--sans);
}
#lp-tweaks.visible { display: block; }
.lp-tw-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.lp-tw-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.lp-tw-close {
  width: 24px; height: 24px;
  background: var(--offwhite);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.85rem;
}
.lp-tw-close:hover { color: var(--navy); }
.lp-tw-section {
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.lp-tw-section:first-of-type { border-top: none; padding-top: 0; }
.lp-tw-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.lp-tw-options { display: flex; flex-wrap: wrap; gap: 6px; }
.lp-tw-opt {
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  background: transparent;
  transition: all .2s;
}
.lp-tw-opt.active {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-lt);
}
.lp-tw-swatches { display: flex; gap: 8px; }
.lp-tw-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
}
.lp-tw-swatch.active {
  border-color: var(--navy);
  transform: scale(1.12);
}
@media (max-width: 700px) { #lp-tweaks { display: none !important; } }

/* ═══ THEME OVERRIDES (driven by tweaks) ═══ */
:root[data-theme="warm"] {
  --teal: #b8895d;
  --teal-lt: #f4ebe0;
  --teal-mid: #d4a378;
}
:root[data-theme="indigo"] {
  --teal: #4a5fc7;
  --teal-lt: #e8ebf9;
  --teal-mid: #6479dd;
}

:root[data-density="airy"] .service-body-section { padding: 120px 0; }
:root[data-density="dense"] .service-body-section { padding: 64px 0; }

:root[data-h1style="serif"] .lp-hero h1 { font-family: var(--serif); }
:root[data-h1style="display"] .lp-hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.02;
}

/* ═══ Radiant landing-page topbar + consult panel alignment ═══ */
#topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(11,34,64,.10);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
.topbar-logo { display: flex; align-items: center; color: var(--navy); }
.topbar-logo .logo-img { height: 48px; width: auto; display: block; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 999px;
}
.topbar-phone:hover { color: var(--teal); }
.topbar-phone-icon { width: 16px; height: 16px; color: var(--teal); display: inline-flex; }
.topbar-phone-icon svg { width: 100%; height: 100%; }
@media (max-width: 640px) {
  .topbar-inner { min-height: 64px; }
  .topbar-logo .logo-img { height: 42px; }
  .topbar-phone span:last-child { display: none; }
  .topbar-phone { padding: 8px; }
  .topbar-right { gap: 8px; }
  .topbar-cta { padding: 10px 14px; font-size: .78rem; }
}

.veneer-consult { background: linear-gradient(160deg, #081828 0%, #0B2240 58%, #0a2a35 100%); color: #fff; }
.consult-inner { display: grid; grid-template-columns: .82fr 1.18fr; gap: 64px; align-items: center; }
.consult-copy .label { margin-bottom: 14px; }
.consult-copy .h2 { margin-bottom: 16px; }
.on-dark { color: #fff; }
.on-dark-sub { color: rgba(255,255,255,.72); font-size: 1.08rem; line-height: 1.65; max-width: 460px; margin: 0 0 28px; }
.consult-reassure { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 12px; }
.consult-reassure li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.82); font-size: .96rem; }
.consult-reassure li span { color: var(--teal); font-weight: 800; }
.consult-call { border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; display: grid; gap: 4px; }
.consult-call span { color: rgba(255,255,255,.5); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.consult-call a { color: #fff; font-family: var(--display, var(--sans)); font-size: 1.6rem; font-weight: 700; }
.consult-call a:hover { color: var(--teal); }
.consult-booking { background: rgba(255,255,255,.96); color: var(--navy); border-radius: 24px; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 24px 80px rgba(0,0,0,.28); overflow: hidden; }
.booking-tabs { display: grid; grid-template-columns: 1fr 1fr; background: #eef4f6; padding: 8px; gap: 8px; }
.booking-tab { appearance: none; border: 0; background: transparent; border-radius: 16px; padding: 14px 16px; cursor: pointer; text-align: left; transition: .2s ease; }
.booking-tab.is-active { background: #fff; box-shadow: 0 8px 28px rgba(11,34,64,.10); }
.booking-tab-label { display: block; color: var(--navy); font-weight: 800; font-size: .95rem; }
.booking-tab-sub { display: block; margin-top: 3px; color: #6B8090; font-size: .78rem; }
.booking-panel { padding: 20px; }
.scheduler-frame { width: 100%; height: min(650px, 72vh); min-height: 520px; border-radius: 18px; overflow: hidden; border: 1px solid rgba(11,34,64,.10); background: #fff; }
.scheduler-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.booking-fineprint, .form-fineprint { margin: 12px 0 0; color: #6B8090; font-size: .82rem; text-align: center; }
.consult-form { display: grid; gap: 18px; padding: 26px; }
.form-head { display: grid; gap: 8px; }
.form-step { color: #6B8090; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.form-progress { height: 6px; background: #e7eef1; border-radius: 999px; overflow: hidden; }
.form-progress-fill { height: 100%; width: 50%; background: var(--teal); border-radius: inherit; transition: width .2s ease; }
.form-step-panel { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field-label { color: var(--navy); font-size: .82rem; font-weight: 800; }
.field-opt { color: #8aa0ad; font-weight: 600; }
.field input, .field textarea { width: 100%; border: 1px solid #d9e4e8; border-radius: 14px; padding: 13px 14px; font: inherit; color: var(--navy); background: #fff; outline: none; }
.field input:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(13,158,143,.10); }
.field-err { display: none; color: #b42318; font-size: .78rem; }
.field.error .field-err { display: block; }
.field.error input { border-color: #e74c3c; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio { display: inline-flex; align-items: center; gap: 8px; border: 1px solid #d9e4e8; border-radius: 999px; padding: 10px 13px; font-weight: 700; color: var(--navy); }
.form-actions { display: flex; justify-content: space-between; gap: 12px; }
.btn-ghost-light { color: var(--navy); background: #eef4f6; }
.form-success { text-align: center; padding: 30px 12px; }
.success-check { width: 54px; height: 54px; margin: 0 auto 12px; border-radius: 50%; display: grid; place-items: center; background: rgba(13,158,143,.12); color: var(--teal); font-size: 1.7rem; font-weight: 900; }
.form-success h3 { margin: 0; font-size: 1.4rem; }
.form-success p { color: #6B8090; line-height: 1.6; }
.form-success a { color: var(--teal); font-weight: 800; }
@media (max-width: 960px) {
  .consult-inner { grid-template-columns: 1fr; gap: 36px; }
  .scheduler-frame { height: 620px; min-height: 520px; }
}
@media (max-width: 640px) {
  .booking-tabs { grid-template-columns: 1fr; }
  .booking-panel { padding: 14px; }
  .field-row { grid-template-columns: 1fr; }
  .scheduler-frame { height: 620px; min-height: 500px; }
  .form-actions { flex-direction: column; }
}
