/* =========================================
   СуйфэньхэDent — Дизайн «Нефрит»
   Палитра: #171714 · #4D8060 · #D4A853 · #F9F9F5
   ========================================= */

:root {
  /* ── Нефрит ── */
  --jade:        #4D8060;
  --jade-dark:   #3A6249;
  --jade-light:  #7AAD8F;
  --jade-tint:   rgba(77,128,96,0.08);

  /* ── Золото (акцент второго уровня) ── */
  --gold:        #D4A853;
  --gold-light:  #E8C47A;

  /* ── Нейтралы ── */
  --ink:         #171714;
  --ink-mid:     #2E2E2A;
  --text:        #3A3A36;
  --muted:       #706E69;
  --faded:       #B0AEA8;
  --border:      rgba(23,23,20,0.09);

  /* ── Фоны ── */
  --bg:          #F9F9F5;
  --surface:     #F2F2EC;
  --surface-2:   #EAEAE4;
  --white:       #FFFFFF;

  /* ── Семантика ── */
  --red:         #B83232;
  --green:       #4D8060;

  /* ── Форма ── */
  --radius:      4px;
  --radius-lg:   6px;
  --shadow:      0 2px 16px rgba(23,23,20,0.08);
  --shadow-lg:   0 6px 32px rgba(23,23,20,0.12);

  --font: system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── UTILITIES ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  background: var(--jade-tint);
  color: var(--jade);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.section-tag.white {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}
.section-tag.gold {
  background: rgba(212,168,83,0.12);
  color: var(--gold);
}

h2.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 14px;
  color: var(--ink);
  text-wrap: balance;
}
h2.section-title.white { color: #fff; }

p.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.65;
}
p.section-sub.white { color: rgba(255,255,255,0.72); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }

.btn-primary {
  background: var(--jade);
  color: #fff;
  border-color: var(--jade);
}
.btn-primary:hover { background: var(--jade-dark); border-color: var(--jade-dark); opacity: 1; }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; opacity: 1; }

.btn-blue {
  background: var(--jade);
  color: #fff;
}

.btn-whatsapp {
  background: #005FF9;
  color: #fff;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: .06em;
}

/* ── HEADER / NAV ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(249,249,245,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: block;
}
.logo-icon img {
  width: 40px; height: 40px;
  object-fit: contain;
  display: block;
}
.logo-text { line-height: 1.2; }
.logo-name { font-size: 15px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.logo-city { font-size: 11px; color: var(--jade); font-weight: 600; letter-spacing: .04em; }

nav {
  display: flex;
  gap: 28px;
}
nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
  transition: color .2s;
}
nav a:hover { color: var(--ink); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: all .3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 66px;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(14,14,12,0.82) 0%,
    rgba(14,14,12,0.58) 55%,
    rgba(14,14,12,0.32) 100%
  );
}
.hero-fallback {
  position: absolute;
  inset: 0;
  background: var(--ink);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(77,128,96,0.2);
  border: 1px solid rgba(77,128,96,0.4);
  color: #A8D4B8;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--jade-light);
  border-radius: 50%;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero h1 .highlight {
  color: var(--jade-light);
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,.80);
  margin-bottom: 40px;
  line-height: 1.65;
}

/* New UTP styles */
.hero-offer {
  margin-bottom: 28px;
  line-height: 1.3;
}
.hero-offer-inner {
  display: inline;
  font-size: clamp(18px, 2.2vw, 23px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  background: linear-gradient(90deg, var(--jade) 0%, var(--jade-dark) 100%);
  padding: 4px 14px 5px;
  /* painted highlight — fully opaque, no blending with video */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-xray {
  background: rgba(10,10,8,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.11);
  border-left: 3px solid var(--jade-light);
  padding: 20px 24px 18px;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-xray-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--jade-light);
  margin-bottom: 14px;
}

.hero-xray-list {
  list-style: none;
  padding: 0; margin: 0 0 14px;
  counter-reset: xray;
  display: flex; flex-direction: column; gap: 10px;
}
.hero-xray-list li {
  counter-increment: xray;
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600; color: #fff;
  line-height: 1.3;
}
.hero-xray-list li::before {
  content: counter(xray);
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--jade); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
}

.hero-xray-note {
  font-size: 12px; color: rgba(255,255,255,.45);
  line-height: 1.55; margin: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 12px;
}

.hero-disclaimer {
  font-size: 11px; color: rgba(255,255,255,.32);
  line-height: 1.65; margin-top: 18px;
  max-width: 480px;
  padding-right: 80px; /* clear MAX float button on mobile */
}
@media (min-width: 769px) {
  .hero-disclaimer { padding-right: 0; }
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
}
.trust-item .check {
  width: 20px; height: 20px;
  background: var(--jade);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  color: #fff;
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.45);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bobble 2.2s infinite;
}
@keyframes bobble {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50%      { transform:translateX(-50%) translateY(7px); }
}

/* BLOCK 2 — NUMBERS BAR REMOVED */

/* ── BLOCK 3 — PAIN & SOLUTION ── */
.pain-solution {
  padding: 88px 0;
  background: var(--surface);
}

.pain-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.pain-block h3, .solution-block h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: -.01em;
}
.pain-block h3 { color: var(--red); }
.solution-block h3 { color: var(--jade); }

.pain-item, .solution-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.pain-icon {
  width: 36px; height: 36px;
  background: rgba(184,50,50,.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0; margin-top: 2px;
}

.solution-icon {
  width: 36px; height: 36px;
  background: var(--jade-tint);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0; margin-top: 2px;
}

.pain-text h4, .solution-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}
.pain-text p, .solution-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.pain-solution-header {
  text-align: center;
  margin-bottom: 56px;
}

.divider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.divider-arrow::before, .divider-arrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.arrow-circle {
  width: 40px; height: 40px;
  background: var(--jade);
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 16px;
  margin: 0 16px;
}

/* BLOCK 4 — SERVICES REMOVED */

/* BLOCK 5 — BEFORE / AFTER REMOVED */

/* BLOCK 6 — HOW IT WORKS REMOVED */

/* ── BLOCK 7 — DOCTORS ── */
.doctors {
  padding: 88px 0;
  background: var(--bg);
}

.doctors-header {
  text-align: center;
  margin-bottom: 48px;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.doctor-card {
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.doctor-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.doctor-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
}
.doctor-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.doctor-photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: var(--surface);
}

.doctor-info {
  padding: 20px;
  background: var(--white);
}
.doctor-info h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 3px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.doctor-spec {
  font-size: 12px;
  color: var(--jade);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.doctor-exp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.doctor-exp .years { color: var(--jade); }
.doctor-edu {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── BLOCK 8 — CLINIC GALLERY ── */
.clinic {
  padding: 88px 0;
  background: var(--surface);
}

.clinic-header {
  text-align: center;
  margin-bottom: 48px;
}

.clinic-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.clinic-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.clinic-photo {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.clinic-photo:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.clinic-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.clinic-photo:hover img { transform: scale(1.03); }

.clinic-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clinic-feat {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
}
.feat-icon {
  width: 44px; height: 44px;
  background: var(--jade-tint);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.feat-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; color: var(--ink); }
.feat-text p  { font-size: 13px; color: var(--muted); }

/* BLOCK 9 — LOGISTICS REMOVED */

/* ── BLOCK 10 — REVIEWS ── */
.reviews {
  padding: 88px 0;
  background: var(--surface);
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow);
}

.review-stars {
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 2px;
  background: var(--jade);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.review-city { font-size: 12px; color: var(--muted); }
.review-date { font-size: 11px; color: var(--faded); margin-top: 2px; }

.review-quote {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 48px;
  color: var(--border);
  font-family: Georgia, serif;
  line-height: 1;
}

/* BLOCK 11 — CASES REMOVED */

/* ── BLOCK 12 — FAQ ── */
.faq {
  padding: 88px 0;
  background: var(--surface);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: background .2s;
  gap: 16px;
  user-select: none;
}
.faq-q:hover { background: var(--surface); }

.faq-chevron {
  font-size: 16px;
  color: var(--jade);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .2s;
  padding: 0 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 24px 20px;
}

/* BLOCK 13 — GUARANTEES REMOVED */

/* BLOCK 14 — BOOKING FORM REMOVED */

/* ── FLOATING MAX BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-tooltip {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  max-width: 200px;
  text-align: right;
  animation: fadeInUp .4s ease;
  display: none;
}

.wa-btn {
  width: 58px; height: 58px;
  background: #005FF9;
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,95,249,.4);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(0,95,249,.55); }
.wa-btn svg { width: 34px; height: 34px; }

@keyframes fadeInUp {
  from { opacity:0; transform:translateY(10px); }
  to   { opacity:1; transform:none; }
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-name { color: #fff; font-size: 16px; }
.footer-brand .logo-city { color: var(--jade-light); }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  margin-top: 14px;
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: .14em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--jade-light); }

.footer-contacts p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contacts strong { color: #fff; }

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.06);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,.55);
  transition: all .2s;
}
.social-link:hover { background: var(--jade); color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: var(--jade-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(3,1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  /* Header: hide phone at 1024 so CTA button doesn't overflow */
  .header-phone { display: none; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .burger { display: flex; }
  .number-item { padding: 0 20px; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); gap: 0; }
  .number-item { padding: 24px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .pain-solution-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .doctors-grid { grid-template-columns: 1fr 1fr; }
  .clinic-layout { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  /* hero-btns: both CTAs visible on mobile */
  .header-phone { display: none; }
  /* prevent header flex items from overflowing on narrow screens */
  .logo { min-width: 0; flex-shrink: 1; }
  .logo-name { font-size: 13px; }
  .logo-city { font-size: 10px; }
  .header-inner { gap: 12px; }
  .header-cta { gap: 10px; }
  /* section padding reductions */
  .pain-solution { padding: 56px 0; }
}

@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .doctors-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .wa-float { bottom: 16px; right: 16px; }
  .hero-content { padding: 32px 0 36px; }
}

/* ── HELPERS ── */
.case-half img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.doctor-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.pain-solution-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) {
  .pain-solution-two-col { grid-template-columns: 1fr; }
}

.text-gold { color: var(--gold); }
.text-teal { color: var(--jade); }

img { transition: opacity .3s; }
img[src=""] { opacity: 0; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--jade-light); }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 28px;
  color: rgba(255,255,255,.6);
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ══════════════════════════════════════
   WOW EFFECTS — Нефрит
   ══════════════════════════════════════ */

/* ── Scroll progress ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  pointer-events: none;
  background: transparent;
}
#scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--jade) 0%, var(--gold) 100%);
  transition: width .1s linear;
}

/* ── Button ripple ── */
.btn { position: relative; overflow: hidden; }
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.26);
  transform: scale(0);
  animation: rippleAnim .55s linear forwards;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4.5); opacity: 0; }
}

/* ── CTA glow pulse ── */
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(77,128,96,0); }
  50%       { box-shadow: 0 0 0 8px rgba(77,128,96,0.2); }
}
.btn-primary { animation: ctaGlow 3.5s ease-in-out infinite; }

/* ── Dot grid on dark sections ── */
/* dot-grid for deleted sections removed */
/* before-pseudo removed */
/* z-index removed */
.number-value.shimmer {
  background: linear-gradient(90deg,
    var(--jade-light) 0%,
    #fff 38%,
    var(--gold-light) 62%,
    var(--jade-light) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: numShimmer 1.1s ease forwards;
}

/* ── Hero badge pulse ── */
.hero-badge .dot {
  animation: dotPulse 2.2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122,173,143,0.7); }
  60%       { box-shadow: 0 0 0 9px rgba(122,173,143,0); }
}

/* ── SVG icon system ── */
.pain-icon svg,
.solution-icon svg { width: 20px; height: 20px; }

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-icon svg { width: 30px; height: 30px; color: var(--gold-light); }

.feat-icon svg  { width: 22px; height: 22px; }
.logi-icon svg  { width: 20px; height: 20px; }

.guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  margin-left: auto;
  margin-right: auto;
}
.guarantee-icon svg { width: 32px; height: 32px; color: var(--jade-light); }

.promise-icon {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.promise-icon svg { width: 18px; height: 18px; color: var(--jade); }

.logo-icon svg { width: 20px; height: 20px; color: #fff; }

/* ── Icon entrance bounce ── */
@keyframes iconBounce {
  0%   { transform: scale(0.4) rotate(-8deg); opacity: 0; }
  65%  { transform: scale(1.18) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg);   opacity: 1; }
}
.anim.visible .pain-icon,
.anim.visible .solution-icon,
.anim.visible .feat-icon,
.anim.visible .logi-icon {
  animation: iconBounce .5s cubic-bezier(.34,1.56,.64,1) both;
  animation-delay: inherit;
}

/* ── Savings underline draw ── */
.savings { position: relative; display: inline-block; }
.savings::after {
  content: '';
  position: absolute;
  bottom: 1px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--jade), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s cubic-bezier(.22,1,.36,1) .2s;
}
.savings.visible::after { transform: scaleX(1); }

/* ── Anim easing upgrade ── */
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1),
              transform .65s cubic-bezier(.22,1,.36,1);
}
.anim.visible { opacity: 1; transform: none; }

/* ── Card hover enhancements ── */
.case-detail {
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s, border-color .25s;
}
.case-detail:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
}

.review-card {
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(23,23,20,0.11);
}

/* ── FAQ open glow ── */
.faq-item.open {
  box-shadow: 0 4px 24px rgba(77,128,96,0.1);
  border-color: rgba(77,128,96,0.2);
}

/* ── Step number hover glow ── */
.step-num {
  transition: background .3s, box-shadow .3s;
}
.step:hover .step-num {
  background: rgba(255,255,255,0.14);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25), 0 0 28px rgba(77,128,96,0.35);
}

/* ── Price table row slide ── */
.price-table tbody tr { will-change: transform; }

/* ── Pain/solution h3 without emoji ── */
.pain-block h3, .solution-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pain-block h3 svg   { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }
.solution-block h3 svg { width: 18px; height: 18px; color: var(--jade); flex-shrink: 0; }

/* ── Hero parallax container ── */
.hero-content { will-change: transform; }

/* ── Gradient text accent ── */
.hero h1 .highlight {
  background: linear-gradient(90deg, var(--jade-light) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Number item top accent border ── */
.number-item {
  border-top: 2px solid transparent;
  transition: border-color .3s;
}
.number-item:hover { border-top-color: var(--jade); }

/* ── Section divider line ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── Booking form focus states ── */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(77,128,96,0.12);
  background: var(--white);
}

/* ── Footer brand tagline ── */
.footer-brand p { transition: color .2s; }

/* ── MAX button pulse ── */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,95,249,0.4); }
  50%       { box-shadow: 0 6px 30px rgba(0,95,249,0.65), 0 0 0 8px rgba(0,95,249,0.10); }
}
.wa-btn { animation: waPulse 3s ease-in-out infinite; }

/* ═══════════════════════════════════════════
   PREMIUM TIER 2
   ═══════════════════════════════════════════ */

/* ── Grain texture ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ── Clip-path section dividers ── */

/* ── Text reveal on h2 ── */
.reveal-wrap  { display: block; overflow: hidden; }
.reveal-inner {
  display: block;
  transform: translateY(108%);
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.anim.visible .reveal-inner { transform: translateY(0); }
.anim.visible .reveal-inner + .reveal-inner { transition-delay: .1s; }

/* ═══════════════════════════════════════════
   SAVINGS CALCULATOR
   ═══════════════════════════════════════════ */
/* CALCULATOR CSS REMOVED */

/* BA SLIDER CSS REMOVED */

/* ══════════════════════════════════════════════════════
   EXPERT CASE BLOCK
   ══════════════════════════════════════════════════════ */

.expert-case {
  background: #F0F4F8;
  padding: 72px 0;
}

.expert-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(15, 30, 60, .09), 0 1px 6px rgba(15, 30, 60, .05);
  padding: 52px 48px 48px;
  display: grid;
  grid-template-columns: 57fr 43fr;
  gap: 48px;
  align-items: start;
}

/* ── Left column ── */
.expert-left { display: flex; flex-direction: column; }

.expert-meta { margin-bottom: 16px; }

.expert-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #005FF9;
  background: rgba(0, 95, 249, .08);
  border-radius: 4px;
  padding: 4px 10px;
}

.expert-title {
  font-size: clamp(22px, 2.6vw, 33px);
  font-weight: 800;
  line-height: 1.22;
  color: #171714;
  margin: 0 0 14px;
  text-wrap: balance;
}

.expert-title-accent { color: #005FF9; }

.expert-sub {
  font-size: 15px;
  color: #5a6375;
  margin: 0 0 28px;
  line-height: 1.55;
}

/* X-ray image area */
.expert-xray-wrap { margin-bottom: 12px; }

.expert-xray-btn {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  background: #0a0a08;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
}

.expert-xray-btn:focus-visible {
  outline: 3px solid #005FF9;
  outline-offset: 3px;
}

.expert-xray-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: opacity .25s;
}

.expert-xray-btn:hover .expert-xray-img { opacity: .92; }

.expert-xray-badge-top,
.expert-xray-badge-bot {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 95, 249, .82);
  border-radius: 4px;
  padding: 3px 9px;
  line-height: 1.5;
  pointer-events: none;
}

.expert-xray-badge-top { top: 10px; left: 10px; }
.expert-xray-badge-bot { bottom: 10px; left: 10px; }

.expert-xray-zoom-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  padding: 4px 9px;
  pointer-events: none;
  transition: opacity .2s;
}

.expert-xray-btn:hover .expert-xray-zoom-hint { opacity: 0; }

.expert-footnote {
  font-size: 12px;
  color: #8a94a6;
  margin: 0;
}

/* ── Right column ── */
.expert-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Variant 1 — dark navy card */
.expert-v1 {
  background: #0f1e3c;
  border-radius: 14px;
  padding: 28px 28px 24px;
  color: #fff;
}

.expert-v1-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 3px 9px;
  margin-bottom: 16px;
}

.expert-v1-units {
  font-size: 17px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin: 0 0 6px;
}

.expert-v1-price {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: #4da6ff;
  margin: 0 0 6px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
  line-height: 1.15;
  white-space: nowrap;
}

.expert-v1-time {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin: 0 0 20px;
}
.expert-v1-note {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,.72);
  margin: 0 0 10px;
}

/* Amber warning inside dark card */
.expert-warning {
  background: #FDF6E3;
  border-radius: 8px;
  padding: 14px 16px;
}

.expert-warning-title {
  font-size: 14px;
  font-weight: 700;
  color: #7c5a00;
  margin: 0 0 5px;
}

.expert-warning-sub {
  font-size: 12px;
  color: #9a7200;
  line-height: 1.5;
  margin: 0;
}

/* Variant 2 — light teal card */
.expert-v2 {
  background: #fff;
  border: 1.5px solid #e2eaf0;
  border-left: 3px solid #009E88;
  border-radius: 14px;
  padding: 20px 24px;
}

.expert-v2-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #009E88;
  margin-bottom: 10px;
}

.expert-v2-name {
  font-size: 17px;
  font-weight: 700;
  color: #171714;
  margin: 0 0 6px;
}

.expert-v2-price {
  font-size: 22px;
  font-weight: 800;
  color: #009E88;
  margin: 0 0 4px;
  font-variant-numeric: tabular-nums;
}

.expert-v2-time {
  font-size: 13px;
  color: #5a6375;
  margin: 0;
}

/* CTAs */
.expert-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.expert-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: #005FF9;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background .18s, transform .15s;
  line-height: 1.3;
  box-sizing: border-box;
}

.expert-btn-primary:hover { background: #004fd4; transform: translateY(-1px); }
.expert-btn-primary:active { transform: none; }

.expert-btn-pdf {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  color: #0f1e3c;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  border: 1.5px solid #c8d4e0;
  cursor: pointer;
  transition: border-color .18s, background .18s;
  line-height: 1.3;
  box-sizing: border-box;
}

.expert-btn-pdf:hover { border-color: #005FF9; background: rgba(0,95,249,.04); }


/* ── Lightbox ── */
.expert-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}

.expert-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.expert-lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 8px 60px rgba(0,0,0,.7);
  cursor: zoom-out;
}

.expert-lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.expert-lightbox-close:hover { background: rgba(255,255,255,.28); }

/* ── Mobile ── */
@media (max-width: 820px) {
  .expert-case { padding: 48px 0; }

  .expert-card {
    grid-template-columns: 1fr;
    padding: 28px 20px 32px;
    gap: 28px;
    border-radius: 16px;
  }

  .expert-btn-primary,
  .expert-btn-pdf { font-size: 14px; }
}

@media (max-width: 480px) {
  .expert-card { padding: 24px 16px 28px; }
  .expert-v1 { padding: 22px 18px 18px; }
  .expert-v2 { padding: 16px 18px; }
  .expert-xray-badge-bot { font-size: 9px; padding: 3px 7px; max-width: calc(100% - 120px); }
  .expert-v1-price { white-space: normal; }
}

/* ══════════════════════════════════════════════════════
   UPLOAD SCAN BLOCK
   ══════════════════════════════════════════════════════ */

.upload-block {
  background: #E8EFF6;
  padding: 72px 0;
}

.upload-block .container { max-width: 1320px; }

.upload-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(15,30,60,.09), 0 1px 6px rgba(15,30,60,.05);
  padding: 52px 48px 48px;
  display: grid;
  grid-template-columns: 44fr 56fr;
  gap: 52px;
  align-items: start;
}

/* ── Left ── */
.upload-left { display: flex; flex-direction: column; gap: 0; }

.upload-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #005FF9;
  background: rgba(0,95,249,.08);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 16px;
}

.upload-title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.22;
  color: #0f1e3c;
  margin: 0 0 14px;
  text-wrap: balance;
}

.upload-sub {
  font-size: 16px;
  color: #5a6375;
  line-height: 1.55;
  margin: 0 0 24px;
}

/* Process structure: Ваш шаг + Что делаем мы */
.upload-process {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 10px;
}

.upload-your-step {
  background: rgba(0, 95, 249, .06);
  border: 1.5px solid rgba(0, 95, 249, .18);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 16px;
}

.upload-your-step-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #005FF9;
  margin-bottom: 6px;
}

.upload-your-step-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0f1e3c;
  margin-bottom: 4px;
}

.upload-your-step-desc {
  font-size: 14px;
  color: #5a6375;
  line-height: 1.45;
  margin: 0;
}

.upload-our-steps { padding-left: 4px; }

.upload-our-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8a94a6;
  margin-bottom: 12px;
}

/* Steps */
.upload-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.upload-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.upload-step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: #005FF9;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.upload-steps li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.upload-steps li strong {
  font-size: 14px;
  font-weight: 700;
  color: #0f1e3c;
  line-height: 1.3;
}

.upload-steps li span {
  font-size: 14px;
  color: #5a6375;
  line-height: 1.4;
}

.upload-steps-note {
  font-size: 13px;
  color: #8a94a6;
  margin: 0 0 24px;
  padding-left: 40px;
}

/* Trust signals */
.upload-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.upload-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #3d4d6a;
  line-height: 1.4;
}

/* ── Right: Form ── */
.upload-right { min-width: 0; }

.upload-form { display: flex; flex-direction: column; gap: 0; }

/* Drop zone */
.drop-zone {
  position: relative;
  border: 2px dashed #b8ccef;
  border-radius: 12px;
  background: #F6F9FF;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  margin-bottom: 12px;
}

.drop-zone:hover,
.drop-zone:focus-visible,
.drop-zone.drag-over {
  border-color: #005FF9;
  background: #EEF3FB;
}

.drop-zone:focus-visible { outline: 3px solid #005FF9; outline-offset: 2px; }

.drop-zone-icon { margin-bottom: 10px; }

.drop-zone-text {
  font-size: 14px;
  color: #3d4d6a;
  margin: 0 0 4px;
  line-height: 1.45;
}

.drop-zone-text u { text-underline-offset: 2px; }

.drop-zone-select {
  font-size: 12.5px;
  color: #005FF9;
  font-weight: 600;
  margin: 6px 0 0;
}
.drop-zone-select u { text-underline-offset: 2px; cursor: pointer; }

.drop-zone-hint {
  font-size: 12px;
  color: #8a94a6;
  margin: 0;
}

/* Cloud link toggle */
.upload-cloud-toggle {
  font-size: 12.5px;
  color: #8a94a6;
  margin: 8px 0 0;
  line-height: 1.4;
}

.upload-cloud-btn {
  background: none;
  border: none;
  padding: 0;
  color: #005FF9;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.upload-cloud-btn:hover { color: #0050d0; }

.upload-cloud-field {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.upload-cloud-field[hidden] { display: none; }

.upload-cloud-field label {
  font-size: 13px;
  font-weight: 600;
  color: #3d4d6a;
}

.upload-cloud-field input[type="url"] {
  width: 100%;
  border: 1.5px solid #c9d6e8;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13.5px;
  color: #0f1e3c;
  background: #fff;
  transition: border-color .2s;
  box-sizing: border-box;
}

.upload-cloud-field input[type="url"]:focus {
  outline: none;
  border-color: #005FF9;
  box-shadow: 0 0 0 3px rgba(0, 95, 249, .1);
}

.upload-cloud-hint {
  font-size: 11.5px;
  color: #8a94a6;
  margin: 0;
}

/* Contact method */
.upload-contact-method {
  border: none;
  padding: 0;
  margin: 16px 0;
}

.upload-contact-legend {
  font-size: 13px;
  font-weight: 600;
  color: #3d4d6a;
  margin-bottom: 10px;
  display: block;
}

.upload-contact-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.upload-contact-opt {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 7px 13px;
  border: 1.5px solid #c9d6e8;
  border-radius: 8px;
  font-size: 13.5px;
  color: #3d4d6a;
  transition: border-color .18s, background .18s;
  user-select: none;
}

.upload-contact-opt:hover {
  border-color: #005FF9;
  background: rgba(0, 95, 249, .04);
}

.upload-contact-opt input[type="radio"] {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: #005FF9;
  cursor: pointer;
}

.upload-contact-opt:has(input:checked) {
  border-color: #005FF9;
  background: rgba(0, 95, 249, .07);
  color: #0f1e3c;
  font-weight: 600;
}

/* File list */
.upload-file-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
}

.upload-file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F6F9FF;
  border: 1px solid #dde7f5;
  border-radius: 8px;
  padding: 10px 12px;
  min-width: 0;
}

.upload-file-item.error {
  background: #fff8f8;
  border-color: #f5c2c2;
}

.upload-file-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #dee9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-file-icon svg { display: block; }

.upload-file-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.upload-file-name {
  font-size: 13px;
  font-weight: 600;
  color: #0f1e3c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.upload-file-meta {
  font-size: 11px;
  color: #8a94a6;
}

.upload-file-error {
  font-size: 11px;
  color: #c0392b;
  font-weight: 600;
}

.upload-file-progress {
  height: 3px;
  background: #e2eaf0;
  border-radius: 2px;
  overflow: hidden;
}

.upload-file-progress-bar {
  height: 100%;
  background: #005FF9;
  border-radius: 2px;
  transition: width .3s;
}

.upload-file-remove {
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #8a94a6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  transition: color .15s;
}

.upload-file-remove:hover { color: #c0392b; }

/* Form fields */
.upload-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.upload-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.upload-group:last-child { margin-bottom: 0; }

.upload-group label {
  font-size: 14px;
  font-weight: 600;
  color: #0f1e3c;
}

.upload-optional {
  font-weight: 400;
  color: #8a94a6;
}

.upload-group input[type="text"],
.upload-group input[type="tel"],
.upload-group textarea {
  font-size: 16px;
  font-family: inherit;
  color: #0f1e3c;
  background: #fff;
  border: 1.5px solid #c8d4e0;
  border-radius: 8px;
  padding: 11px 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}

.upload-group input:focus,
.upload-group textarea:focus {
  border-color: #005FF9;
  box-shadow: 0 0 0 3px rgba(0,95,249,.1);
}

.upload-group input.invalid,
.upload-group textarea.invalid {
  border-color: #e0453a;
}

.upload-group textarea { resize: vertical; }

.upload-err {
  font-size: 12px;
  color: #c0392b;
  font-weight: 600;
  min-height: 16px;
}

/* Consent */
.upload-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #3d4d6a;
  cursor: pointer;
  margin-bottom: 6px;
  line-height: 1.4;
}

.upload-consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: #005FF9;
  cursor: pointer;
}

.upload-consent-link { color: #005FF9; }

/* Actions */
.upload-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 16px;
}

.upload-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  background: #005FF9;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .18s, transform .15s;
  box-sizing: border-box;
}

.upload-submit:hover { background: #004fd4; transform: translateY(-1px); }
.upload-submit:active { transform: none; }
.upload-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* No-scan card (below form) */
.upload-noscan-card {
  margin-top: 12px;
  background: #F8FAFC;
  border: 1.5px solid #D8E4F0;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.upload-noscan-card[hidden] { display: none; }
.upload-noscan-card-body { flex: 1; min-width: 0; }
.upload-noscan-card-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f1e3c;
  margin-bottom: 3px;
}
.upload-noscan-card-text {
  font-size: 13px;
  color: #5a6375;
  margin: 0;
  line-height: 1.4;
}
.upload-noscan-btn {
  flex-shrink: 0;
  background: transparent;
  color: #005FF9;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid #b8ccef;
  border-radius: 8px;
  padding: 9px 15px;
  cursor: pointer;
  transition: border-color .18s, background .18s;
  white-space: nowrap;
}
.upload-noscan-btn:hover { border-color: #005FF9; background: rgba(0,95,249,.04); }

/* Spinner */
.upload-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: uploadSpin .7s linear infinite;
}

@keyframes uploadSpin { to { transform: rotate(360deg); } }

.upload-spinner[hidden] { display: none; }

.upload-disclaimer {
  font-size: 11px;
  color: #8a94a6;
  line-height: 1.65;
  margin: 0;
}

/* ── Success state ── */
.upload-success[hidden] { display: none !important; }

.upload-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 14px;
}

.upload-success-icon { line-height: 0; }

.upload-success-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f1e3c;
  margin: 0;
}

.upload-success-text {
  font-size: 14px;
  color: #5a6375;
  line-height: 1.55;
  max-width: 380px;
  margin: 0;
}

.upload-success-meta {
  background: #F0F4F8;
  border-radius: 10px;
  padding: 14px 20px;
  text-align: left;
  width: 100%;
  max-width: 340px;
  box-sizing: border-box;
  font-size: 13px;
  color: #3d4d6a;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.upload-success-meta strong { color: #0f1e3c; }

.upload-success-more {
  background: transparent;
  color: #005FF9;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid #b8ccef;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  transition: border-color .18s;
}

.upload-success-more:hover { border-color: #005FF9; }

/* Upload visual (left column illustration) */
.upload-visual {
  margin: 0 0 24px;
  border-radius: 10px;
  overflow: hidden;
}
.upload-visual-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Mobile ── */
@media (max-width: 820px) {
  .upload-block { padding: 48px 0; }

  .upload-card {
    grid-template-columns: 1fr;
    padding: 28px 20px 32px;
    gap: 32px;
    border-radius: 16px;
  }

  .upload-fields { grid-template-columns: 1fr; gap: 0; }
  .upload-fields .upload-group { margin-bottom: 14px; }

  .upload-noscan-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .upload-noscan-btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .upload-card { padding: 24px 16px 28px; }
  .drop-zone { padding: 22px 14px; }
}

/* ═══════════════════════════════════════════════════
   UPLOAD CONTEXT BANNER (set by case selector)
   ═══════════════════════════════════════════════════ */

.upload-case-banner[hidden] { display: none !important; }

.upload-case-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, #EEF6FF 0%, #E8F2FF 100%);
  border: 1.5px solid #B8D0F8;
  border-left: 4px solid #005FF9;
  border-radius: 10px;
  padding: 14px 16px 14px 18px;
  margin-bottom: 18px;
}

.upload-case-banner-inner {
  flex: 1;
  min-width: 0;
}

.upload-case-banner-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #005FF9;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 4px;
}

.upload-case-banner-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f1e3c;
  margin-bottom: 4px;
  line-height: 1.4;
}

.upload-case-banner-text {
  font-size: 13px;
  color: #3d4d6a;
  line-height: 1.5;
  margin: 0;
}

.upload-case-banner-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #8a9db8;
  cursor: pointer;
  border-radius: 6px;
  transition: color .15s, background .15s;
  padding: 0;
  margin-top: -2px;
}

.upload-case-banner-close:hover {
  color: #0f1e3c;
  background: rgba(0,0,0,.06);
}

/* ═══════════════════════════════════════════════════
   CASE SELECTOR SECTION
   ═══════════════════════════════════════════════════ */

.case-selector {
  background: #EBF0F8;
  padding: 72px 0 80px;
}

.case-selector-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.case-selector-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #005FF9;
  background: rgba(0,95,249,.08);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.case-selector-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #0f1e3c;
  line-height: 1.22;
  margin: 0 0 16px;
}

.case-selector-sub {
  font-size: 15px;
  color: #5a6375;
  line-height: 1.6;
  margin: 0;
}

/* ── Card grid ───────────────────────────────────── */

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}

/* ── Individual card ─────────────────────────────── */

.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid #DDE8F2;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  box-shadow: 0 2px 12px rgba(15,30,60,.07);
  min-height: 340px;
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(15,30,60,.13);
  border-color: #B8CCEE;
}

.case-card:focus-visible {
  outline: 3px solid #005FF9;
  outline-offset: 3px;
}

.case-card.selected {
  border-color: #005FF9;
  border-width: 2px;
  box-shadow: 0 4px 20px rgba(0,95,249,.18);
}

/* Number badge */
.case-card-num {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 2;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: #005FF9;
  border-radius: 8px;
  padding: 3px 8px;
  letter-spacing: .04em;
  line-height: 1.4;
}

/* Selected badge */
.case-card-selected-badge {
  display: none;
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  color: #005FF9;
  background: #fff;
  border: 1.5px solid #005FF9;
  border-radius: 6px;
  padding: 2px 8px;
  letter-spacing: .03em;
}

.case-card.selected .case-card-selected-badge {
  display: block;
}

/* Image wrapper */
.case-card-img-wrap,
.case-card__picture {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
}

.case-card-img,
.case-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .3s ease;
}

.case-card:hover .case-card__image {
  transform: scale(1.02);
}

/* Card body */
.case-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 20px;
  gap: 8px;
}

.case-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f1e3c;
  line-height: 1.3;
  margin: 0;
}

.case-card-desc {
  font-size: 13px;
  color: #5a6375;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.case-card-cta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #005FF9;
  margin-top: 6px;
  transition: gap .18s;
}

.case-card:hover .case-card-cta { gap: 8px; }
.case-card.selected .case-card-cta { color: #0047CC; }

/* Grid footnote */
.case-grid-footnote {
  font-size: 12px;
  color: #8a94a6;
  text-align: center;
  margin: 6px 0 22px;
  line-height: 1.5;
}

/* ── Final CTA card (ЭТАП 08: selectable fallback <button>) ────── */

.case-cta-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  background: #0f1e3c;
  border: 0;
  border-radius: 20px;
  padding: 36px 48px;
  box-shadow: 0 4px 24px rgba(15,30,60,.18);
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: box-shadow .18s ease, transform .15s ease;
}
.case-cta-card:hover { box-shadow: 0 8px 28px rgba(15,30,60,.26); transform: translateY(-1px); }
.case-cta-card:focus-visible { outline: 3px solid rgba(255,255,255,.6); outline-offset: 3px; }
.case-cta-card.selected { box-shadow: 0 0 0 2px #fff, 0 8px 28px rgba(15,30,60,.28); }

.case-cta-left { flex: 1; display: block; }

.case-cta-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.25;
}

.case-cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,.78);
  margin: 0;
  line-height: 1.5;
}

.case-cta-action {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.case-cta-card:hover .case-cta-action { background: rgba(255,255,255,.14); }

/* ── Continue button (ЭТАП 08: single explicit CTA to #upload-scan) ── */

.case-continue-btn {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 16px 24px;
  border: 0;
  border-radius: 12px;
  background: #005FF9;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: background .18s ease, transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 10px 24px rgba(0,95,249,.18);
}
.case-continue-btn:hover { background: #004FD4; transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0,95,249,.26); }
.case-continue-btn:focus-visible { outline: 3px solid #99c2ff; outline-offset: 3px; }
.case-continue-btn:disabled,
.case-continue-btn[disabled] {
  background: #c6cdd6;
  color: #fff;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: .65;
}

/* ── Единственный дисклеймер секции (ЭТАП 08) ─────────────── */
.case-disclaimer {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.55;
  color: #6a7587;
}

/* ── Responsive ──────────────────────────────────── */

@media (max-width: 1024px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 820px) {
  .case-selector { padding: 52px 0 60px; }
  .case-selector-head { margin-bottom: 32px; }
  .case-cta-card { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 20px; }
  .case-cta-action { align-self: stretch; justify-content: center; }
}

@media (max-width: 600px) {
  .case-grid { grid-template-columns: 1fr; gap: 14px; }
  .case-card { min-height: auto; border-radius: 16px; }
  .case-card-title { font-size: 16px; }
  .case-selector-sub { font-size: 14px; }
  .case-continue-btn { font-size: 15px; padding: 15px 20px; }
}

@media (max-width: 480px) {
  .case-cta-card { border-radius: 16px; padding: 24px 18px; }
  .case-cta-title { font-size: 18px; }
  .case-disclaimer { font-size: 12px; }
}

/* ═══════════════════════════════════════════════════
   TREATMENT CHOICE BLOCK
   ═══════════════════════════════════════════════════ */

.treatment-choice {
  background: #F9FAFB;
  padding: 80px 0 88px;
  border-top: 1px solid #E4EBF4;
  scroll-margin-top: 64px;
}

/* ── Head ──────────────────────────────────────────── */

.tc-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 52px;
}

.tc-title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: #0f1e3c;
  line-height: 1.22;
  margin: 0 0 18px;
}

.tc-sub {
  font-size: 15px;
  color: #5a6375;
  line-height: 1.65;
  margin: 0;
}

/* ── Visual card (two-column) ─────────────────────── */

.tc-visual-card {
  display: grid;
  grid-template-columns: 55fr 45fr;
  background: #fff;
  border: 1px solid #E2EBF4;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 2px 14px rgba(15,30,60,.05);
  min-height: 560px;
}

/* ── Image column ─────────────────────────────────── */

.tc-visual-left {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.tc-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.tc-visual-picture {
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(1.12);
  transform-origin: center 45%;
}

.tc-jaw-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ── Glow zones ───────────────────────────────────── */

.tc-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.tc-glow.tc-glow-active { opacity: 1; }

.tc-glow[data-factor="supporting-teeth"] {
  background: radial-gradient(ellipse 160px 130px at 51% 46%, rgba(0,95,249,.24) 0%, transparent 70%);
}
.tc-glow[data-factor="bone"] {
  background: radial-gradient(ellipse 200px 120px at 26% 13%, rgba(0,95,249,.22) 0%, transparent 70%);
}
.tc-glow[data-factor="load"] {
  background: radial-gradient(ellipse 160px 130px at 46% 23%, rgba(0,95,249,.22) 0%, transparent 70%);
}
.tc-glow[data-factor="missing-teeth"] {
  background: radial-gradient(ellipse 150px 130px at 63% 41%, rgba(0,95,249,.22) 0%, transparent 70%);
}
/* ── Markers ──────────────────────────────────────── */

.tc-marker {
  position: absolute;
  left: var(--mx);
  top: var(--my);
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.tc-marker-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #005FF9;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid rgba(255,255,255,.9);
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  pointer-events: none;
}

.tc-marker:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  border-radius: 50%;
}

.tc-marker.tc-active .tc-marker-dot,
.tc-marker[aria-pressed="true"] .tc-marker-dot {
  transform: scale(1.15);
  box-shadow: 0 0 0 5px rgba(0,95,249,.28), 0 4px 14px rgba(0,0,0,.35);
}

.tc-marker.tc-dim .tc-marker-dot { opacity: 0.3; }

/* ── Factor cards column ──────────────────────────── */

.tc-visual-right {
  list-style: none;
  padding: 32px 36px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  border-left: 1px solid #EEF2F8;
}

.tc-visual-right li { display: block; }

.tc-factor-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 16px;
  width: 100%;
  text-align: left;
  background: #F5F8FF;
  border: 1.5px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease,
              box-shadow .18s ease, opacity .2s ease;
  min-height: 44px;
  touch-action: manipulation;
}

.tc-factor-card:hover,
.tc-factor-card:focus-visible {
  background: #EBF1FF;
  border-color: rgba(0,95,249,.35);
}

.tc-factor-card:focus-visible {
  outline: 3px solid #005FF9;
  outline-offset: 1px;
}

.tc-factor-card.tc-active,
.tc-factor-card[aria-pressed="true"] {
  background: #EBF1FF;
  border-color: #005FF9;
  box-shadow: 0 0 0 3px rgba(0,95,249,.1);
}

.tc-factor-card.tc-dim { opacity: 0.4; }

.tc-fc-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: #005FF9;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.tc-fc-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #0f1e3c;
  margin-bottom: 3px;
  line-height: 1.35;
}

.tc-fc-desc {
  font-size: 14.5px;
  color: #5a6375;
  margin: 0;
  line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
  .tc-marker-dot,
  .tc-factor-card,
  .tc-glow { transition: none !important; }
}

/* ── Example card ──────────────────────────────────── */

.tc-example {
  background: #fff;
  border: 1px solid #E2EBF4;
  border-radius: 20px;
  padding: 36px 40px 40px;
  margin-bottom: 28px;
  box-shadow: 0 2px 14px rgba(15,30,60,.05);
}

.tc-example-header {
  margin-bottom: 28px;
}

.tc-example-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #009E88;
  background: rgba(0,158,136,.08);
  border-radius: 4px;
  padding: 3px 9px;
  margin-bottom: 12px;
}

.tc-example-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f1e3c;
  margin: 0 0 10px;
  line-height: 1.3;
}

.tc-example-intro {
  font-size: 14px;
  color: #5a6375;
  margin: 0;
  line-height: 1.55;
}

.tc-table-label {
  font-size: 13px;
  font-weight: 700;
  color: #3d4d6a;
  margin: 0 0 14px;
  padding-left: 2px;
}

/* ── Comparison table ─────────────────────────────── */

.tc-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #E2EBF4;
  margin-bottom: 18px;
}

.tc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  color: #3d4d6a;
  min-width: 520px;
}

.tc-table thead tr {
  background: #F6F9FF;
}

.tc-table th {
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  color: #5a6375;
  border-bottom: 1px solid #E2EBF4;
  line-height: 1.4;
  vertical-align: top;
}

.tc-th-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  background: #005FF9;
  border-radius: 4px;
  padding: 2px 7px;
  margin-bottom: 5px;
}

.tc-th-tag-alt { background: #009E88; }

.tc-table td {
  padding: 13px 18px;
  border-bottom: 1px solid #EEF3FA;
  vertical-align: top;
  line-height: 1.45;
}

.tc-table tbody tr:last-child td { border-bottom: none; }

.tc-table tbody tr:hover td { background: rgba(0,95,249,.025); }

.tc-td-param {
  font-weight: 600;
  color: #8A98B4;
  white-space: nowrap;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  width: 130px;
}

.tc-price-v1 {
  font-weight: 700;
  color: #005FF9;
  font-variant-numeric: tabular-nums;
}

.tc-th-v1 { color: #0f1e3c; }
.tc-th-v2 { color: #0f1e3c; }

/* Limitation row */
.tc-tr-limit td { background: #FFFBF2 !important; }

.tc-limit-badge {
  display: inline-block;
  background: #FDE68A;
  color: #78420A;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  padding: 3px 9px;
  line-height: 1.4;
}

.tc-limit-muted {
  color: #6A7890;
  font-size: 12px;
}

.tc-example-note {
  font-size: 12px;
  color: #8A98B4;
  line-height: 1.55;
  margin: 0;
  padding-top: 4px;
}

/* ── Responsive ────────────────────────────────────── */

@media (max-width: 900px) {
}

/* tablet: 768–1023 px */
@media (max-width: 1023px) {
  .tc-visual-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .tc-image-wrap { min-height: 360px; }
  .tc-visual-right {
    border-left: none;
    border-top: 1px solid #EEF2F8;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-content: initial;
  }
}

/* mobile: ≤ 767 px */
@media (max-width: 768px) {
  .treatment-choice { padding: 56px 0 64px; }
  .tc-head { margin-bottom: 36px; }
  .tc-visual-card { border-radius: 16px; }
  .tc-image-wrap { min-height: 260px; }
  .tc-visual-right {
    grid-template-columns: 1fr;
    padding: 20px 16px;
    gap: 8px;
  }
  .tc-fc-name { font-size: 16px; }
  .tc-fc-desc { font-size: 14px; }
  .tc-example { padding: 24px 20px 28px; }
}

@media (max-width: 480px) {
  .tc-visual-card { border-radius: 14px; }
  .tc-image-wrap { min-height: 220px; }
  .tc-example { border-radius: 14px; }
  .tc-table-wrap { border-radius: 8px; }
}

/* ═══════════════════════════════════════════════════════
   IMPLANT ALTERNATIVES block (#implant-alt)
   ═══════════════════════════════════════════════════════ */

.implant-alt {
  background: #F0F5F2;
  padding: 80px 0 88px;
  border-top: 1px solid #DDE8E2;
}

/* ── Top 2-col ─────────────────────────────────── */

.ia-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.ia-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ia-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  color: #0f1e3c;
  text-wrap: balance;
  margin: 0;
}

.ia-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

.ia-approach {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ia-approach p {
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  margin: 0;
}

/* ── Diagram SVG ───────────────────────────────── */

.ia-diagram-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: white;
  border-radius: 18px;
  border: 1px solid #DDE8E2;
  box-shadow: 0 2px 12px rgba(15,30,60,.05);
}

.ia-diagram-svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 460px;
}

/* ── Scenario cards ────────────────────────────── */

.ia-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.ia-scenario {
  background: white;
  border-radius: 16px;
  border: 1.5px solid #E2EBE6;
  border-left-width: 4px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ia-scenario--bridge { border-left-color: #005FF9; }
.ia-scenario--implant { border-left-color: #4D8060; }
.ia-scenario--combo   { border-left-color: #009E88; }

.ia-scenario-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #94A3B8;
  font-variant-numeric: tabular-nums;
}

.ia-scenario--bridge .ia-scenario-num { color: #005FF9; }
.ia-scenario--implant .ia-scenario-num { color: #4D8060; }
.ia-scenario--combo .ia-scenario-num { color: #009E88; }

.ia-scenario-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f1e3c;
  margin: 0;
  line-height: 1.3;
}

.ia-scenario-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

.ia-scenario-note {
  font-size: 13px;
  line-height: 1.6;
  color: #64748B;
  margin: 0;
  padding-top: 4px;
  border-top: 1px solid #F0F4F0;
}

.ia-scenario-checks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid #F0F4F0;
}

.ia-scenario-checks-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ia-scenario-checks ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ia-scenario-checks li {
  font-size: 13.5px;
  color: #334155;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.ia-scenario-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #005FF9;
}

.ia-scenario--implant .ia-scenario-checks li::before { background: #4D8060; }
.ia-scenario--combo .ia-scenario-checks li::before { background: #009E88; }

/* ── Example box ───────────────────────────────── */

.ia-example {
  background: #FFFBF0;
  border: 1.5px solid #F5D27B;
  border-left: 4px solid #D97706;
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ia-example-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #92400E;
  background: #FDE68A;
  border-radius: 6px;
  padding: 3px 10px;
  align-self: flex-start;
}

.ia-example-title {
  font-size: 18px;
  font-weight: 700;
  color: #78350F;
  margin: 0;
  line-height: 1.3;
}

.ia-example-body {
  font-size: 15px;
  line-height: 1.65;
  color: #6B4E1A;
  margin: 0;
}

.ia-example-quote {
  margin: 0;
  padding: 14px 20px;
  background: rgba(217,119,6,.08);
  border-left: 3px solid #D97706;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: #78350F;
}

.ia-example-footnote {
  font-size: 13px;
  line-height: 1.6;
  color: #92400E;
  margin: 0;
  opacity: .8;
}

/* ── Comparison table ──────────────────────────── */

.ia-table-outer {
  margin-bottom: 44px;
}

.ia-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #DDE8E2;
  margin-bottom: 12px;
}

.ia-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
  background: white;
  font-size: 14px;
}

.ia-table thead th {
  background: #F0F5F2;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #4D8060;
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid #DDE8E2;
}

.ia-table thead th:first-child { border-radius: 12px 0 0 0; }
.ia-table thead th:last-child  { border-radius: 0 12px 0 0; }

.ia-table tbody td {
  padding: 14px 18px;
  color: #334155;
  line-height: 1.55;
  border-bottom: 1px solid #EEF4F0;
  vertical-align: top;
}

.ia-table tbody tr:last-child td { border-bottom: none; }

.ia-table tbody td:first-child { width: 200px; }

.ia-row-label {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  line-height: 1.4;
}

.ia-row-label--bridge   { background: #EEF3FF; color: #003ED4; }
.ia-row-label--implant  { background: #EBF5EF; color: #2A5040; }
.ia-row-label--combo    { background: #E6F6F4; color: #006D5F; }
.ia-row-label--removable { background: #F1F5F9; color: #334155; }

.ia-table-note {
  font-size: 13px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
  padding-left: 4px;
}

/* ── CTA ────────────────────────────────────────── */

.ia-cta {
  background: #0f1e3c;
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.ia-cta-text {
  flex: 1;
  min-width: 0;
}

.ia-cta-title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: white;
  margin: 0 0 10px;
  line-height: 1.3;
  text-wrap: balance;
}

.ia-cta-sub {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
  margin: 0;
}

.ia-cta-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  min-width: 260px;
  max-width: 320px;
}

.ia-cta-btn {
  background: #005FF9;
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  line-height: 1.3;
  text-align: center;
  transition: background .18s, transform .15s;
}

.ia-cta-btn:hover { background: #004FD4; transform: translateY(-1px); }
.ia-cta-btn:focus-visible { outline: 3px solid rgba(255,255,255,.6); outline-offset: 3px; }

.ia-cta-secondary {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.75);
  font-size: 13.5px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
  transition: border-color .18s, color .18s, background .18s;
}

.ia-cta-secondary:hover {
  border-color: rgba(255,255,255,.45);
  color: white;
  background: rgba(255,255,255,.06);
}

.ia-cta-secondary:focus-visible { outline: 3px solid rgba(255,255,255,.6); outline-offset: 3px; }

.ia-cta-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,.32);
  margin: 0;
  line-height: 1.6;
  text-align: center;
}

/* ── Responsive ────────────────────────────────── */

@media (max-width: 1024px) {
  .ia-top { grid-template-columns: 1fr; gap: 32px; }
  .ia-diagram-wrap { max-width: 480px; margin: 0 auto; width: 100%; }
}

@media (max-width: 900px) {
  .ia-scenarios { grid-template-columns: repeat(2, 1fr); }
  .ia-cta { flex-direction: column; align-items: flex-start; padding: 28px 28px 32px; gap: 24px; }
  .ia-cta-action { width: 100%; max-width: 100%; min-width: 0; }
  .ia-cta-btn { width: 100%; }
  .ia-cta-secondary { width: 100%; }
}

@media (max-width: 640px) {
  .implant-alt { padding: 56px 0 64px; }
  .ia-top { margin-bottom: 40px; }
  .ia-scenarios { grid-template-columns: 1fr; }
  .ia-diagram-wrap { display: none; }
  .ia-example { padding: 20px 18px 24px; border-radius: 12px; }
  .ia-example-title { font-size: 16px; }
  .ia-cta { border-radius: 16px; padding: 24px 20px 28px; }
  .ia-cta-title { font-size: 18px; }
}

@media (max-width: 480px) {
  .ia-example { padding: 18px 16px 20px; }
  .ia-cta { border-radius: 14px; }
}

/* ═══════════════════════════════════════════════════════
   PRICING ACCURACY block (#pricing-accuracy) — rebuilt
   HTML+CSS only. No SVG, no <img>, no external icons.
   ═══════════════════════════════════════════════════════ */

#pricing-accuracy {
  --pac-jade:        var(--jade, #4D8060);
  --pac-jade-dark:   var(--jade-dark, #3A6249);
  --pac-jade-tint:   var(--jade-tint, rgba(77,128,96,0.08));
  --pac-ink:         #0f1e3c;
  --pac-text:        #51607a;
  --pac-muted:       #8492a8;
  --pac-line:        #dde5ef;
  --pac-surface:     #ffffff;
  --pac-soft:        #f6f9fc;
  --pac-blue:        #0f1e3c;
  --pac-shadow:      0 18px 48px rgba(16,43,80,0.07);
  --pac-shadow-soft: 0 10px 30px rgba(16,43,80,0.045);
  background: #f7f9fc;
  padding: 56px 0 32px;
  border-top: 1px solid #e4ebf4;
}

/* ── Head ─────────────────────────────────────────── */
.pac-head {
  max-width: 800px;
  margin-bottom: 28px;
}
.pac-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--pac-ink);
  text-wrap: balance;
  margin: 0 0 12px;
}
.pac-lead {
  max-width: 780px;
  font-size: clamp(16px, 1.25vw, 17px);
  line-height: 1.55;
  color: var(--pac-text);
  margin: 0;
}

/* ── Three levels of accuracy ─────────────────────── */
.pac-flow {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: pac-flow;
}
/* thin horizontal connecting line on desktop */
.pac-flow::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 14%;
  right: 14%;
  height: 1px;
  background: var(--pac-line);
  z-index: 0;
}
.pac-flow-card {
  position: relative;
  z-index: 1;
  min-height: 124px;
  padding: 20px 20px 18px;
  border: 1px solid var(--pac-line);
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
}
.pac-flow-card--active {
  border-color: rgba(77,128,96,0.5);
  background: var(--pac-surface);
  box-shadow: var(--pac-shadow-soft);
  transform: translateY(-4px);
}
.pac-flow-num {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #eef2f7;
  color: var(--pac-ink);
  font-size: 13px;
  font-weight: 800;
}
.pac-flow-card--active .pac-flow-num {
  background: var(--pac-jade);
  color: #fff;
}
.pac-flow-title {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.2;
  color: var(--pac-ink);
}
.pac-flow-text {
  margin: 0;
  color: var(--pac-text);
  font-size: 14px;
  line-height: 1.55;
}

/* ── Transition note ──────────────────────────────── */
.pac-transition {
  margin: 38px 0 20px;
  padding: 16px 22px;
  border-left: 4px solid var(--pac-jade);
  border-radius: 0 14px 14px 0;
  background: var(--pac-surface);
  color: var(--pac-ink);
  font-size: 16px;
  line-height: 1.5;
  box-shadow: var(--pac-shadow-soft);
}

/* ── Three question cards ─────────────────────────── */
.pac-questions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pac-question {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 408px;
  padding: 24px;
  border: 1px solid var(--pac-line);
  border-radius: 20px;
  background: var(--pac-surface);
  box-shadow: var(--pac-shadow-soft);
}
/* large translucent background number (NOT in a11y tree) */
.pac-question::before {
  content: attr(data-num);
  position: absolute;
  top: -10px;
  right: 14px;
  font-size: 84px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  color: rgba(15,30,60,0.05);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.pac-question > * { position: relative; z-index: 1; }

.pac-q-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pac-jade-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.pac-q-index::after {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--pac-jade);
}
.pac-q-title {
  margin: 12px 0 6px;
  font-size: clamp(23px, 1.9vw, 25px);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--pac-ink);
}
.pac-q-subtitle {
  margin: 0 0 14px;
  color: var(--pac-jade-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.pac-q-intro {
  margin: 0;
  color: var(--pac-text);
  font-size: 14.5px;
  line-height: 1.5;
}
.pac-factors {
  margin-top: 16px;
  border-top: 1px solid var(--pac-line);
}
.pac-factor {
  padding: 10px 0;
  border-bottom: 1px solid var(--pac-line);
}
.pac-factor:last-child { border-bottom: 0; }
.pac-factor-name {
  margin: 0 0 4px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--pac-ink);
}
.pac-factor-desc {
  margin: 0;
  color: var(--pac-text);
  font-size: 14px;
  line-height: 1.45;
}

.pac-q-result {
  margin: auto 0 0;
  padding-top: 15px;
  border-top: 1px solid var(--pac-line);
  color: var(--pac-ink);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.45;
}
.pac-q-result strong { font-weight: 800; color: var(--pac-jade-dark); }

/* ── What the patient gets ────────────────────────── */
.pac-deliverable {
  margin-top: 18px;
  padding: 24px 28px;
  border: 1px solid rgba(77,128,96,0.22);
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #eef6f1 100%);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  align-items: center;
}
.pac-result-count {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.pac-result-count-num {
  display: inline-block;
  font-size: 60px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -.04em;
  color: var(--pac-jade-dark);
  background: var(--pac-jade-tint, rgba(77,128,96,0.12));
  border-radius: 16px;
  padding: 12px 22px;
}
.pac-result-count-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--pac-jade-dark);
  max-width: 190px;
}
.pac-deliverable-title {
  margin: 0 0 8px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.16;
  letter-spacing: -.02em;
  color: var(--pac-ink);
}
.pac-deliverable-text {
  margin: 0 0 16px;
  color: var(--pac-text);
  font-size: 14.5px;
  line-height: 1.55;
}
.pac-deliverable-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pac-deliverable-list li:last-child { grid-column: 1 / -1; }
.pac-deliverable-list li {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 13px 16px 13px 44px;
  border: 1px solid rgba(77,128,96,0.16);
  border-radius: 12px;
  background: rgba(255,255,255,0.8);
  color: var(--pac-ink);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
}
.pac-deliverable-list li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pac-jade);
}
.pac-deliverable-list li::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 50%;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translateY(-60%) rotate(45deg);
}
.pac-deliverable-note {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(77,128,96,0.18);
  color: var(--pac-text);
  font-size: 13.5px;
  line-height: 1.5;
}

/* ── Practical example ────────────────────────────── */
.pac-subheading {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.14;
  letter-spacing: -.025em;
  color: var(--pac-ink);
}
.pac-sublead {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--pac-text);
  font-size: clamp(15px, 1.4vw, 16px);
  line-height: 1.6;
}
.pac-example { margin-top: 40px; }
.pac-example-card {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 24px;
  padding: 26px;
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 96% 4%, rgba(122,173,143,0.22), transparent 30%),
    var(--pac-blue);
  box-shadow: 0 24px 55px rgba(16,43,80,0.18);
}
.pac-example-context {
  padding-right: 18px;
  border-right: 1px solid rgba(255,255,255,0.16);
}
.pac-example-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  color: #dff2e6;
  background: rgba(122,173,143,0.18);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pac-example-context h4 {
  margin: 0 0 10px;
  font-size: clamp(21px, 2.1vw, 25px);
  line-height: 1.15;
}
.pac-example-context p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 13.5px;
  line-height: 1.55;
}
.pac-materials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pac-material {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
}
.pac-material small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
}
.pac-material strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}
.pac-material-price {
  display: block;
  font-size: clamp(24px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -.02em;
}
.pac-price-bar {
  display: block;
  margin-top: 12px;
  height: 7px;
  border-radius: 6px;
  background: rgba(255,255,255,0.18);
  overflow: hidden;
}
.pac-price-bar::after {
  content: "";
  display: block;
  height: 100%;
  width: var(--bar, 100%);
  border-radius: 6px;
  background: linear-gradient(90deg, #7AAD8F, #bfe3cf);
}
.pac-material--alt .pac-price-bar::after {
  background: linear-gradient(90deg, #D4A853, #E8C47A);
}
.pac-therapy-note {
  grid-column: 1 / -1;
  padding: 12px 16px;
  border-radius: 12px;
  color: #f6e3b3;
  background: rgba(212,168,83,0.12);
  font-size: 13px;
  line-height: 1.5;
}
.pac-example-scope {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0 4px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.5;
}
.pac-example-disclaimer {
  margin: 10px 0 0;
  color: var(--pac-text);
  font-size: 14px;
  line-height: 1.5;
}

/* ── What's included / separate ───────────────────── */
.pac-split { margin-top: 40px; }
.pac-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pac-split-card {
  padding: 22px;
  border: 1px solid var(--pac-line);
  border-radius: 18px;
  background: var(--pac-surface);
  box-shadow: var(--pac-shadow-soft);
}
.pac-split-card--medical { border-top: 4px solid var(--pac-jade); }
.pac-split-card--separate { border-top: 4px solid #93a5b7; }
.pac-split-card h4 {
  margin: 0 0 12px;
  font-size: 19px;
  color: var(--pac-ink);
}
.pac-split-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pac-split-card li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-top: 1px solid var(--pac-line);
  color: var(--pac-text);
  font-size: 13.5px;
  line-height: 1.45;
}
.pac-split-card li:first-child { border-top: 0; }
.pac-split-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pac-jade);
}
.pac-split-card--separate li::before { background: #93a5b7; }
.pac-clarity-note {
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  color: #6b5320;
  background: #fff8e8;
  font-size: 14px;
  line-height: 1.55;
}
.pac-details {
  margin-top: 12px;
  padding: 0 18px;
  border: 1px solid var(--pac-line);
  border-radius: 14px;
  background: var(--pac-surface);
}
.pac-details > summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--pac-ink);
  position: relative;
  padding-right: 22px;
}
.pac-details > summary::-webkit-details-marker { display: none; }
.pac-details > summary::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--pac-jade);
  border-bottom: 2px solid var(--pac-jade);
  transform: translateY(-65%) rotate(45deg);
  transition: transform .2s ease;
}
.pac-details[open] > summary::after {
  transform: translateY(-25%) rotate(-135deg);
}
.pac-details > summary:focus-visible {
  outline: 3px solid rgba(77,128,96,0.4);
  outline-offset: 2px;
  border-radius: 4px;
}
.pac-details-body {
  padding: 0 0 16px;
}
.pac-details-body > p {
  margin: 0 0 10px;
  color: var(--pac-text);
  font-size: 14px;
  line-height: 1.55;
}
.pac-details-body ul {
  margin: 0 0 12px;
  padding-left: 18px;
  list-style: disc;
}
.pac-details-body li {
  padding: 4px 0;
  color: var(--pac-text);
  font-size: 14px;
  line-height: 1.5;
}
.pac-details-final {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--pac-jade-tint, rgba(77,128,96,0.08));
  color: var(--pac-jade-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

/* ── Single CTA ───────────────────────────────────── */
.pac-cta {
  margin-top: 20px;
  padding: 18px 24px;
  border-radius: 18px;
  background: var(--pac-surface);
  box-shadow: var(--pac-shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.pac-cta-text h3 {
  margin: 0 0 7px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--pac-ink);
}
.pac-cta-text p {
  max-width: 620px;
  margin: 0;
  color: var(--pac-text);
  font-size: 13.5px;
  line-height: 1.5;
}
.pac-cta-text .pac-cta-hint {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--pac-muted);
  font-size: 14px;
  line-height: 1.5;
}
.pac-cta-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--pac-jade);
  box-shadow: 0 12px 28px rgba(77,128,96,0.24);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s ease, transform .18s ease;
}
.pac-cta-btn:hover { background: var(--pac-jade-dark); transform: translateY(-1px); }
.pac-cta-btn:focus-visible { outline: 3px solid rgba(77,128,96,0.5); outline-offset: 3px; }

/* ═══ RESPONSIVE ═══════════════════════════════════════ */

@media (max-width: 1280px) {
  .pac-questions { gap: 18px; }
}

@media (max-width: 1024px) {
  #pricing-accuracy { padding: 72px 0 52px; }
  .pac-flow { gap: 14px; }
  .pac-flow-card { padding: 22px 20px; }
  .pac-flow-card--active { transform: none; }
  /* compact two-part question layout on tablet */
  .pac-questions { grid-template-columns: 1fr; gap: 14px; }
  .pac-question {
    min-height: 0;
    padding: 24px;
    display: grid;
    grid-template-columns: 160px 1fr;
    column-gap: 24px;
    row-gap: 4px;
  }
  .pac-question::before { font-size: 78px; top: -8px; right: 8px; }
  .pac-q-index, .pac-q-title, .pac-q-subtitle { grid-column: 1; }
  .pac-q-intro, .pac-factors, .pac-q-result { grid-column: 2; }
  .pac-q-title { font-size: 22px; }
  .pac-deliverable { grid-template-columns: 1fr; }
  .pac-example-card { grid-template-columns: 1fr; }
  .pac-example-context {
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.16);
  }
}

@media (max-width: 768px) {
  #pricing-accuracy { padding: 60px 0 40px; }
  .pac-head { margin-bottom: 36px; }
  .pac-title { font-size: clamp(24px, 7vw, 32px); }
  .pac-lead { font-size: 16px; }
  .pac-flow { grid-template-columns: 1fr; gap: 12px; }
  .pac-flow::before { display: none; }
  .pac-flow-card--active { transform: none; }
  .pac-transition { margin: 38px 0 22px; padding: 18px 20px; font-size: 16px; }
  .pac-questions { grid-template-columns: 1fr; }
  .pac-question {
    display: flex;
    min-height: 0;
    padding: 24px;
  }
  .pac-question::before { font-size: 84px; }
  .pac-q-title { font-size: 21px; }
  .pac-q-intro { font-size: 16px; }
  .pac-flow-text { font-size: 15px; }
  .pac-deliverable-text { font-size: 15px; }
  .pac-factor-name { font-size: 16px; }
  .pac-factor-desc { font-size: 15px; }
  .pac-q-result { font-size: 15px; }
  .pac-deliverable { padding: 24px 22px; }
  .pac-deliverable-list { grid-template-columns: 1fr; }
  .pac-deliverable-note { font-size: 14px; }
  .pac-example, .pac-split { margin-top: 44px; }
  .pac-example-card { padding: 22px; }
  .pac-materials { grid-template-columns: 1fr 1fr; }
  .pac-therapy-note { grid-column: 1; }
  .pac-example-scope { font-size: 14px; }
  .pac-result-count { flex-direction: row; align-items: center; gap: 14px; }
  .pac-result-count-num { font-size: 44px; padding: 8px 16px; }
  .pac-result-count-label { font-size: 14px; max-width: none; }
  .pac-split-grid { grid-template-columns: 1fr; }
  .pac-cta {
    grid-template-columns: 1fr;
    padding: 24px 22px;
    gap: 20px;
  }
  .pac-cta-btn { width: 100%; }
  .pac-cta-text .pac-cta-hint { font-size: 14px; }
}

@media (max-width: 390px) {
  #pricing-accuracy { padding: 52px 0 36px; }
  .pac-question { padding: 22px 18px; }
  .pac-question::before { font-size: 72px; right: 8px; }
  .pac-q-title { font-size: 20px; }
  .pac-materials { grid-template-columns: 1fr; }
  /* primary body text >= 16px, secondary >= 14px at small viewports */
  .pac-lead,
  .pac-flow-text,
  .pac-q-intro,
  .pac-deliverable-text,
  .pac-sublead { font-size: 16px; }
  .pac-factor-desc { font-size: 15px; }
  .pac-q-result,
  .pac-deliverable-list li,
  .pac-split-card li,
  .pac-therapy-note,
  .pac-example-disclaimer { font-size: 14px; }
  .pac-deliverable, .pac-split-card, .pac-example-card, .pac-cta { border-radius: 16px; }
  .pac-cta-btn { min-height: 52px; font-size: 15px; width: 100%; }
}
/* ═══════════════════════════════════════════════════════
   DOCTORS block — redesign (#doctors)
   ═══════════════════════════════════════════════════════ */

.doctors {
  background: #EDF1F7;
  padding: 80px 0 88px;
  border-top: 1px solid #D8E2EE;
}

/* ── Head ─────────────────────────────────────────── */

.dr-head {
  max-width: 720px;
  margin-bottom: 52px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dr-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  color: #0f1e3c;
  text-wrap: balance;
  margin: 0;
}

.dr-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* ── Grid ─────────────────────────────────────────── */

.dr-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
  margin-bottom: 52px;
}

.dr-col-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Cards ────────────────────────────────────────── */

.dr-card {
  background: white;
  border-radius: 18px;
  border: 1.5px solid #D8E2EE;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dr-photo-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #D8E2EE;
}

.dr-photo-wrap--compact {
  aspect-ratio: 3/2;
}

.dr-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .4s;
}

.dr-card:hover .dr-photo { transform: scale(1.03); }

.dr-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

/* Role tags */
.dr-role-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 3px 10px;
}

.dr-role-tag--ortho   { background: #EBF5EF; color: #2A5040; }
.dr-role-tag--implant { background: #EEF3FF; color: #003ED4; }
.dr-role-tag--therapy { background: #E6F6F4; color: #006D5F; }
.dr-role-tag--chief   { background: #F0EEFA; color: #3730A3; }
.dr-role-tag--surgeon { background: #FEF2F2; color: #B91C1C; }
.dr-role-tag--prosth  { background: #FFF7ED; color: #9A3412; }
.dr-role-tag--perio   { background: #F0FDF4; color: #15803D; }

.dr-name {
  font-size: 20px;
  font-weight: 800;
  color: #0f1e3c;
  margin: 0;
  letter-spacing: -.01em;
}

.dr-card--implant .dr-name,
.dr-card--therapy .dr-name {
  font-size: 17px;
}

.dr-headline {
  font-size: 13.5px;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

.dr-duties {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.dr-duties li {
  font-size: 13.5px;
  color: #334155;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.dr-duties li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4D8060;
}

.dr-card--implant .dr-duties li::before { background: #005FF9; }
.dr-card--therapy .dr-duties li::before { background: #009E88; }

.dr-duties--compact li { font-size: 13px; }

/* Expandable question */
.dr-expand-wrap {
  border-top: 1px solid #F0F4F8;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dr-question {
  background: #F8FAFC;
  border-radius: 8px;
  border-left: 3px solid #4D8060;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dr-card--implant .dr-question { border-left-color: #005FF9; }
.dr-card--therapy .dr-question { border-left-color: #009E88; }

.dr-question[hidden] { display: none !important; }

.dr-q-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #94A3B8;
  margin: 0;
}

.dr-q-text {
  font-size: 13.5px;
  font-style: italic;
  color: #334155;
  margin: 0;
  line-height: 1.55;
}

.dr-expand {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #4D8060;
  text-align: left;
}

.dr-card--implant .dr-expand { color: #005FF9; }
.dr-card--therapy .dr-expand { color: #009E88; }

.dr-expand:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; border-radius: 4px; }

.dr-chevron {
  flex-shrink: 0;
  transition: transform .2s;
}

.dr-expand[aria-expanded="true"] .dr-chevron { transform: rotate(180deg); }

/* ── Collaboration process ──────────────────────── */

.dr-process {
  background: white;
  border: 1.5px solid #D8E2EE;
  border-radius: 18px;
  padding: 36px 40px 40px;
  margin-bottom: 36px;
}

.dr-process-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f1e3c;
  margin: 0 0 28px;
}

.drp-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.drp-step {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}

.drp-step:not(.drp-step--last)::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #D8E2EE, #E8EFF6);
}

.drp-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0f1e3c;
  color: white;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.drp-content {
  padding-top: 5px;
  flex: 1;
  min-width: 0;
}

.drp-label {
  font-size: 15px;
  font-weight: 700;
  color: #0f1e3c;
  line-height: 1.3;
  display: block;
  margin-bottom: 6px;
}

.drp-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Step 2 parallel sub-items */
.drp-parallel {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.drp-parallel-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #334155;
  background: #F8FAFC;
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid #E2EBF4;
  flex: 1;
  min-width: 200px;
}

.drp-spec-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 2px 8px;
  flex-shrink: 0;
}

.drp-parallel-item--therapy .drp-spec-tag {
  background: #E6F6F4;
  color: #006D5F;
}

.drp-parallel-item--implant .drp-spec-tag {
  background: #EEF3FF;
  color: #003ED4;
}

/* ── Trust strip ─────────────────────────────────── */

.dr-trust {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.dr-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
}

/* ── Responsive ──────────────────────────────────── */

@media (max-width: 1024px) {
  .dr-grid { grid-template-columns: 1.2fr 1fr; }
}

@media (max-width: 900px) {
  .dr-grid { grid-template-columns: 1fr; }
  .dr-col-right { flex-direction: row; }
  .dr-photo-wrap { aspect-ratio: 3/2; }
  .dr-photo-wrap--compact { aspect-ratio: 3/2; }
  .dr-process { padding: 24px 20px 28px; }
}

@media (max-width: 640px) {
  .doctors { padding: 56px 0 64px; }
  .dr-head { margin-bottom: 36px; }
  .dr-col-right { flex-direction: column; }
  .dr-grid { margin-bottom: 36px; }
  .dr-trust { gap: 16px; flex-direction: column; }
  .dr-process-title { font-size: 16px; }
  .drp-parallel { flex-direction: column; }
  .drp-parallel-item { min-width: 0; }
}

@media (max-width: 480px) {
  .dr-body { padding: 18px 16px 20px; }
}

/* ── 6-doctor uniform grid ───────────────────────────── */

.dr-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

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

@media (max-width: 860px) {
  .dr-grid-6 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .dr-grid-6 { grid-template-columns: 1fr; gap: 14px; margin-bottom: 32px; }
  .dr-grid-6 .dr-photo-wrap { aspect-ratio: 4/3; }
}

/* New specialty card accents */
.dr-card--chief   .dr-duties li::before { background: #4338CA; }
.dr-card--surgeon .dr-duties li::before { background: #DC2626; }
.dr-card--prosth  .dr-duties li::before { background: #EA580C; }
.dr-card--perio   .dr-duties li::before { background: #16A34A; }

.dr-card--chief   .dr-question { border-left-color: #4338CA; }
.dr-card--surgeon .dr-question { border-left-color: #DC2626; }
.dr-card--prosth  .dr-question { border-left-color: #EA580C; }
.dr-card--perio   .dr-question { border-left-color: #16A34A; }

.dr-card--chief   .dr-expand { color: #4338CA; }
.dr-card--surgeon .dr-expand { color: #DC2626; }
.dr-card--prosth  .dr-expand { color: #EA580C; }
.dr-card--perio   .dr-expand { color: #16A34A; }

/* ── Elena coordinator card ─────────────────────────── */

.tc-coordinator-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: white;
  border: 1.5px solid #D8E2EE;
  border-radius: 18px;
  padding: 24px 28px;
  margin-bottom: 0;
}

.tc-coord-photo-wrap {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: #D8E2EE;
}

.tc-coord-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.tc-coord-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.tc-coord-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 3px 10px;
  background: #FFF0F7;
  color: #9D174D;
}

.tc-coord-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink, #1a2e4a);
  margin: 0;
  line-height: 1.2;
}

.tc-coord-headline {
  font-size: 14px;
  color: var(--muted, #455570);
  line-height: 1.5;
  margin: 0;
}

.tc-coord-duties {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tc-coord-duties li {
  font-size: 13px;
  color: #334155;
  line-height: 1.4;
  padding-left: 16px;
  position: relative;
}

.tc-coord-duties li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #BE185D;
}

@media (max-width: 600px) {
  .tc-coordinator-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 20px;
  }
  .tc-coord-photo-wrap { width: 80px; height: 80px; }
}

/* ── Clinic Photo Slider ─────────────────────────── */

.cs-wrap {
  outline: none;
}

.cs-track-outer {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #D8E2EE;
}

.cs-track {
  display: flex;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.cs-slide {
  flex-shrink: 0;
  width: 100%;
}

.cs-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.cs-img-wrap picture {
  display: contents;
}

.cs-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Arrows */
.cs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1a2e4a;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  transition: background .18s, box-shadow .18s;
}
.cs-btn:hover { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.22); }
.cs-btn:focus-visible { outline: 2px solid var(--primary, #1a5fb4); outline-offset: 2px; }
.cs-btn--prev { left: 14px; }
.cs-btn--next { right: 14px; }

/* Footer: caption + dots */
.cs-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 2px 0;
  min-height: 42px;
}

.cs-caption {
  font-size: 14px;
  color: var(--muted, #455570);
  line-height: 1.45;
  margin: 0;
  flex: 1;
  min-height: 1.45em;
}

.cs-dots {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
  align-items: center;
}

.cs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C8D6E8;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, width .25s, border-radius .25s;
}
.cs-dot--active {
  width: 26px;
  border-radius: 4px;
  background: var(--primary, #1a5fb4);
}
.cs-dot:hover:not(.cs-dot--active) { background: #9AB0CC; }
.cs-dot:focus-visible { outline: 2px solid var(--primary, #1a5fb4); outline-offset: 2px; }

@media (max-width: 600px) {
  .cs-btn { width: 38px; height: 38px; }
  .cs-btn--prev { left: 8px; }
  .cs-btn--next { right: 8px; }
  .cs-img-wrap { aspect-ratio: 4/3; }
  .cs-footer { flex-direction: column-reverse; align-items: flex-start; gap: 10px; }
  .cs-caption { font-size: 13px; }
}

@media (max-width: 380px) {
  .cs-img-wrap { aspect-ratio: 1/1; }
}

/* ═══════════════════════════════════════════════════════
   CLINICAL CASES block (#clinical-cases)
   ═══════════════════════════════════════════════════════ */

.clinical-cases {
  background: #F9FAFB;
  padding: 80px 0 88px;
  border-top: 1px solid #E4EBF4;
}

/* ── Head ── */

.cc-head {
  max-width: 720px;
  margin-bottom: 52px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cc-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  color: #0f1e3c;
  text-wrap: balance;
  margin: 0;
}

.cc-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* ── Shared case typography ── */

.cc-sub-note {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

.cc-case-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #009E88;
}

.cc-case-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f1e3c;
  line-height: 1.25;
  margin: 0;
  text-wrap: balance;
}

/* ── Story sections (situation / solution) ── */

.cc-story {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cc-story-section {
  padding-left: 14px;
  border-left: 3px solid #E2EBF4;
}

.cc-story-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 5px;
}

.cc-story-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* ── Expand details ── */

details.cc-expand {
  border: 1.5px solid #E2EBF4;
  border-radius: 10px;
  overflow: hidden;
}

details.cc-expand[open] {
  border-color: #C8D4E8;
}

.cc-expand-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #0f1e3c;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.cc-expand-summary::-webkit-details-marker { display: none; }

.cc-expand-summary::after {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 7l4.5 4 4.5-4' stroke='%2364748b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .22s;
}

details.cc-expand[open] .cc-expand-summary::after {
  transform: rotate(180deg);
}

.cc-expand-summary:hover { background: #F4F7FB; }

.cc-expand-body {
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Facts dl (confirmed data only) ── */

.cc-facts {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.cc-facts-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cc-facts dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #94a3b8;
}

.cc-facts dd {
  font-size: 14px;
  font-weight: 700;
  color: #0f1e3c;
  margin: 0;
}

/* ── Done list ── */

.cc-done-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 10px;
}

.cc-done-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cc-done-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #3d4d6a;
  line-height: 1.45;
}

.cc-done-list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  border-radius: 4px;
  background: #4D8060 url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.5l2.5 2.5 5.5-5.5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/cover no-repeat;
}

.cc-done-list--compact li { font-size: 12px; }

/* ── Badges ── */

.cc-badge {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 7;
  pointer-events: none;
}

.cc-badge--before {
  top: 12px;
  left: 12px;
  background: rgba(15,30,60,.60);
  backdrop-filter: blur(4px);
  color: #fff;
}

.cc-badge--after {
  top: 12px;
  right: 12px;
  background: #4D8060;
  color: #fff;
}

/* ── Figure / figcaption ── */

.cc-figure {
  margin: 0;
}

.cc-figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.cc-medical-note {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.55;
  margin: 0;
  text-align: center;
}

/* ── Main case (large, 2-col) ── */

.cc-case--main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1.5px solid #D8E2EE;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
  min-height: 500px;
}

.cc-visual {
  position: relative;
}

/* ── Before/after drag slider ── */

.cc-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  background: #D8E2EE;
}

.cc-before,
.cc-after-clip {
  position: absolute;
  inset: 0;
}

.cc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  pointer-events: none;
}

.cc-after-clip {
  clip-path: inset(0 50% 0 0);
}

.cc-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  pointer-events: none;
  z-index: 5;
}

.cc-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,.35);
}

.cc-handle-knob {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f1e3c;
  box-shadow: 0 2px 16px rgba(0,0,0,.28);
  border: none;
  cursor: ew-resize;
  pointer-events: auto;
}

.cc-slider-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15,30,60,.55);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 5px 14px;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity .4s;
  z-index: 6;
}

.cc-slider.dragged .cc-slider-hint { opacity: 0; }

/* ── Body panel (unified for all cases) ── */

.cc-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cc-details {
  padding: 36px 40px 40px;
  gap: 22px;
  justify-content: center;
}

.cc-done {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Sub-cases grid ── */

.cc-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.cc-case--sub {
  background: #fff;
  border: 1.5px solid #D8E2EE;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cc-sub-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 200px;
}

.cc-sub-photo-wrap {
  position: relative;
  overflow: hidden;
}

.cc-sub-photo-wrap + .cc-sub-photo-wrap {
  border-left: 3px solid #fff;
}

.cc-sub-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.cc-sub-body {
  padding: 24px 26px 28px;
  gap: 14px;
  flex: 1;
}

/* ── Section CTA ── */

.cc-cta {
  background: #0f1e3c;
  border-radius: 20px;
  padding: 36px 40px 40px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.cc-cta-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cc-cta-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0;
  text-wrap: balance;
}

.cc-cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
  margin: 0;
}

.cc-cta-action {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 320px;
  min-width: 260px;
  max-width: 360px;
  flex-shrink: 0;
}

.cc-cta-btn {
  width: 100%;
  padding: 16px 28px;
  background: #009E88;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .03em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .18s, transform .15s;
  text-align: center;
  white-space: nowrap;
}

.cc-cta-btn:hover { background: #00876e; transform: translateY(-1px); }
.cc-cta-btn:active { transform: none; }

.cc-cta-btn-sec {
  width: 100%;
  padding: 13px 24px;
  background: transparent;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: 10px;
  cursor: pointer;
  transition: background .18s, border-color .18s, transform .15s;
  text-align: center;
  white-space: nowrap;
}

.cc-cta-btn-sec:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.40);
  color: #fff;
  transform: translateY(-1px);
}

.cc-cta-btn-sec:active { transform: none; }

.cc-cta-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,.28);
  margin: 0;
  line-height: 1.6;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .cc-case--main {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .cc-visual {
    aspect-ratio: 4/3;
    position: relative; /* keeps slider absolute children inside */
  }
}

@media (max-width: 900px) {
  .cc-cta { flex-direction: column; align-items: flex-start; padding: 28px 28px 32px; gap: 24px; }
  .cc-cta-action { width: 100%; min-width: 0; }
  .cc-cta-btn { width: 100%; }
}

@media (max-width: 640px) {
  .clinical-cases { padding: 56px 0 64px; }
  .cc-head { margin-bottom: 36px; }
  .cc-sub-grid { grid-template-columns: 1fr; }
  .cc-case--main { border-radius: 18px; }
  .cc-case--sub { border-radius: 16px; }
  .cc-details { padding: 24px 20px 28px; gap: 18px; }
  .cc-sub-photos { height: 160px; }
  .cc-sub-body { padding: 20px 18px 24px; gap: 12px; }
  .cc-sub-grid { margin-bottom: 36px; }
  .cc-cta { border-radius: 16px; padding: 24px 20px 28px; }
  .cc-cta-title { font-size: 17px; }
  .cc-cta-btn-sec { white-space: normal; }
}

@media (max-width: 480px) {
  .cc-sub-photos { height: 140px; }
  .cc-case-title { font-size: 17px; }
  .cc-details { padding: 20px 16px 24px; }
  .cc-sub-body { padding: 18px 16px 20px; }
  .cc-cta { border-radius: 14px; }
}

/* ═══════════════════════════════════════════════════════
   MATERIALS & CONTROL block (#materials-control)
   ═══════════════════════════════════════════════════════ */

#materials-control {
  scroll-margin-top: 80px;
}

.materials-control {
  background: #fff;
  padding: 88px 0 96px;
  border-top: 1px solid #EAEEF5;
}

/* ── Header ── */
.mc-head {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.mc-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.18;
  color: #171714;
  margin: 8px 0 18px;
  text-wrap: balance;
}

.mc-sub {
  font-size: 17px;
  color: #5a6375;
  line-height: 1.6;
  margin: 0 0 14px;
}

.mc-sub-extra {
  font-size: 16px;
  color: #5a6375;
  line-height: 1.6;
  margin: 0;
}

/* ── Two material cards ── */
.materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: stretch;
}

.material-card {
  background: #F7F8FB;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #E8ECF4;
}

.material-card__picture {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}

.material-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .35s ease;
}

.material-card:hover .material-card__image {
  transform: scale(1.025);
}

.material-card__body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid #E8ECF4;
}

.material-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #171714;
  margin: 0;
  line-height: 1.25;
}

.material-card__row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.material-card__row-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8491aa;
  margin: 0;
}

.material-card__row-text {
  font-size: 15px;
  color: #2a3040;
  line-height: 1.55;
  margin: 0;
}

/* ── Support block: tooth vs implant ── */
.material-support-block {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 52px;
  align-items: center;
  background: #F0F4F8;
  border-radius: 20px;
  padding: 40px 48px;
  margin-bottom: 40px;
}

.material-support-title {
  font-size: 20px;
  font-weight: 700;
  color: #171714;
  margin: 0 0 14px;
  line-height: 1.3;
}

.material-support-desc {
  font-size: 16px;
  color: #5a6375;
  line-height: 1.6;
  margin: 0;
}

.material-support__picture {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
}

.material-support__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* ── 5 quality checks ── */
.material-quality-steps {
  background: #F7F8FB;
  border-radius: 20px;
  padding: 40px 44px;
  margin-bottom: 32px;
  border: 1px solid #E8ECF4;
}

.mc-quality-title {
  font-size: 20px;
  font-weight: 700;
  color: #171714;
  margin: 0 0 28px;
  line-height: 1.25;
  text-align: center;
}

.mc-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.mc-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #E8ECF4;
}

.mc-step-num {
  font-size: 24px;
  font-weight: 800;
  color: #005FF9;
  opacity: .22;
  line-height: 1;
}

.mc-step-name {
  font-size: 17px;
  font-weight: 700;
  color: #171714;
  line-height: 1.25;
}

.mc-step-desc {
  font-size: 14px;
  color: #5a6375;
  line-height: 1.5;
  margin: 0;
}

/* ── Expert callout ── */
.material-limit-callout {
  background: #FEFCF8;
  border-top: 3px solid rgba(195, 145, 30, 0.32);
  border-radius: 16px;
  padding: 32px 40px;
  margin-bottom: 40px;
}

.mc-callout-title {
  font-size: 18px;
  font-weight: 700;
  color: #171714;
  margin: 0 0 12px;
  line-height: 1.3;
}

.mc-callout-text {
  font-size: 15.5px;
  color: #2a3040;
  line-height: 1.6;
  margin: 0 0 10px;
}

.mc-callout-note {
  font-size: 14.5px;
  color: #5a6375;
  line-height: 1.55;
  margin: 0;
}

/* ═══════════════════════
   RESPONSIVE
   ═══════════════════════ */

@media (max-width: 1024px) {
  .material-support-block {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 36px;
  }
  .material-support__picture { max-width: 540px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .materials-control { padding: 60px 0 68px; }
  .mc-head { margin-bottom: 40px; }
  .materials-grid { grid-template-columns: 1fr; gap: 16px; }
  .material-support-block { padding: 28px 24px; gap: 24px; }
  .material-quality-steps { padding: 32px 24px; }
  .material-limit-callout { padding: 28px 24px; }
  .mc-steps {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "a b c" ". d e";
    gap: 8px;
  }
  .mc-step:nth-child(1) { grid-area: a; }
  .mc-step:nth-child(2) { grid-area: b; }
  .mc-step:nth-child(3) { grid-area: c; }
  .mc-step:nth-child(4) { grid-area: d; }
  .mc-step:nth-child(5) { grid-area: e; }
}

@media (max-width: 480px) {
  .materials-control { padding: 52px 0 60px; }
  .mc-sub { font-size: 16px; }
  .mc-sub-extra { font-size: 15px; }
  .material-card__body { padding: 20px 20px 24px; }
  .material-support-block { padding: 24px 20px; }
  .mc-steps { grid-template-columns: 1fr; grid-template-areas: none; }
  .mc-step:nth-child(1),
  .mc-step:nth-child(2),
  .mc-step:nth-child(3),
  .mc-step:nth-child(4),
  .mc-step:nth-child(5) { grid-area: auto; }
  .mc-step { padding: 16px; }
  .material-quality-steps { padding: 24px 20px; }
  .material-limit-callout { padding: 24px 20px; }
}

/* ══════════════════════════════════════════════════════════
   BLOCK 11 — TRIP ORGANIZATION (.to-)
   ══════════════════════════════════════════════════════════ */

.trip-org {
  background: #EEF3FA;
  padding: 80px 0 88px;
  border-top: 1px solid #E4EBF4;
}

/* Head */
.to-head { text-align: center; margin-bottom: 56px; }
.to-sub  { font-size: 1.0625rem; color: #4B5879; max-width: 600px; margin: 12px auto 0; line-height: 1.6; }

/* ── Top grid ─────────────────────── */
.to-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}

/* Route track */
.to-route-label,
.to-support-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #8A95B0;
  margin-bottom: 20px;
}

.to-route-track {
  position: relative;
}

.to-route-track::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, #4D8060 85%, transparent);
}

.to-rnode {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 24px;
}
.to-rnode:last-child { padding-bottom: 0; }

.to-rnode-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2.5px solid #4D8060;
  background: #EEF3FA;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}
.to-rnode--end .to-rnode-dot { background: #4D8060; }

.to-rnode-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.to-rnode-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f1e3c;
  line-height: 1.3;
}
.to-rnode-desc {
  font-size: 0.8125rem;
  color: #6B7A99;
  line-height: 1.4;
}

/* Support cards */
.to-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.to-card {
  background: #fff;
  border: 1.5px solid #D8E2EE;
  border-radius: 16px;
  padding: 20px;
}
.to-card-icon {
  color: #4D8060;
  margin-bottom: 10px;
  line-height: 0;
}
.to-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f1e3c;
  margin-bottom: 5px;
}
.to-card-text {
  font-size: 0.8125rem;
  color: #4B5879;
  line-height: 1.45;
}

/* ── 6 Steps ──────────────────────── */
.to-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  align-items: start;
}
.to-step {
  background: #fff;
  border: 1.5px solid #D8E2EE;
  border-radius: 18px;
  padding: 24px 24px 20px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0 14px;
  align-items: start;
}
.to-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #EEF3FF;
  color: #005FF9;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.to-step-body { padding-top: 6px; }
.to-step-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f1e3c;
  margin-bottom: 10px;
  line-height: 1.35;
}
.to-step-lead,
.to-step-text {
  font-size: 0.875rem;
  color: #4B5879;
  margin-bottom: 8px;
  line-height: 1.5;
}
.to-step-list {
  list-style: disc;
  margin: 0 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.to-step-list li {
  font-size: 0.875rem;
  color: #4B5879;
  line-height: 1.4;
}
.to-step-note {
  font-size: 0.8125rem;
  color: #8A95B0;
  font-style: italic;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #E4EBF4;
}

/* ── Patient responsibilities ──────── */
.to-patient {
  background: #fff;
  border: 1.5px solid #D8E2EE;
  border-radius: 18px;
  padding: 28px 32px;
  margin-bottom: 20px;
}
.to-patient-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f1e3c;
  margin-bottom: 20px;
}
.to-patient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.to-patient-item-hd {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f1e3c;
  margin-bottom: 4px;
}
.to-patient-item p {
  font-size: 0.8125rem;
  color: #4B5879;
  line-height: 1.5;
}

/* ── Checklist box ─────────────────── */
.to-checklist {
  background: #EDF3FF;
  border: 1px solid #C5D7F7;
  border-left: 4px solid #005FF9;
  border-radius: 14px;
  padding: 22px 28px;
  margin-bottom: 40px;
}
.to-checklist-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f1e3c;
  margin-bottom: 14px;
}
.to-checklist-list {
  list-style: disc;
  margin: 0 0 0 18px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 40px;
}
.to-checklist-list li {
  font-size: 0.875rem;
  color: #1a3060;
  line-height: 1.45;
}

/* ── CTA ───────────────────────────── */
.to-cta {
  background: #0f1e3c;
  border-radius: 24px;
  padding: 44px 56px;
  text-align: center;
}
.to-cta-lead {
  font-size: 1.3125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-wrap: balance;
  line-height: 1.35;
}
.to-cta-sub {
  font-size: 0.9rem;
  color: #9BAFD4;
  max-width: 520px;
  margin: 0 auto 12px;
  line-height: 1.6;
}
.to-cta-contact {
  font-size: 0.875rem;
  color: #C4D4EC;
  margin-bottom: 28px;
}
.to-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #4D8060;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 16px;
}
.to-cta-btn:hover  { background: #3d6650; transform: translateY(-1px); }
.to-cta-btn:active { transform: translateY(0); }
.to-cta-note {
  font-size: 0.78rem;
  color: #5A6B8A;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ── Responsive ────────────────────── */
@media (max-width: 1024px) {
  .to-top { grid-template-columns: 240px 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .to-top            { grid-template-columns: 1fr; gap: 28px; }
  .to-steps          { grid-template-columns: 1fr; }
  .to-patient-grid   { grid-template-columns: 1fr; }
  .to-checklist-list { grid-template-columns: 1fr; }
  .to-cta            { padding: 36px 32px; }
}

@media (max-width: 640px) {
  .trip-org  { padding: 56px 0 64px; }
  .to-head   { margin-bottom: 32px; }
  .to-top    { margin-bottom: 32px; }
  .to-cards  { grid-template-columns: 1fr; }
  .to-step   { padding: 18px; }
  .to-patient { padding: 20px; }
  .to-checklist { padding: 16px 20px; }
  .to-cta    { padding: 28px 20px; border-radius: 16px; }
  .to-cta-lead { font-size: 1.0625rem; }
}

@media (max-width: 480px) {
  .to-cta        { padding: 24px 16px; }
  .to-step       { grid-template-columns: 30px 1fr; gap: 0 10px; }
  .to-step-num   { width: 30px; height: 30px; font-size: 0.875rem; }
  .to-patient    { padding: 16px; }
}

/* ══════════════════════════════════════════════════════════
   BLOCK 12 — TREATMENT TIMELINE (.tl-)
   ══════════════════════════════════════════════════════════ */

.timeline-block {
  background: #F9FAFB;
  padding: 80px 0 88px;
  border-top: 1px solid #E4EBF4;
}

/* Head */
.tl-head { text-align: center; margin-bottom: 40px; }
.tl-sub  { font-size: 1.0625rem; color: #4B5879; max-width: 640px; margin: 12px auto 0; line-height: 1.6; }

/* ── Pre-trip info ────────────────── */
.tl-preinfo {
  background: #F0F7F4;
  border: 1px solid #C3D9CB;
  border-left: 4px solid #4D8060;
  border-radius: 14px;
  padding: 20px 28px;
  margin-bottom: 36px;
}
.tl-preinfo-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f1e3c;
  margin-bottom: 12px;
}
.tl-preinfo-list {
  list-style: disc;
  margin: 0 0 0 16px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 32px;
}
.tl-preinfo-list li {
  font-size: 0.875rem;
  color: #1a3a2a;
  line-height: 1.45;
}

/* ── Scenario cards ───────────────── */
.tl-scenarios {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.tl-scenario {
  background: #fff;
  border: 1.5px solid #D8E2EE;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tl-scenario--single  { border-top: 3px solid #4D8060; }
.tl-scenario--extended{ border-top: 3px solid #D97706; }
.tl-scenario--multiple{ border-top: 3px solid #005FF9; }

.tl-scenario-type {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 8px;
}
.tl-scenario--single  .tl-scenario-type { color: #4D8060; }
.tl-scenario--extended .tl-scenario-type { color: #D97706; }
.tl-scenario--multiple .tl-scenario-type { color: #005FF9; }

.tl-scenario-desc {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f1e3c;
  line-height: 1.35;
  margin-bottom: 16px;
  flex: 1;
}

.tl-scenario-box {
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tl-scenario--single   .tl-scenario-box { background: #F0F7F4; border: 1px solid #C3D9CB; }
.tl-scenario--extended .tl-scenario-box { background: #FFFBF0; border: 1px solid #E8D4A0; }
.tl-scenario--multiple .tl-scenario-box { background: #EEF3FF; border: 1px solid #C5D7F7; }

.tl-scenario-box-label {
  font-size: 0.78rem;
  color: #6B7A99;
  line-height: 1.4;
}
.tl-scenario-box-value {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.tl-scenario--single   .tl-scenario-box-value { color: #2E6048; }
.tl-scenario--extended .tl-scenario-box-value { color: #92500C; }
.tl-scenario--multiple .tl-scenario-box-value { color: #003EAA; }

.tl-scenario-box-note {
  font-size: 0.78rem;
  color: #8A95B0;
  font-style: italic;
  line-height: 1.4;
}

/* ── Process steps ────────────────── */
.tl-process {
  background: #fff;
  border: 1.5px solid #D8E2EE;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  overflow-x: auto;
}
.tl-process-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #8A95B0;
  margin-bottom: 24px;
}
.tl-process-track {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr 32px 1fr 32px 1fr;
  align-items: start;
  min-width: 620px;
}
.tl-pstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.tl-pstep-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4D8060;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 10px;
}
.tl-pstep-content { width: 100%; }
.tl-pstep-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0f1e3c;
  margin-bottom: 4px;
  line-height: 1.3;
}
.tl-pstep-desc {
  font-size: 0.73rem;
  color: #6B7A99;
  line-height: 1.35;
}
.tl-parrow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #B0BED4;
  padding-top: 9px;
}
.tl-parrow svg { width: 20px; height: 16px; }

/* ── Bottom two columns ───────────── */
.tl-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.tl-support,
.tl-why {
  background: #fff;
  border: 1.5px solid #D8E2EE;
  border-radius: 18px;
  padding: 28px;
}
.tl-col-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f1e3c;
  margin-bottom: 16px;
}

.tl-support-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tl-support-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 12px;
  border-left: 2px solid #C3D9CB;
}
.tl-support-list strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f1e3c;
}
.tl-support-list span {
  font-size: 0.8125rem;
  color: #4B5879;
  line-height: 1.45;
}

.tl-why-lead {
  font-size: 0.875rem;
  color: #4B5879;
  margin-bottom: 10px;
  line-height: 1.5;
}
.tl-why-list {
  list-style: disc;
  margin: 0 0 14px 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tl-why-list li {
  font-size: 0.875rem;
  color: #4B5879;
  line-height: 1.4;
}
.tl-why-conclusion {
  font-size: 0.8125rem;
  color: #6B7A99;
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid #E4EBF4;
}

/* ── CTA ───────────────────────────── */
.tl-cta {
  background: #0f1e3c;
  border-radius: 24px;
  padding: 44px 56px;
  text-align: center;
}
.tl-cta-lead {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-wrap: balance;
  line-height: 1.35;
}
.tl-cta-sub {
  font-size: 0.9rem;
  color: #9BAFD4;
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.tl-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.tl-cta-btn {
  background: #4D8060;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.tl-cta-btn:hover  { background: #3d6650; transform: translateY(-1px); }
.tl-cta-btn:active { transform: translateY(0); }
.tl-cta-btn-sec {
  background: transparent;
  color: #9BAFD4;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 28px;
  border: 1.5px solid #2E4470;
  border-radius: 50px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.tl-cta-btn-sec:hover { border-color: #4D8060; color: #C4D4EC; }
.tl-cta-note {
  font-size: 0.78rem;
  color: #4A5C78;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ── Responsive ────────────────────── */
@media (max-width: 1024px) {
  .tl-process-track { grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr; }
  .tl-parrow svg { width: 16px; }
}

@media (max-width: 900px) {
  .tl-scenarios    { grid-template-columns: 1fr; }
  .tl-process-track {
    grid-template-columns: 36px 1fr;
    min-width: 0;
    gap: 0 12px;
    align-items: start;
  }
  .tl-pstep {
    flex-direction: row;
    text-align: left;
    gap: 12px;
    align-items: flex-start;
  }
  .tl-pstep-dot    { flex-shrink: 0; margin: 0; }
  .tl-pstep-content { flex: 1; }
  .tl-parrow {
    grid-column: 1;
    padding: 4px 0 4px 10px;
    justify-content: flex-start;
    transform: rotate(90deg);
  }
  .tl-bottom       { grid-template-columns: 1fr; }
  .tl-preinfo-list { grid-template-columns: 1fr; }
  .tl-cta          { padding: 36px 32px; }
}

@media (max-width: 640px) {
  .timeline-block { padding: 56px 0 64px; }
  .tl-head        { margin-bottom: 28px; }
  .tl-preinfo     { padding: 16px 18px; }
  .tl-process     { padding: 20px; }
  .tl-support,
  .tl-why         { padding: 20px; }
  .tl-cta         { padding: 28px 20px; border-radius: 16px; }
  .tl-cta-lead    { font-size: 1.0625rem; }
  .tl-cta-btns    { flex-direction: column; align-items: stretch; }
}

@media (max-width: 480px) {
  .tl-cta         { padding: 24px 16px; }
  .tl-scenario    { padding: 18px; }
}

/* ══════════════════════════════════════════════════════
   BLOCK 13 — WARRANTY (.wc-)
   ══════════════════════════════════════════════════════ */

.warranty-block {
  background: #fff;
  padding: 80px 0 88px;
  border-top: 1px solid #E4EBF4;
}

/* Top 2-col layout */
.wc-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  margin-bottom: 48px;
  align-items: center;
}
.wc-title { margin-bottom: 14px; }
.wc-lead {
  font-size: 1rem;
  color: #4B5879;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 520px;
}
.wc-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
}
.wc-cta-btn {
  background: #4D8060;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
  line-height: 1.3;
}
.wc-cta-btn:hover { background: #3d6650; transform: translateY(-1px); }
.wc-cta-btn-sec {
  background: transparent;
  color: #005FF9;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 12px 28px;
  border: 1.5px solid #C0D0ED;
  border-radius: 50px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}
.wc-cta-btn-sec:hover { border-color: #005FF9; background: #EEF3FF; }

/* Document preview (right column) */
.wc-doc-preview {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wc-doc-cards { display: flex; gap: 12px; }
.wc-doc-card {
  flex: 1;
  background: #F8FAFD;
  border: 1px solid #D8E2EE;
  border-radius: 10px;
  padding: 12px;
}
.wc-doc-card--primary { border-top: 3px solid #4D8060; }
.wc-doc-card--receipt  { border-top: 3px solid #2E5DA8; }
.wc-dc-top {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4B5879;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.wc-dc-lines { display: flex; flex-direction: column; gap: 5px; }
.wc-dc-line  { height: 6px; background: #D8E2EE; border-radius: 3px; }
.wc-dc-line--med   { width: 70%; }
.wc-dc-line--short { width: 50%; }

.wc-doc-photos {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.wc-doc-photo-slot {
  width: 52px; height: 52px;
  border: 1.5px solid #D8E2EE;
  border-radius: 8px;
  background: #F4F6FA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9BAFD4;
  flex-shrink: 0;
}
.wc-doc-photo-slot--dim { opacity: 0.5; }
.wc-doc-photos-label {
  font-size: 0.8125rem;
  color: #6B7A99;
  line-height: 1.4;
}
.wc-doc-save-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F0F7F4;
  border: 1px solid #C3D9CB;
  color: #2E6048;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  align-self: flex-start;
}

/* 4-step process (vertical) */
.wc-process {
  background: #F9FAFB;
  border: 1.5px solid #D8E2EE;
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 24px;
}
.wc-process-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #8A95B0;
  margin-bottom: 24px;
}
.wc-process-track { display: flex; flex-direction: column; }
.wc-pstep { display: flex; gap: 16px; align-items: flex-start; }
.wc-pstep-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #4D8060;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wc-pstep-body  { padding-top: 8px; flex: 1; }
.wc-pstep-title { font-size: 0.9375rem; font-weight: 700; color: #0f1e3c; margin-bottom: 4px; }
.wc-pstep-desc  { font-size: 0.875rem; color: #4B5879; line-height: 1.5; }
.wc-parrow {
  padding: 4px 0 4px 19px;
  color: #B0BED4;
}
.wc-parrow svg { width: 16px; height: 20px; display: block; }

/* Two columns: coverage / exclusions */
.wc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.wc-coverage {
  background: #F8FDFB;
  border: 1.5px solid #C3D9CB;
  border-left: 4px solid #4D8060;
  border-radius: 16px;
  padding: 24px 28px;
}
.wc-exclusions {
  background: #F9FAFB;
  border: 1.5px solid #D8E2EE;
  border-left: 4px solid #8A95B0;
  border-radius: 16px;
  padding: 24px 28px;
}
.wc-col-title { font-size: 0.9375rem; font-weight: 700; color: #0f1e3c; margin-bottom: 14px; }
.wc-cover-list, .wc-exclude-list {
  list-style: none; margin: 0 0 12px 0; padding: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.wc-cover-list li {
  font-size: 0.9375rem; color: #1a3a2a;
  padding-left: 20px; position: relative; line-height: 1.45;
}
.wc-cover-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: #4D8060; font-weight: 700;
}
.wc-exclude-list li {
  font-size: 0.9375rem; color: #4B5879;
  padding-left: 16px; position: relative; line-height: 1.45;
}
.wc-exclude-list li::before {
  content: '○'; position: absolute; left: 0;
  color: #8A95B0; font-size: 0.7rem; top: 3px;
}
.wc-col-note {
  font-size: 0.8125rem; color: #6B7A99; font-style: italic;
  line-height: 1.45; padding-top: 10px; border-top: 1px solid #E4EBF4;
}

/* Accordion */
.wc-detail {
  background: #FFFBF0;
  border: 1px solid #E8D4A0;
  border-left: 4px solid #D97706;
  border-radius: 14px;
  margin-bottom: 24px;
  overflow: hidden;
}
.wc-detail-summary {
  font-size: 0.9375rem; font-weight: 600; color: #92500C;
  padding: 15px 20px; cursor: pointer;
  list-style: none; display: flex; align-items: center; gap: 8px;
  user-select: none;
}
.wc-detail-summary::-webkit-details-marker { display: none; }
.wc-detail-summary::before {
  content: '▶'; font-size: 0.65rem; color: #D97706;
  transition: transform 0.2s; flex-shrink: 0;
}
.wc-detail[open] .wc-detail-summary::before { transform: rotate(90deg); }
.wc-detail-body {
  padding: 0 20px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.wc-detail-body p { font-size: 0.875rem; color: #4B5879; line-height: 1.5; }
.wc-detail-note { font-weight: 600; color: #0f1e3c !important; }

/* Save list */
.wc-save {
  background: #EDF3FF;
  border: 1px solid #C5D7F7;
  border-left: 4px solid #005FF9;
  border-radius: 14px;
  padding: 18px 28px;
  margin-bottom: 24px;
  display: flex;
  gap: 20px;
  align-items: baseline;
  flex-wrap: wrap;
}
.wc-save-title { font-size: 0.875rem; font-weight: 700; color: #0f1e3c; flex-shrink: 0; }
.wc-save-list {
  list-style: disc; margin: 0 0 0 16px; padding: 0;
  columns: 2; column-gap: 24px; flex: 1;
}
.wc-save-list li {
  font-size: 0.875rem; color: #1a3060; line-height: 1.5; break-inside: avoid;
}

/* Terms */
.wc-terms {
  font-size: 0.8125rem; color: #8A95B0; font-style: italic;
  text-align: center; line-height: 1.55;
}

/* ── Warranty claim modal ─────────────────────────── */
.wc-modal {
  position: fixed; inset: 0; z-index: 9998;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.wc-modal[hidden] { display: none !important; }
.wc-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,20,45,0.65);
}
.wc-modal-card {
  position: relative; z-index: 1;
  background: #fff; border-radius: 20px; padding: 28px 32px;
  width: 100%; max-width: 560px; max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(10,20,45,0.3);
}
.wc-modal-hd {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.wc-modal-title { font-size: 1.125rem; font-weight: 700; color: #0f1e3c; }
.wc-modal-close {
  background: none; border: none; color: #8A95B0; cursor: pointer;
  padding: 4px; border-radius: 6px; transition: color 0.15s, background 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.wc-modal-close:hover { color: #0f1e3c; background: #F0F4F8; }
.wc-modal-lead {
  font-size: 0.875rem; color: #4B5879; line-height: 1.55; margin-bottom: 20px;
}

/* Form layout */
.wc-form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.wc-fg { margin-bottom: 12px; }
.wc-label { display: block; font-size: 0.8125rem; font-weight: 600; color: #0f1e3c; margin-bottom: 5px; }
.wc-req  { color: #D97706; }
.wc-input {
  width: 100%; font-size: 0.9rem; padding: 10px 13px;
  border: 1.5px solid #C8D4E0; border-radius: 10px;
  background: #fff; color: #0f1e3c; outline: none;
  transition: border-color 0.15s; font-family: inherit;
  box-sizing: border-box;
}
.wc-input:focus  { border-color: #4D8060; }
.wc-input.wc-invalid { border-color: #DC2626; }
.wc-textarea { resize: vertical; min-height: 72px; }

/* File drop zone */
.wc-drop {
  border: 1.5px dashed #C8D4E0; border-radius: 12px;
  padding: 18px 16px; text-align: center; cursor: pointer;
  transition: border-color 0.15s, background 0.15s; color: #8A95B0;
  outline: none;
}
.wc-drop:hover, .wc-drop:focus, .wc-drop.dragover {
  border-color: #4D8060; background: #F0F7F4; color: #4D8060;
}
.wc-drop input[type="file"] { display: none; }
.wc-drop-text { font-size: 0.875rem; color: #4B5879; margin: 6px 0 3px; }
.wc-drop-hint { font-size: 0.78rem; color: #8A95B0; }

.wc-file-list {
  list-style: none; margin: 8px 0 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.wc-file-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: #4B5879;
  background: #F4F6FA; padding: 5px 10px; border-radius: 6px;
}
.wc-file-size { color: #8A95B0; font-size: 0.75rem; margin-left: 4px; }
.wc-file-remove {
  margin-left: auto; background: none; border: none;
  color: #8A95B0; cursor: pointer; font-size: 1.1rem;
  line-height: 1; padding: 0 2px; transition: color 0.15s;
}
.wc-file-remove:hover { color: #DC2626; }

/* Checkbox */
.wc-check-label {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.875rem; color: #4B5879; cursor: pointer;
  margin-bottom: 4px; line-height: 1.4;
}
.wc-check-label input { flex-shrink: 0; margin-top: 3px; accent-color: #4D8060; }
.wc-no-docs-hint {
  font-size: 0.8125rem; color: #6B7A99; font-style: italic;
  margin: 3px 0 12px 22px;
}

/* Error box */
.wc-form-err {
  background: #FEF2F2; border: 1px solid #FECACA; border-radius: 8px;
  padding: 10px 14px; font-size: 0.875rem; color: #B91C1C; margin-bottom: 12px;
}

/* Submit button */
.wc-submit-btn {
  width: 100%; background: #4D8060; color: #fff;
  font-size: 1rem; font-weight: 600; padding: 13px;
  border: none; border-radius: 12px; cursor: pointer; margin-top: 4px;
  transition: background 0.2s; font-family: inherit;
}
.wc-submit-btn:hover    { background: #3d6650; }
.wc-submit-btn:disabled { background: #8A95B0; cursor: not-allowed; }

/* Success state */
.wc-modal-success { text-align: center; padding: 12px 0 8px; }
.wc-success-icon  { margin-bottom: 16px; }
.wc-modal-success h3 { font-size: 1.125rem; font-weight: 700; color: #0f1e3c; margin-bottom: 8px; }
.wc-modal-success p  { font-size: 0.875rem; color: #4B5879; line-height: 1.5; margin-bottom: 20px; }
.wc-modal-close-btn {
  background: #F0F4F8; color: #0f1e3c; border: none; border-radius: 10px;
  padding: 10px 28px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: background 0.15s; font-family: inherit;
}
.wc-modal-close-btn:hover { background: #E4EBF4; }

/* Section heading */
.wc-section-title {
  font-size: 1rem; font-weight: 700; color: #0f1e3c;
  margin: 0 0 20px;
}

/* Notice (head warning) */
.wc-notice {
  font-size: 0.8125rem; color: #5A4205;
  background: #FEF9EC; border: 1px solid #F5D97A;
  border-radius: 8px; padding: 11px 15px; margin-bottom: 24px;
  line-height: 1.5;
}

/* Responsibility block */
.wc-responsibility {
  margin-bottom: 32px;
}
.wc-resp-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px;
}
.wc-resp-card {
  background: #F9FAFB; border: 1px solid #D8E2EE;
  border-radius: 14px; padding: 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.wc-resp-card--construction { border-top: 3px solid #4D8060; }
.wc-resp-card--work          { border-top: 3px solid #2E5DA8; }
.wc-resp-card-title {
  font-size: 0.9375rem; font-weight: 700; color: #0f1e3c; margin: 0;
}
.wc-resp-card-text {
  font-size: 0.9375rem; color: #4B5879; line-height: 1.6; margin: 0; flex: 1;
}
.wc-resp-card-note {
  font-size: 0.75rem; font-weight: 600; color: #6B7A99;
  padding-top: 10px; margin: 0; border-top: 1px solid #E4EBF4;
}
.wc-resp-overall {
  font-size: 0.875rem; color: #4B5879; line-height: 1.6;
  padding: 14px 18px; background: #F4F6FA; border-radius: 10px;
  border: 1px solid #E0E8F4; margin: 0;
}

/* 5-step process (grid, horizontal at desktop) */
.wc-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
}
.wc-step {
  display: flex; flex-direction: column; gap: 7px;
  padding: 18px 16px 18px 0;
  border-top: 2px solid #4D8060;
}
.wc-step-num {
  font-size: 0.6875rem; font-weight: 700;
  color: #4D8060; letter-spacing: 0.06em;
}
.wc-step-title {
  font-size: 0.9375rem; font-weight: 700; color: #0f1e3c;
  margin: 0; line-height: 1.35;
}
.wc-step-desc {
  font-size: 0.9375rem; color: #4B5879; margin: 0; line-height: 1.55; flex: 1;
}
.wc-step-accent {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  color: #2E6048; background: #EBF5F0;
  border-radius: 4px; padding: 2px 8px;
}

/* Third-party warning */
.wc-third-party-warning {
  background: #FFF8E6; border: 1px solid #F5D97A;
  border-left: 4px solid #D97706;
  border-radius: 14px; padding: 22px 26px;
  margin-bottom: 20px;
}
.wc-warning-title {
  font-size: 0.9375rem; font-weight: 700; color: #7C5C04;
  margin: 0 0 9px;
}
.wc-warning-text {
  font-size: 0.9375rem; color: #6B4F00; line-height: 1.6; margin: 0;
}

/* Transport block */
.wc-transport {
  background: #F9FAFB; border: 1px solid #D8E2EE;
  border-radius: 12px; padding: 18px 22px;
  margin-bottom: 20px;
}
.wc-transport-title {
  font-size: 0.9375rem; font-weight: 700; color: #0f1e3c; margin: 0 0 7px;
}
.wc-transport-text {
  font-size: 0.9375rem; color: #4B5879; line-height: 1.6; margin: 0;
}
.wc-transport-note {
  font-size: 0.8125rem; color: #6B7A99; line-height: 1.55;
  margin: 0; font-style: italic;
}

/* Save extra note */
.wc-save-extra {
  font-size: 0.8125rem; color: #5A6E99; font-style: italic;
  margin-top: 8px; width: 100%;
}

/* Form: fieldset / radio */
.wc-fieldset {
  border: none; padding: 0; margin: 0;
}
.wc-fieldset legend { margin-bottom: 10px; }
.wc-radio-group {
  display: flex; flex-direction: column; gap: 8px;
}
.wc-radio-group--row {
  flex-direction: row; flex-wrap: wrap; gap: 6px 20px;
}
.wc-radio-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.875rem; color: #4B5879; cursor: pointer; line-height: 1.4;
}
.wc-radio-label input[type="radio"] { accent-color: #4D8060; flex-shrink: 0; }
.wc-consent-link { color: #2E5DA8; text-decoration: underline; }
.wc-consent-err-msg {
  font-size: 0.8125rem; color: #B91C1C; margin-top: 4px;
}

/* Own-teeth principle note */
.wc-own-teeth-note {
  background: #F4F6FA; border: 1px solid #C8D4E0;
  border-left: 4px solid #4B5879;
  border-radius: 14px; padding: 22px 26px;
  margin-bottom: 20px;
}
.wc-principle-text {
  font-size: 0.9375rem; font-weight: 700; color: #0f1e3c;
  margin: 0 0 9px; line-height: 1.5;
}
.wc-principle-subtext {
  font-size: 0.875rem; color: #4B5879; line-height: 1.6; margin: 0;
}

/* Date-unknown checkbox */
.wc-date-unknown-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; color: #6B7A99; cursor: pointer;
  margin-top: 7px; line-height: 1.4;
}
.wc-date-unknown-label input { accent-color: #4D8060; flex-shrink: 0; }
.wc-input:disabled { background: #F4F6FA; color: #8A95B0; cursor: not-allowed; }

/* Container constraint for warranty block */
.warranty-block .container { max-width: 1120px; }

/* Dark theme */
@media (prefers-color-scheme: dark) {
  .wc-modal-card { background: #1a2440; }
  .wc-modal-title, .wc-pstep-title, .wc-col-title, .wc-save-title { color: #E8EEF8; }
  .wc-modal-lead, .wc-lead, .wc-pstep-desc, .wc-col-note { color: #8A9BBB; }
  .wc-input {
    background: #111c35; border-color: #2E4470;
    color: #E8EEF8;
  }
  .wc-input:focus { border-color: #4D8060; }
  .wc-drop { border-color: #2E4470; background: #111c35; }
  .wc-drop:hover, .wc-drop:focus, .wc-drop.dragover { background: #152d20; border-color: #4D8060; }
  .wc-drop-text { color: #8A9BBB; }
  .wc-submit-btn { background: #4D8060; }
  .wc-modal-backdrop { background: rgba(5,10,25,0.8); }
  .wc-modal-close-btn { background: #1e2e50; color: #E8EEF8; }
  .wc-modal-close-btn:hover { background: #2E4470; }
  .wc-modal-close:hover { background: #1e2e50; color: #E8EEF8; }
  .wc-file-list li { background: #111c35; color: #8A9BBB; }
  .wc-form-err { background: #2d1010; border-color: #7f1d1d; color: #fca5a5; }
  .wc-section-title { color: #E8EEF8; }
  .wc-notice { background: #2a1f00; border-color: #7a6010; color: #d4ac40; }
  .wc-resp-card { background: #111c35; border-color: #1e3060; }
  .wc-resp-card-title { color: #E8EEF8; }
  .wc-resp-card-text { color: #8A9BBB; }
  .wc-resp-card-note { color: #6B7A99; border-color: #1e3060; }
  .wc-resp-overall { background: #0d1730; border-color: #1e3060; color: #8A9BBB; }
  .wc-step-title { color: #E8EEF8; }
  .wc-step-desc  { color: #8A9BBB; }
  .wc-step-accent { background: #0f2a1a; color: #5EB882; }
  .wc-warning-title { color: #D97706; }
  .wc-warning-text  { color: #B07A30; }
  .wc-third-party-warning { background: #1c1200; border-color: #7a6010; }
  .wc-transport { background: #111c35; border-color: #1e3060; }
  .wc-transport-title { color: #E8EEF8; }
  .wc-transport-text, .wc-transport-note { color: #8A9BBB; }
  .wc-radio-label { color: #8A9BBB; }
  .wc-consent-link { color: #7aaff5; }
  .wc-save-extra { color: #6B7A99; }
  .wc-own-teeth-note { background: #111c35; border-color: #1e3060; }
  .wc-principle-text { color: #E8EEF8; }
  .wc-principle-subtext { color: #8A9BBB; }
}

/* Responsive */
@media (max-width: 1024px) {
  .wc-top { gap: 36px 48px; }
  .wc-steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .wc-top { grid-template-columns: 1fr; gap: 28px; }
  .wc-doc-preview { display: none; }
  .wc-cols  { grid-template-columns: 1fr; }
  .wc-ctas  { max-width: none; }
  .wc-save  { flex-direction: column; gap: 8px; }
  .wc-save-list { columns: 1; }
  .wc-resp-cols { grid-template-columns: 1fr; }
  .wc-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .warranty-block { padding: 56px 0 64px; }
  .wc-process { padding: 20px; }
  .wc-coverage, .wc-exclusions { padding: 18px 20px; }
  .wc-save { padding: 16px 18px; }
  .wc-form-2col { grid-template-columns: 1fr; }
  .wc-modal-card { padding: 20px 16px; border-radius: 14px; }
  .wc-steps { grid-template-columns: 1fr; }
  .wc-step { border-top: none; border-left: 2px solid #4D8060; padding: 0 0 20px 16px; }
  .wc-step:last-child { padding-bottom: 0; }
  .wc-third-party-warning { padding: 18px; }
  .wc-own-teeth-note { padding: 18px; }
  .wc-transport { padding: 16px 18px; }
  .wc-radio-group--row { flex-direction: column; gap: 8px; }
  /* Mobile font sizes ≥16px */
  .wc-step-title, .wc-step-desc,
  .wc-resp-card-text, .wc-cover-list li, .wc-exclude-list li,
  .wc-transport-text, .wc-warning-text, .wc-principle-text { font-size: 1rem; }
  .wc-lead { font-size: 1rem; }
  .wc-modal-lead, .wc-input, .wc-radio-label { font-size: 1rem; }
}
@media (max-width: 480px) {
  .wc-modal-card { max-height: 96vh; }
}

/* ══════════════════════════════════════════════════════
   BLOCK 14 — REVIEWS (.rv-)
   ══════════════════════════════════════════════════════ */

.reviews-block {
  background: #F2F5FA;
  padding: 80px 0 88px;
  border-top: 1px solid #E4EBF4;
}

/* Header */
.rv-header { margin-bottom: 28px; }
.rv-subtitle {
  font-size: 1rem; color: #4B5879; line-height: 1.6;
  margin-top: 10px; margin-bottom: 10px; max-width: 640px;
}
.rv-consent-note {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; color: #6B7A99;
  background: rgba(255,255,255,0.8); border: 1px solid #D8E2EE;
  padding: 6px 12px; border-radius: 20px;
}

/* Intro box */
.rv-intro {
  background: #fff; border-radius: 16px; padding: 18px 28px;
  margin-bottom: 20px; border: 1px solid #E0E8F0;
}
.rv-intro > p { font-size: 0.9375rem; color: #0f1e3c; margin-bottom: 10px; }
.rv-intro-list {
  list-style: disc; margin: 0 0 0 18px; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 32px;
}
.rv-intro-list li { font-size: 0.875rem; color: #4B5879; line-height: 1.45; }

/* Video notice */
.rv-video-notice { margin-bottom: 24px; }
.rv-video-notice p { font-size: 0.9rem; color: #4B5879; margin-bottom: 4px; }
.rv-video-notice-small { font-size: 0.8125rem; color: #8A95B0; font-style: italic; }

/* ── Shared video container ─── */
.rv-video-container {
  position: relative; border-radius: 14px; overflow: hidden;
  background: #0f1e3c;
}
.rv-poster {
  position: relative; padding-top: 56.25%;
  background: linear-gradient(145deg, #1c2d50 0%, #0f1e3c 60%, #152d1e 100%);
  cursor: pointer;
}
.rv-poster-chip {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.18); font-size: 0.72rem;
  font-weight: 600; padding: 4px 10px; border-radius: 20px;
  backdrop-filter: blur(4px); z-index: 2;
}
.rv-poster-foot {
  position: absolute; bottom: 10px; left: 12px; right: 12px;
  display: flex; align-items: flex-end; justify-content: space-between; z-index: 2;
}
.rv-poster-name { font-size: 0.78rem; color: rgba(255,255,255,0.75); }
.rv-duration-badge {
  background: rgba(0,0,0,0.6); color: #fff;
  font-size: 0.72rem; padding: 3px 7px; border-radius: 4px;
  font-variant-numeric: tabular-nums;
}
.rv-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,0.88); color: #0f1e3c;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding-left: 4px; z-index: 3;
  transition: background 0.2s, transform 0.2s;
}
.rv-play-btn:hover { background: #fff; transform: translate(-50%,-50%) scale(1.1); }
.rv-video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
}
.rv-no-src-msg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15,30,60,0.92);
}
.rv-no-src-msg p { color: rgba(255,255,255,0.55); font-size: 0.875rem; }

/* ── Featured video ─── */
.rv-featured {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 28px 40px; margin-bottom: 28px; align-items: start;
}
.rv-featured-tag {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: #8A95B0; margin-bottom: 10px;
}
.rv-featured-desc {
  font-size: 0.875rem; color: #4B5879; line-height: 1.5; margin-top: 10px;
}
.rv-case-head {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: #8A95B0; margin-bottom: 14px;
}
.rv-facts {
  margin: 0 0 14px 0; padding: 0;
  display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; align-items: start;
}
.rv-facts dt { font-size: 0.8125rem; color: #8A95B0; font-weight: 500; white-space: nowrap; }
.rv-facts dd { font-size: 0.875rem; color: #0f1e3c; font-weight: 600; line-height: 1.4; }
.rv-case-disclaimer {
  font-size: 0.8rem; color: #8A95B0; font-style: italic; line-height: 1.5;
  padding: 10px 0 12px; border-top: 1px solid #E4EBF4;
}
.rv-transcript { border: none; }
.rv-transcript-toggle {
  font-size: 0.8125rem; color: #005FF9; cursor: pointer;
  list-style: none; user-select: none;
  display: inline-flex; align-items: center; gap: 4px;
}
.rv-transcript-toggle::-webkit-details-marker { display: none; }
.rv-transcript-toggle::before { content: '▶'; font-size: 0.6rem; transition: transform 0.2s; }
.rv-transcript[open] .rv-transcript-toggle::before { transform: rotate(90deg); }
.rv-transcript-body { padding: 8px 0 2px; font-size: 0.875rem; color: #4B5879; line-height: 1.5; }
.rv-transcript-ph { color: #8A95B0; font-style: italic; }

/* ── 3-card grid ─── */
.rv-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 40px; }
.rv-card {
  background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #E0E8F0;
}
.rv-card-info { padding: 14px 16px; }
.rv-card-situation { font-size: 0.875rem; color: #4B5879; line-height: 1.45; margin-bottom: 10px; }

/* ── WhatsApp section ─── */
.rv-wa-section { margin-bottom: 40px; }
.rv-wa-title { font-size: 1.125rem; font-weight: 700; color: #0f1e3c; margin-bottom: 8px; }
.rv-wa-lead {
  font-size: 0.875rem; color: #4B5879; line-height: 1.5;
  margin-bottom: 20px; max-width: 600px;
}
.rv-wa-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.rv-wa-card {
  background: #fff; border: 1px solid #E0E8F0; border-radius: 14px;
  padding: 16px; display: flex; flex-direction: column; gap: 10px;
}
.rv-wa-category {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: #8A95B0;
}
.rv-wa-quote {
  font-size: 0.9375rem; color: #0f1e3c; line-height: 1.5;
  font-style: italic; margin: 0; flex: 1;
}
.rv-wa-quote::before { content: '\201C'; color: #B0BED4; font-size: 1.4rem; line-height: 0; vertical-align: -0.3em; margin-right: 1px; }
.rv-wa-quote::after  { content: '\201D'; color: #B0BED4; font-size: 1.4rem; line-height: 0; vertical-align: -0.3em; margin-left: 1px; }
.rv-wa-meta { display: flex; flex-direction: column; gap: 2px; }
.rv-wa-person  { font-size: 0.8125rem; font-weight: 600; color: #0f1e3c; }
.rv-wa-context { font-size: 0.78rem; color: #8A95B0; }
.rv-wa-footer  {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; flex-wrap: wrap; padding-top: 8px; border-top: 1px solid #F0F4F8;
}
.rv-wa-original-btn {
  background: none; border: none; font-size: 0.78rem; color: #005FF9;
  cursor: pointer; padding: 0; font-family: inherit; transition: color 0.15s;
}
.rv-wa-original-btn:hover { color: #0040b0; text-decoration: underline; }
.rv-wa-badge {
  font-size: 0.72rem; color: #8A95B0; background: #F4F6FA;
  padding: 3px 8px; border-radius: 4px; white-space: nowrap;
}

/* ── CTA ─── */
.rv-cta {
  background: #0f1e3c; border-radius: 24px;
  padding: 44px 56px; text-align: center; margin-bottom: 24px;
}
.rv-cta-title { font-size: 1.375rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.rv-cta-lead {
  font-size: 0.9375rem; color: rgba(255,255,255,.7); line-height: 1.55;
  margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto;
}
.rv-cta-btn {
  background: #4D8060; color: #fff; font-size: 1rem; font-weight: 600;
  padding: 15px 40px; border: none; border-radius: 50px; cursor: pointer;
  transition: background 0.2s, transform 0.15s; font-family: inherit;
}
.rv-cta-btn:hover { background: #3d6650; transform: translateY(-1px); }
.rv-block-disclaimer {
  font-size: 0.8125rem; color: #8A95B0; font-style: italic;
  text-align: center; line-height: 1.55;
}

/* ── WA screenshot modal ─── */
.rv-wa-modal {
  position: fixed; inset: 0; z-index: 9997;
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.rv-wa-modal[hidden] { display: none !important; }
.rv-wa-modal-bg { position: absolute; inset: 0; background: rgba(10,20,45,0.7); }
.rv-wa-modal-frame {
  position: relative; z-index: 1;
  background: #fff; border-radius: 18px; padding: 28px;
  max-width: 340px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(10,20,45,0.35);
}
.rv-wa-modal-close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none; color: #8A95B0; cursor: pointer;
  padding: 4px; border-radius: 6px; transition: color 0.15s, background 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.rv-wa-modal-close:hover { color: #0f1e3c; background: #F0F4F8; }
.rv-wa-modal-content { margin-bottom: 14px; min-height: 100px; }
.rv-wa-placeholder {
  background: #F4F6FA; border-radius: 12px; padding: 20px;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.rv-wa-placeholder-icon { color: #B0BED4; }
.rv-wa-placeholder-bubble {
  background: #fff; border-radius: 10px; padding: 10px 14px;
  font-size: 0.875rem; color: #0f1e3c; line-height: 1.5; font-style: italic;
  text-align: left; width: 100%; box-sizing: border-box;
}
.rv-wa-placeholder-person { font-size: 0.78rem; color: #8A95B0; }
.rv-wa-placeholder-status { font-size: 0.75rem; color: #8A95B0; font-style: italic; }
.rv-wa-modal-note { font-size: 0.78rem; color: #8A95B0; font-style: italic; text-align: center; line-height: 1.45; }

/* Dark */
@media (prefers-color-scheme: dark) {
  .reviews-block { background: #10192e; }
  .rv-intro, .rv-card, .rv-wa-card { background: #141f38; border-color: #1e2e50; }
  .rv-intro > p, .rv-facts dd, .rv-wa-title, .rv-wa-quote, .rv-wa-person { color: #E8EEF8; }
  .rv-intro-list li, .rv-card-situation, .rv-wa-lead { color: #8A9BBB; }
  .rv-wa-modal-frame { background: #141f38; }
  .rv-wa-placeholder { background: #1a2840; }
  .rv-wa-placeholder-bubble { background: #0f1e3c; color: #E8EEF8; }
  .rv-wa-modal-close:hover { background: #1e2e50; color: #E8EEF8; }
  .rv-consent-note { background: rgba(20,31,56,0.8); border-color: #1e2e50; }
}

/* Responsive */
@media (max-width: 1024px) {
  .rv-featured { gap: 20px 28px; }
  .rv-cta { padding: 36px 40px; }
}
@media (max-width: 900px) {
  .rv-featured { grid-template-columns: 1fr; gap: 16px; }
  .rv-grid { grid-template-columns: 1fr 1fr; }
  .rv-wa-grid { grid-template-columns: 1fr 1fr; }
  .rv-intro-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .reviews-block { padding: 56px 0 64px; }
  .rv-grid { grid-template-columns: 1fr; }
  .rv-wa-grid { grid-template-columns: 1fr; }
  .rv-cta { padding: 28px 22px; border-radius: 16px; }
  .rv-cta-title { font-size: 1.125rem; }
}

/* ══════════════════════════════════════════════════════
   BLOCK 15 — FAQ (.fq-)
   ══════════════════════════════════════════════════════ */

.faq-block {
  background: #fff;
  padding: 80px 0 88px;
  border-top: 1px solid #E4EBF4;
}

/* 2-col layout: sticky sidebar + accordion */
.fq-layout {
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 0 60px;
  align-items: start;
}
.fq-sidebar {
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.fq-sidebar-title { font-size: 1.1875rem; font-weight: 700; color: #0f1e3c; margin-bottom: 10px; line-height: 1.35; }
.fq-sidebar-lead  { font-size: 0.875rem; color: #4B5879; line-height: 1.55; margin-bottom: 20px; }
.fq-sidebar-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.fq-sidebar-main-btn {
  background: #4D8060; color: #fff;
  padding: 12px 20px; border-radius: 50px; border: none;
  font-size: 0.875rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s; font-family: inherit; text-align: center;
}
.fq-sidebar-main-btn:hover { background: #3d6650; }
.fq-sidebar-warranty-btn {
  background: none; color: #005FF9; border: none;
  font-size: 0.8125rem; cursor: pointer; padding: 0;
  font-family: inherit; text-align: left; line-height: 1.45;
  text-decoration: underline;
}
.fq-sidebar-warranty-btn:hover { color: #0040b0; }
.fq-group-nav { display: flex; flex-direction: column; gap: 2px; }
.fq-group-nav-link {
  font-size: 0.8125rem; color: #4B5879; text-decoration: none;
  padding: 7px 10px; border-radius: 8px; border-left: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.fq-group-nav-link:hover { background: #F4F6FA; color: #0f1e3c; }
.fq-group-nav-link.fq-nav-active { background: #F0F7F4; color: #2E6048; border-left-color: #4D8060; font-weight: 600; }

/* Mobile filter tabs (hidden on desktop) */
.fq-mobile-filters { display: none; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.fq-filter-btn {
  background: #F4F6FA; color: #4B5879; border: 1.5px solid #E0E8F0;
  border-radius: 20px; padding: 7px 14px; font-size: 0.8125rem;
  cursor: pointer; font-family: inherit; transition: all 0.15s;
}
.fq-filter-btn.fq-filter-active { background: #4D8060; color: #fff; border-color: #4D8060; }

/* FAQ groups */
.fq-group { margin-bottom: 36px; }
.fq-group-title {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; color: #8A95B0; margin-bottom: 4px;
  padding-bottom: 10px; border-bottom: 1px solid #E4EBF4;
}

/* Individual FAQ items */
.fq-item { border-bottom: 1px solid #EAEFF6; }
.fq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 15px 4px 15px 0; cursor: pointer;
  list-style: none; user-select: none;
}
.fq-q::-webkit-details-marker { display: none; }
.fq-q-text { font-size: 0.9375rem; font-weight: 600; color: #0f1e3c; line-height: 1.4; flex: 1; }
.fq-q-icon { flex-shrink: 0; transition: transform 0.22s; color: #8A95B0; }
.fq-item[open] > .fq-q .fq-q-icon { transform: rotate(180deg); }
.fq-item[open] > .fq-q .fq-q-text { color: #2E6048; }

/* Answer area */
.fq-a {
  padding: 0 4px 18px 0;
  animation: fq-in 0.18s ease;
}
@keyframes fq-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.fq-a p  { font-size: 0.9rem; color: #4B5879; line-height: 1.6; margin-bottom: 10px; }
.fq-a p:last-child { margin-bottom: 0; }
.fq-a ul { list-style: disc; margin: 0 0 10px 0; padding-left: 20px; display: flex; flex-direction: column; gap: 4px; }
.fq-a ol { list-style: decimal; margin: 0 0 10px 0; padding-left: 20px; display: flex; flex-direction: column; gap: 4px; }
.fq-a li { font-size: 0.875rem; color: #4B5879; line-height: 1.45; }
.fq-a-cta {
  display: inline-flex; align-items: center;
  background: #4D8060; color: #fff;
  padding: 10px 20px; border-radius: 50px; border: none;
  font-size: 0.875rem; font-weight: 600; cursor: pointer;
  margin-top: 12px; transition: background 0.2s; font-family: inherit;
}
.fq-a-cta:hover { background: #3d6650; }

/* Closing block */
.fq-close {
  background: #F0F7F4; border: 1.5px solid #C3D9CB;
  border-left: 4px solid #4D8060; border-radius: 20px;
  padding: 28px 32px; margin-top: 8px;
}
.fq-close-title { font-size: 1.0625rem; font-weight: 700; color: #0f1e3c; margin-bottom: 8px; }
.fq-close-lead  { font-size: 0.875rem; color: #4B5879; line-height: 1.55; margin-bottom: 18px; }
.fq-close-btns  { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 12px; }
.fq-close-main-btn {
  background: #4D8060; color: #fff; padding: 12px 26px;
  border-radius: 50px; border: none; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s; font-family: inherit;
}
.fq-close-main-btn:hover { background: #3d6650; }
.fq-close-org-btn {
  background: none; color: #005FF9; border: 1.5px solid #C0D0ED;
  border-radius: 50px; padding: 11px 22px; font-size: 0.875rem;
  cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.fq-close-org-btn:hover { border-color: #005FF9; background: #EEF3FF; }
.fq-close-disclaimer { font-size: 0.8rem; color: #8A95B0; font-style: italic; line-height: 1.5; }

/* Dark theme */
@media (prefers-color-scheme: dark) {
  .faq-block { background: #0f1c35; }
  .fq-q-text  { color: #E8EEF8; }
  .fq-item[open] > .fq-q .fq-q-text { color: #7DC4A0; }
  .fq-item, .fq-group-title { border-color: #1e2e50; }
  .fq-a p, .fq-a li { color: #8A9BBB; }
  .fq-close { background: #141f38; border-color: #2E6048; }
  .fq-close-title { color: #E8EEF8; }
  .fq-close-lead  { color: #8A9BBB; }
  .fq-sidebar { scrollbar-color: #1e2e50 transparent; }
  .fq-sidebar-title { color: #E8EEF8; }
  .fq-sidebar-lead  { color: #8A9BBB; }
  .fq-group-nav-link { color: #8A9BBB; }
  .fq-group-nav-link:hover { background: #141f38; color: #E8EEF8; }
  .fq-group-nav-link.fq-nav-active { background: #152d1e; color: #7DC4A0; }
  .fq-filter-btn { background: #141f38; color: #8A9BBB; border-color: #1e2e50; }
  .fq-filter-btn.fq-filter-active { background: #4D8060; color: #fff; }
}

/* Responsive */
@media (max-width: 1024px) {
  .fq-layout { grid-template-columns: 220px 1fr; gap: 0 40px; }
}
@media (max-width: 900px) {
  .fq-layout { grid-template-columns: 1fr; }
  .fq-sidebar {
    position: static; max-height: none; overflow: visible;
    background: #F9FAFB; border-radius: 16px; padding: 22px 24px;
    margin-bottom: 24px; border: 1px solid #E0E8F0;
  }
  .fq-group-nav { display: none; }
  .fq-mobile-filters { display: flex; }
}
@media (max-width: 640px) {
  .faq-block { padding: 56px 0 64px; }
  .fq-close { padding: 20px 18px; border-radius: 14px; }
  .fq-close-btns { flex-direction: column; align-items: stretch; }
}

/* ══════════════════════════════════════════════════════
   BLOCK 16 — FINAL FORM (.ff-)
   ══════════════════════════════════════════════════════ */

.ff-block {
  background: #0C1A38;
  padding: 80px 0 96px;
}

/* 2-col layout */
.ff-layout {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 0 56px;
  align-items: start;
}

/* ── Left info column ── */
.ff-heading {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
  text-wrap: balance;
}
.ff-lead {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* 3 result cards */
.ff-results { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.ff-result {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 14px 16px;
}
.ff-result-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  background: rgba(77,128,96,.25); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: #7DC4A0;
}
.ff-result-title { font-size: 0.875rem; font-weight: 700; color: #fff; margin-bottom: 3px; display: block; }
.ff-result-desc  { font-size: 0.8rem; color: rgba(255,255,255,.58); line-height: 1.45; }

/* Compact ticket note (ЭТАП 04) */
.ff-ticket-line {
  font-size: 0.85rem; color: rgba(255,255,255,.78); line-height: 1.5;
  background: rgba(234,179,8,.1); border: 1px solid rgba(234,179,8,.28);
  border-radius: 10px; padding: 10px 14px; margin-top: 4px;
}

/* ── Right form column ── */
.ff-ctx-banner {
  background: rgba(77,128,96,.15); border: 1px solid rgba(77,128,96,.4);
  border-radius: 12px; padding: 10px 16px; margin-bottom: 14px;
}
.ff-ctx-text { font-size: 0.8125rem; color: #7DC4A0; line-height: 1.45; }

.ff-card {
  background: #fff; border-radius: 20px; padding: 30px 32px;
  box-shadow: 0 12px 48px rgba(0,0,0,.4);
}

/* Toggle */
.ff-toggle-wrap {
  display: flex; gap: 6px; background: #F0F4FA;
  border-radius: 50px; padding: 4px; margin-bottom: 20px;
}
.ff-toggle-btn {
  flex: 1; padding: 9px 14px; border-radius: 50px; border: none;
  font-size: 0.875rem; font-weight: 500; color: #4B5879;
  background: none; cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.ff-toggle-btn.ff-toggle-active {
  background: #fff; color: #0f1e3c; font-weight: 600;
  box-shadow: 0 1px 6px rgba(0,0,0,.12);
}

/* Form layout */
.ff-form { display: flex; flex-direction: column; gap: 14px; }
/* ЭТАП 04: display:flex переопределял [hidden] — ветки и успех показывались одновременно. */
.ff-form[hidden], .ff-success[hidden] { display: none !important; }
.ff-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ff-field { display: flex; flex-direction: column; gap: 5px; }
.ff-label { font-size: 0.8rem; font-weight: 600; color: #0f1e3c; }
.ff-req { color: #E04040; margin-left: 2px; }
.ff-optional { font-weight: 400; color: #8A95B0; font-size: 0.74rem; }
.ff-input, .ff-textarea {
  border: 1.5px solid #D4DCEC; border-radius: 10px; padding: 9px 12px;
  font-size: 0.875rem; color: #0f1e3c; font-family: inherit; background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s; width: 100%; box-sizing: border-box;
}
.ff-input:focus, .ff-textarea:focus {
  outline: none; border-color: #4D8060; box-shadow: 0 0 0 3px rgba(77,128,96,.12);
}
.ff-input.ff-error { border-color: #E04040; box-shadow: 0 0 0 3px rgba(224,64,64,.1); }
.ff-textarea { resize: vertical; min-height: 68px; }
.ff-hint { font-size: 0.76rem; color: #8A95B0; line-height: 1.4; }
.ff-field-note { font-size: 0.76rem; color: #8A95B0; line-height: 1.4; margin-top: 3px; }
.ff-char-wrap { text-align: right; }
.ff-char-count { font-size: 0.73rem; color: #8A95B0; }

/* Radio pills */
.ff-radio-group { display: flex; gap: 6px; flex-wrap: wrap; }
.ff-radio-opt {
  display: flex; align-items: center; gap: 6px; cursor: pointer;
  font-size: 0.8125rem; color: #4B5879; padding: 7px 13px;
  border-radius: 50px; border: 1.5px solid #D4DCEC;
  transition: border-color 0.15s, background 0.15s; user-select: none;
}
.ff-radio-opt input { width: 0; height: 0; opacity: 0; position: absolute; }
.ff-radio-opt.ff-radio-selected {
  border-color: #4D8060; background: #F0F7F4; color: #2E6048; font-weight: 600;
}

/* Drop zone */
.ff-drop {
  border: 2px dashed #C3D4E0; border-radius: 14px; padding: 26px 20px;
  text-align: center; cursor: pointer; background: #FAFBFC;
  transition: border-color 0.15s, background 0.15s; position: relative;
}
.ff-drop:hover, .ff-drop:focus { border-color: #4D8060; outline: none; }
.ff-drop:focus { box-shadow: 0 0 0 3px rgba(77,128,96,.12); }
.ff-drop.ff-drop-over { border-color: #4D8060; background: #F0F7F4; }
.ff-drop-icon { margin: 0 auto 10px; display: block; }
.ff-drop-text { font-size: 0.875rem; color: #4B5879; margin-bottom: 4px; }
.ff-drop-link { color: #4D8060; font-weight: 600; text-decoration: underline; }
.ff-drop-hint { font-size: 0.76rem; color: #8A95B0; }
.ff-file-hidden { display: none; }

/* File list */
.ff-file-list { display: flex; flex-direction: column; gap: 5px; margin-top: 8px; }
.ff-file-item {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 12px; background: #F4F7FC; border-radius: 8px; border: 1px solid #E4EBF4;
}
.ff-file-meta { flex: 1; min-width: 0; }
.ff-file-name {
  font-size: 0.8rem; font-weight: 600; color: #0f1e3c;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block;
}
.ff-file-size { font-size: 0.73rem; color: #8A95B0; }
.ff-file-err  { font-size: 0.73rem; color: #E04040; display: block; }
.ff-file-remove {
  flex-shrink: 0; background: none; border: none; color: #8A95B0;
  cursor: pointer; font-size: 1.1rem; line-height: 1; padding: 2px 4px;
  border-radius: 4px; transition: color 0.15s, background 0.15s;
}
.ff-file-remove:hover { color: #E04040; background: #FEE2E2; }
.ff-file-error {
  font-size: 0.8rem; color: #E04040; background: #FEF2F2;
  border-radius: 8px; padding: 8px 12px; border: 1px solid #FCA5A5; margin-top: 4px;
}

/* Cloud section */
.ff-cloud-details { border: 1px solid #E4EBF4; border-radius: 12px; }
.ff-cloud-summary {
  list-style: none; padding: 10px 16px; cursor: pointer;
  font-size: 0.8125rem; color: #4D8060; font-weight: 600;
  display: flex; align-items: center; justify-content: space-between; user-select: none;
}
.ff-cloud-summary::-webkit-details-marker { display: none; }
.ff-cloud-chevron { transition: transform 0.2s; flex-shrink: 0; }
.ff-cloud-details[open] .ff-cloud-chevron { transform: rotate(180deg); }
.ff-cloud-body { padding: 0 16px 14px; display: flex; flex-direction: column; gap: 5px; }

/* Consent */
.ff-consent { display: flex; flex-direction: column; gap: 7px; }
.ff-consent-row { display: flex; gap: 9px; align-items: flex-start; cursor: pointer; }
.ff-consent-check { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; accent-color: #4D8060; cursor: pointer; }
.ff-consent-text { font-size: 0.8rem; color: #4B5879; line-height: 1.45; }
.ff-consent-links { display: flex; gap: 10px; flex-wrap: wrap; padding-left: 25px; }
.ff-consent-links a { font-size: 0.73rem; color: #005FF9; text-decoration: underline; }

/* Submit area */
.ff-submit-area { display: flex; flex-direction: column; gap: 8px; }
.ff-form-error {
  font-size: 0.8rem; color: #E04040; background: #FEF2F2;
  border-radius: 8px; padding: 9px 13px; border: 1px solid #FCA5A5;
}
.ff-submit {
  width: 100%; padding: 14px 24px; background: #4D8060; color: #fff; border: none;
  border-radius: 50px; font-size: 0.9375rem; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: background 0.2s, transform 0.1s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.ff-submit:hover:not(:disabled) { background: #3d6650; }
.ff-submit:active:not(:disabled) { transform: scale(0.99); }
.ff-submit:disabled { background: #8AB69A; cursor: not-allowed; }
.ff-submit-spinner {
  width: 17px; height: 17px; border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: #fff; border-radius: 50%;
  animation: ff-spin 0.65s linear infinite; flex-shrink: 0;
}
@keyframes ff-spin { to { transform: rotate(360deg); } }
.ff-disclaimer { font-size: 0.76rem; color: #8A95B0; text-align: center; line-height: 1.45; font-style: italic; }
.ff-no-scan-lead { font-size: 0.9375rem; font-weight: 700; color: #0f1e3c; }
.ff-no-scan-after { font-size: 0.8rem; color: #8A95B0; line-height: 1.45; text-align: center; }

/* ── Success screen ── */
.ff-success { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 4px 0; }
.ff-success-check {
  width: 58px; height: 58px; background: #F0F7F4; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: ff-pop 0.32s cubic-bezier(.18,.89,.32,1.28);
}
@keyframes ff-pop { from { transform: scale(.55); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.ff-success-title { font-size: 1.3rem; font-weight: 800; color: #0f1e3c; }
.ff-success-req { font-size: 0.8rem; color: #8A95B0; }
.ff-success-req strong { font-family: monospace; color: #4B5879; letter-spacing: .03em; }
.ff-success-steps { background: #F4F7FC; border-radius: 14px; padding: 16px 18px; text-align: left; width: 100%; }
.ff-success-steps-title {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: #8A95B0; margin-bottom: 12px;
}
.ff-success-ol { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.ff-success-ol li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.85rem; color: #4B5879; line-height: 1.45;
}
.ff-success-ol li::before {
  content: attr(data-n); flex-shrink: 0; width: 22px; height: 22px;
  background: #4D8060; color: #fff; border-radius: 50%;
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.ff-success-btns { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.ff-add-files-btn {
  width: 100%; padding: 10px 20px; background: #F0F7F4; color: #2E6048;
  border: 1.5px solid #C3D9CB; border-radius: 50px; font-size: 0.875rem;
  font-weight: 600; cursor: pointer; font-family: inherit; transition: background 0.15s;
}
.ff-add-files-btn:hover { background: #DFF0E6; }
.ff-contact-btn {
  background: none; border: none; color: #005FF9; font-size: 0.8rem;
  cursor: pointer; font-family: inherit; text-decoration: underline; padding: 2px 0;
}
.ff-ns-confirm { font-size: 0.875rem; color: #4B5879; line-height: 1.55; }

/* Dark theme */
@media (prefers-color-scheme: dark) {
  .ff-block { background: #060E1C; }
  .ff-card { background: #0E1C33; box-shadow: 0 16px 56px rgba(0,0,0,.6); }
  .ff-toggle-wrap { background: #080F1E; }
  .ff-toggle-btn { color: #6A7A9A; }
  .ff-toggle-btn.ff-toggle-active { background: #142030; color: #E8EEF8; }
  .ff-label { color: #C0D0E8; }
  .ff-input, .ff-textarea { background: #09152A; border-color: #1A2C4A; color: #E8EEF8; }
  .ff-input:focus, .ff-textarea:focus { border-color: #4D8060; }
  .ff-drop { background: #080F1E; border-color: #1A2C4A; }
  .ff-drop.ff-drop-over { background: #081A10; }
  .ff-drop-text { color: #6A7A9A; }
  .ff-radio-opt { border-color: #1A2C4A; color: #6A7A9A; }
  .ff-radio-opt.ff-radio-selected { background: #081A10; color: #7DC4A0; border-color: #4D8060; }
  .ff-cloud-details { border-color: #1A2C4A; }
  .ff-file-item { background: #09152A; border-color: #1A2C4A; }
  .ff-file-name { color: #E8EEF8; }
  .ff-consent-text { color: #6A7A9A; }
  .ff-success-title { color: #E8EEF8; }
  .ff-success-steps { background: #09152A; }
  .ff-success-ol li { color: #6A7A9A; }
  .ff-no-scan-lead { color: #E8EEF8; }
  .ff-add-files-btn { background: #081A10; color: #7DC4A0; border-color: #2E6048; }
}

/* Responsive */
@media (max-width: 1024px) {
  .ff-layout { grid-template-columns: 1fr; gap: 32px 0; }
  .ff-heading { font-size: 1.5rem; }
  .ff-results { flex-direction: row; flex-wrap: wrap; }
  .ff-result { flex: 1 1 calc(50% - 6px); min-width: 200px; }
}
@media (max-width: 700px) {
  .ff-block { padding: 52px 0 64px; }
  .ff-card { padding: 20px 16px; border-radius: 16px; }
  .ff-heading { font-size: 1.2rem; }
  .ff-results { flex-direction: column; }
  .ff-field-row { grid-template-columns: 1fr; }
}

/* ============================
   REAL CASE COMPARE — .rcc
   ============================ */
.rcc {
  background: #F0F4F8;
  padding: 80px 0 88px;
  border-top: 1px solid #E4EBF4;
}

.rcc-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 52px;
}

.rcc-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #005FF9;
  background: rgba(0, 95, 249, .08);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 16px;
}

.rcc-title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  color: #171714;
  margin: 0 0 14px;
  text-wrap: balance;
}

.rcc-sub {
  font-size: 15.5px;
  color: #5a6375;
  line-height: 1.55;
  margin: 0 0 10px;
}

.rcc-lead {
  font-size: 14.5px;
  font-weight: 600;
  color: #1a2540;
  margin: 0;
}

/* ── Cards ── */
.rcc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.rcc-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(15, 30, 60, .08), 0 1px 4px rgba(15, 30, 60, .04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rcc-card-head {
  padding: 28px 28px 0;
}

.rcc-variant-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #005FF9;
  background: rgba(0, 95, 249, .08);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 12px;
}

.rcc-variant-num--alt {
  color: #009E88;
  background: rgba(0, 158, 136, .09);
}

.rcc-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #171714;
  margin: 0 0 8px;
  line-height: 1.25;
}

.rcc-card-desc {
  font-size: 14px;
  color: #5a6375;
  line-height: 1.5;
  margin: 0;
}

.rcc-img-wrap {
  padding: 20px 0 0;
  flex: 1;
}

.rcc-img {
  width: 100%;
  height: auto;
  display: block;
}

.rcc-card-caption {
  font-size: 12.5px;
  color: #8491aa;
  text-align: center;
  padding: 10px 28px 20px;
  margin: 0;
  line-height: 1.4;
}

/* ── Comparison table ── */
.rcc-compare {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(15, 30, 60, .07);
  padding: 28px 32px;
  margin-bottom: 20px;
}

.rcc-table-wrap {
  overflow-x: auto;
}

.rcc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 420px;
}

.rcc-table thead tr {
  border-bottom: 2px solid #E8EFF8;
}

.rcc-th-param { width: 26%; padding-bottom: 14px; }
.rcc-th-v1, .rcc-th-v2 { padding-bottom: 14px; text-align: left; width: 37%; }

.rcc-th-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #005FF9;
  background: rgba(0, 95, 249, .09);
  border-radius: 4px;
  padding: 4px 10px;
}

.rcc-th-badge--alt {
  color: #009E88;
  background: rgba(0, 158, 136, .09);
}

.rcc-table tbody tr {
  border-bottom: 1px solid #EEF2F8;
}

.rcc-table tbody tr:last-child {
  border-bottom: none;
}

.rcc-table td {
  padding: 13px 12px 13px 0;
  color: #1a2540;
  vertical-align: top;
  line-height: 1.45;
}

.rcc-td-param {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8491aa;
  padding-right: 16px;
}

.rcc-price-v1 {
  font-weight: 700;
  color: #005FF9;
}

.rcc-limit-badge {
  display: inline-block;
  background: #FFF3CD;
  color: #7A5800;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 4px;
  padding: 4px 10px;
  line-height: 1.35;
}

.rcc-limit-muted {
  color: #5a6375;
}

/* ── Expert note ── */
.rcc-expert {
  background: #fff;
  border-left: 4px solid #005FF9;
  border-radius: 0 12px 12px 0;
  padding: 22px 28px;
  margin-bottom: 36px;
}

.rcc-expert-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #171714;
  margin: 0 0 8px;
}

.rcc-expert-text {
  font-size: 14.5px;
  color: #5a6375;
  line-height: 1.55;
  margin: 0;
}

/* ── Footer / CTA ── */
.rcc-footer {
  text-align: center;
}

.rcc-note {
  font-size: 13px;
  color: #8491aa;
  margin: 0 0 24px;
  line-height: 1.5;
}

.rcc-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.rcc-cta-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #005FF9;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
  min-height: 48px;
}

.rcc-cta-btn:hover {
  background: #0050d0;
  box-shadow: 0 4px 20px rgba(0, 95, 249, .3);
}

.rcc-cta-btn:focus-visible {
  outline: 3px solid #005FF9;
  outline-offset: 3px;
}

.rcc-cta-disclaimer {
  font-size: 12px;
  color: #8491aa;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .rcc { padding: 56px 0 64px; }
  .rcc-header { margin-bottom: 36px; }
  .rcc-cards { grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
  .rcc-compare { padding: 20px 20px; margin-bottom: 16px; }
  .rcc-expert { margin-bottom: 28px; }
  .rcc-cta-btn { width: 100%; max-width: 360px; }
}

@media (max-width: 480px) {
  .rcc { padding: 48px 0 56px; }
  .rcc-card-head { padding: 20px 20px 0; }
  .rcc-card-caption { padding: 8px 20px 16px; }
  .rcc-compare { padding: 16px 12px; }
  .rcc-expert { padding: 18px 20px; }

  /* Stacked table — no horizontal scroll */
  .rcc-table-wrap { overflow-x: visible; }
  .rcc-table { min-width: 0; display: block; }
  .rcc-table thead { display: none; }
  .rcc-table tbody { display: block; }
  .rcc-table tr {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    row-gap: 4px;
    column-gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #EEF2F8;
  }
  .rcc-table tr:last-child { border-bottom: none; }
  .rcc-td-param {
    grid-column: 1 / -1;
    font-size: 10.5px;
    padding: 0 0 2px;
  }
  .rcc-table td:not(.rcc-td-param) {
    padding: 0;
    font-size: 12.5px;
  }
  .rcc-limit-badge { font-size: 11.5px; padding: 3px 8px; }
}

/* ════════════════════════════════════════════════════════
   IMPLANT OPTIONS — #implant-options  (v2 polish)
   ════════════════════════════════════════════════════════ */

#implant-options {
  scroll-margin-top: 80px;
}

.implant-options {
  background: #F0F4F8;
  padding: 88px 0 96px;
  border-top: 1px solid #E4EBF4;
}

/* ── Header ── */
.implopt-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.implopt-title {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: #171714;
  margin: 8px 0 18px;
  text-wrap: balance;
}

.implopt-sub {
  font-size: 17px;
  color: #5a6375;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 620px;
}

/* ── Two-column intro ── */
.implopt-intro {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 52px;
}

.implopt-intro-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.implopt-intro-left p {
  font-size: 17px;
  color: #2a3040;
  line-height: 1.7;
  margin: 0;
}

/* ── Decision diagram ── */
.implopt-diagram {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px 26px;
  box-shadow: 0 3px 20px rgba(15, 30, 60, .09);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.implopt-diag-top {
  background: #EBF5EF;
  border: 1.5px solid #4D8060;
  border-radius: 10px;
  padding: 11px 28px;
  font-size: 14px;
  font-weight: 600;
  color: #2A5040;
  text-align: center;
  width: 100%;
  max-width: 240px;
}

.implopt-diag-arrow-v {
  width: 1.5px;
  height: 14px;
  background: #B0C4D8;
  margin: 0 auto;
}

.implopt-diag-eval {
  background: #0f1e3c;
  border-radius: 10px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 256px;
}

.implopt-diag-fork {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.implopt-diag-fork-line {
  width: 1.5px;
  height: 14px;
  background: #B0C4D8;
}

.implopt-diag-fork-nodes {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.implopt-diag-fork-node {
  flex: 1;
  border-radius: 10px;
  padding: 12px 8px;
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -.01em;
}

.implopt-diag-fork-node--bridge  { background: #EEF3FF; border: 1.5px solid #005FF9; color: #003ED4; }
.implopt-diag-fork-node--implant { background: #EBF5EF; border: 1.5px solid #4D8060; color: #2A5040; }
.implopt-diag-fork-node--combo   { background: #E6F6F4; border: 1.5px solid #009E88; color: #006D5F; }

.implopt-diag-thumbs {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
}

.implopt-diag-thumb {
  flex: 1;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.implopt-diag-thumb img {
  width: 100%;
  height: 82px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f7f8fa;
}

/* ── Three option cards ── */
.implopt-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  align-items: stretch;
}

.implopt-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(15, 30, 60, .08), 0 1px 3px rgba(15, 30, 60, .04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.implopt-card__picture {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  flex-shrink: 0;
  background: #f9f9f7;
}

.implopt-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .35s ease;
}

.implopt-card:hover .implopt-card__image {
  transform: scale(1.03);
}

.implopt-card__body {
  padding: 20px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #EEF2F8;
}

.implopt-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #005FF9;
}

.implopt-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #171714;
  margin: 0;
  line-height: 1.3;
}

.implopt-card__desc {
  font-size: 15px;
  color: #5a6375;
  line-height: 1.55;
  margin: 0;
}

.implopt-card__note {
  font-size: 14px;
  color: #8491aa;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

.implopt-card__checks {
  list-style: none;
  padding: 0;
  margin: 2px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.implopt-card__checks li {
  font-size: 15px;
  color: #2a3040;
  line-height: 1.45;
  padding-left: 18px;
  position: relative;
}

.implopt-card__checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #005FF9;
  opacity: .7;
}

/* ── Real example ── */
.implopt-example {
  margin-bottom: 0;
}

.implopt-example-inner {
  background: #FEFCF8;
  border-top: 3px solid rgba(195, 145, 30, 0.3);
  border-radius: 20px;
  box-shadow: 0 2px 24px rgba(15, 30, 60, .08);
  padding: 40px 44px 36px;
  margin-bottom: 36px;
}

.implopt-example-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9A6B0A;
  background: rgba(195, 145, 30, .10);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.implopt-example-title {
  font-size: 22px;
  font-weight: 700;
  color: #171714;
  margin: 0 0 10px;
  line-height: 1.25;
}

.implopt-example-sub {
  font-size: 16px;
  color: #5a6375;
  line-height: 1.55;
  margin: 0 0 32px;
}

/* ── 4-step timeline ── */
.implopt-example-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 32px 0;
  border-top: 1px solid #EDE8DC;
  border-bottom: 1px solid #EDE8DC;
  margin-bottom: 28px;
}

.implopt-example-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-right: 20px;
}

.implopt-example-step:last-child {
  padding-right: 0;
}

/* Step header: circle + connector line */
.implopt-example-step-hd {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.implopt-example-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #005FF9;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Horizontal connector on desktop */
.implopt-example-step-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(to right, #B0C4D8 60%, transparent);
  margin-left: 8px;
}

.implopt-example-step:last-child .implopt-example-step-line {
  display: none;
}

.implopt-example-step-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.implopt-example-step-body strong {
  font-size: 15px;
  font-weight: 700;
  color: #171714;
  line-height: 1.3;
}

.implopt-example-step-body span {
  font-size: 15px;
  color: #5a6375;
  line-height: 1.5;
}

.implopt-example-step:nth-child(3) .implopt-example-step-body span {
  font-style: italic;
  color: #4a5570;
}

/* ── Two comparison cards ── */
.implopt-ex-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 24px;
}

.implopt-ex-card {
  background: #F4F7FB;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.implopt-ex-card-head {
  padding: 18px 22px 0;
}

.implopt-ex-variant-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #005FF9;
  background: rgba(0, 95, 249, .09);
  border-radius: 4px;
  padding: 4px 10px;
}

.implopt-ex-variant-badge--alt {
  color: #009E88;
  background: rgba(0, 158, 136, .10);
}

.implopt-ex-img-wrap {
  padding: 16px 12px 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.implopt-ex-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Slightly reduce metal glare on clasp variant */
.implopt-ex-card:nth-child(2) .implopt-ex-img {
  filter: saturate(0.82) brightness(1.04);
}

.implopt-ex-card-body {
  padding: 16px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.implopt-ex-caption {
  font-size: 15px;
  font-weight: 600;
  color: #1a2540;
  margin: 0;
  line-height: 1.4;
}

.implopt-ex-limit {
  margin: 0;
}

.implopt-ex-limit-badge {
  display: inline-block;
  background: #FFF3CD;
  color: #7A5800;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 4px;
  padding: 4px 10px;
  line-height: 1.35;
}

.implopt-ex-limit--muted {
  font-size: 14px;
  color: #5a6375;
  line-height: 1.5;
}

.implopt-example-footnote {
  font-size: 14px;
  color: #8491aa;
  line-height: 1.6;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid #EDE8DC;
}

/* ── CTA ── */
.implopt-cta {
  background: #0f1e3c;
  border-radius: 20px;
  padding: 44px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.implopt-cta-text { flex: 1; }

.implopt-cta-title {
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
}

.implopt-cta-sub {
  font-size: 15.5px;
  color: rgba(255,255,255,.65);
  margin: 0;
  line-height: 1.55;
}

.implopt-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
}

.implopt-cta-btn {
  padding: 16px 36px;
  background: #005FF9;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
  min-height: 52px;
  white-space: nowrap;
}

.implopt-cta-btn:hover {
  background: #0050d0;
  box-shadow: 0 4px 22px rgba(0, 95, 249, .4);
}

.implopt-cta-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.implopt-cta-disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin: 0;
  line-height: 1.5;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

/* ─ Tablet 1024 ─ */
@media (max-width: 1024px) {
  .implopt-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .implopt-intro-right { max-width: 540px; }
  .implopt-cta { padding: 40px 44px; }
}

/* ─ Tablet 768 ─ */
@media (max-width: 768px) {
  .implant-options { padding: 60px 0 68px; }
  .implopt-header { margin-bottom: 44px; }
  .implopt-cards { grid-template-columns: 1fr; gap: 16px; }

  .implopt-example-inner { padding: 32px 28px 28px; }

  /* 2×2 grid on tablet — hide horizontal connectors */
  .implopt-example-steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }
  .implopt-example-step { padding-right: 0; }
  .implopt-example-step-line { display: none; }

  .implopt-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
  }
  .implopt-cta-btn { width: 100%; text-align: center; }
}

/* ─ Mobile 480 ─ */
@media (max-width: 480px) {
  .implant-options { padding: 52px 0 60px; }
  .implopt-sub { font-size: 16px; }
  .implopt-intro-left p { font-size: 16px; }
  .implopt-example-inner { padding: 28px 20px 24px; }

  /* Vertical sequence with connector line */
  .implopt-example-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .implopt-example-step {
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding-right: 0;
    padding-bottom: 24px;
  }
  .implopt-example-step:last-child { padding-bottom: 0; }

  /* Vertical header: num on top, line below */
  .implopt-example-step-hd {
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    flex-shrink: 0;
  }
  .implopt-example-step-line {
    display: block;
    width: 1.5px;
    flex: 1;
    min-height: 16px;
    background: linear-gradient(to bottom, #B0C4D8 60%, transparent);
    margin: 6px 0 0;
  }
  .implopt-example-step:last-child .implopt-example-step-line {
    display: none;
  }
  .implopt-example-step-body { padding-top: 6px; }
  .implopt-example-step-body strong { font-size: 16px; }
  .implopt-example-step-body span  { font-size: 16px; }

  .implopt-ex-cards { grid-template-columns: 1fr; gap: 14px; }
  .implopt-cta { padding: 28px 20px; }
  .implopt-cta-btn { white-space: normal; }
}

/* ══════════════════════════════════════
   TRUST CLINIC (merged doctors + clinic)
   ══════════════════════════════════════ */
.trust-clinic { padding: 80px 0; background: var(--white); }
.trust-clinic .tc-head { text-align: center; margin-bottom: 48px; }
.trust-clinic .tc-title { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.trust-clinic .tc-sub { font-size: 16px; color: var(--faded); max-width: 600px; margin: 0 auto; }
.tc-doctors { margin-bottom: 64px; }
.tc-clinic-photos { margin: 48px 0; }
.tc-clinic-photos .clinic-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.tc-clinic-photos .clinic-photo img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; display: block; }
.tc-coordinator { text-align: center; padding: 24px; background: var(--surface); border-radius: 12px; margin-top: 32px; }
.tc-coordinator-note { font-size: 15px; color: var(--faded); max-width: 560px; margin: 0 auto; }

/* Closing statement (ЭТАП 05 — вместо CTA-панели) */
.tc-closing {
  max-width: 720px; margin: 40px auto 0; text-align: center;
  padding: 28px 32px; border-radius: 18px;
  background: rgba(77,128,96,.06); border: 1px solid rgba(77,128,96,.18);
}
.tc-closing-title { font-size: clamp(20px, 2.2vw, 26px); font-weight: 800; color: var(--ink); margin: 0 0 10px; letter-spacing: -.02em; }
.tc-closing-desc { font-size: 15px; line-height: 1.6; color: var(--text); margin: 0; }
@media (max-width: 768px) {
  .tc-closing { margin-top: 32px; padding: 22px 20px; }
  .tc-closing-desc { font-size: 14px; }
}

/* ══════════════════════════════════════
   TRIP PLAN
   ══════════════════════════════════════ */

.trip-plan { padding: 80px 0 88px; background: var(--surface); }

/* ── Head ───────────────────────────────── */
.tp-head { max-width: 760px; margin-bottom: 56px; }
.tp-head h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: var(--ink); margin: 12px 0 16px; line-height: 1.25; text-wrap: balance; }
.tp-head-sub { font-size: 16px; line-height: 1.65; color: var(--faded); margin: 0 0 12px; }

/* ── 7 Steps ────────────────────────────── */
.tp-steps { margin-bottom: 64px; }
.tp-steps-title { font-size: 20px; font-weight: 700; color: var(--ink); margin: 0 0 28px; }

.tp-steps-grid {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.tp-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px 24px 0;
  border-top: 2px solid var(--jade);
  position: relative;
}
.tp-step:last-child { padding-right: 0; }

.tp-step-num {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; color: var(--jade);
  line-height: 1;
}
.tp-step-title { font-size: 14px; font-weight: 700; color: var(--ink); margin: 0; line-height: 1.4; }
.tp-step-desc  { font-size: 13px; color: var(--faded); margin: 0; line-height: 1.55; }
.tp-step-accent {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  color: var(--jade);
  background: rgba(77,128,96,.08);
  border-radius: 4px;
  padding: 3px 8px;
  margin-top: 4px;
}

/* ── Scenarios ──────────────────────────── */
.tp-scenarios-block { margin-bottom: 56px; }
.tp-scenarios-head { max-width: 680px; margin-bottom: 28px; }
.tp-scenarios-title { font-size: 20px; font-weight: 700; color: var(--ink); margin: 0 0 10px; line-height: 1.3; text-wrap: balance; }
.tp-scenarios-sub { font-size: 14px; color: var(--faded); line-height: 1.6; margin: 0; }

.tp-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tp-scenario {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tp-scenario-note {
  font-size: 13px; color: var(--faded); margin: 0; font-style: italic; line-height: 1.55;
  margin-top: auto;
  padding: 10px 20px 18px;
  border-top: 1px solid var(--border);
}

/* ── Scenario visual (inline SVG) ──────────── */
:root {
  --tp-single:     #16845b;
  --tp-two-stage:  #3478d4;
  --tp-multi-stage:#8763c6;
  --tp-neutral:    #84909c;
  --tp-line:       #cbd5df;
}
.tp-scenario-head {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 20px 20px 4px;
}
.tp-scenario-head .tp-scenario-title {
  margin: 0; font-size: 15px; font-weight: 700;
  color: var(--ink); line-height: 1.3; text-wrap: balance;
}
.tp-scenario-index {
  flex-shrink: 0; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; color: var(--faded);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 4px; padding: 3px 7px; margin-top: 1px;
}
.tp-scenario-visual {
  display: block; width: 100%;
  padding: 8px 12px; box-sizing: border-box; overflow: hidden;
}
.tp-scenario-visual svg { display: block; width: 100%; height: auto; }
.tp-scenario-summary {
  font-size: 14px; line-height: 1.6; color: var(--faded);
  padding: 4px 20px 6px; margin: 0;
}
.tp-scenario-details { padding: 0 20px 4px; }
.tp-scenario-details ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 3px;
}
.tp-scenario-details li {
  font-size: 13px; color: var(--faded);
  padding-left: 14px; position: relative; line-height: 1.5;
}
.tp-scenario-details li::before {
  content: '—'; position: absolute; left: 0; color: var(--border);
}

/* ── Scenario accent by data-scenario ──────── */
[data-scenario="single-trip"]   { border-top: 3px solid var(--tp-single); }
[data-scenario="two-stage"]      { border-top: 3px solid var(--tp-two-stage); }
[data-scenario="implant-stages"] { border-top: 3px solid var(--tp-multi-stage); }

[data-scenario="single-trip"]   .tp-scenario-index {
  color: var(--tp-single); background: #e8f7f0; border-color: #b3e0cc;
}
[data-scenario="two-stage"]      .tp-scenario-index {
  color: var(--tp-two-stage); background: #eaf1fd; border-color: #b8d3f5;
}
[data-scenario="implant-stages"] .tp-scenario-index {
  color: var(--tp-multi-stage); background: #f3edfb; border-color: #d1b9ef;
}

/* ── Support split ──────────────────────── */
.tp-support-split { margin-bottom: 40px; }
.tp-support-split-title { font-size: 20px; font-weight: 700; color: var(--ink); margin: 0 0 24px; }

.tp-support-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tp-support-col { border-radius: 14px; padding: 24px 24px 26px; }
.tp-support-col--help  { background: #EEF4FF; border: 1px solid #C7D9F8; }
.tp-support-col--link  { background: var(--surface); border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center; }

.tp-support-col-title { font-size: 15px; font-weight: 700; color: var(--ink); margin: 0 0 10px; }
.tp-support-list { margin: 0 0 12px; padding: 0 0 0 18px; display: flex; flex-direction: column; gap: 6px; }
.tp-support-list li { font-size: 14px; color: var(--faded); line-height: 1.5; }
.tp-support-col-note { font-size: 12px; color: var(--faded); margin: 0; line-height: 1.55; font-style: italic; }
.tp-support-col-note--link { font-style: normal; font-size: 14px; line-height: 1.6; color: var(--text); }
.tp-support-link { color: var(--jade); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.tp-support-link:hover { color: var(--jade-dark); }

/* ── CTA ────────────────────────────────── */
.tp-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  background: var(--ink);
  border-radius: 20px;
  padding: 40px 48px;
}
.tp-cta-text { flex: 1; min-width: 0; }
.tp-cta-title { font-size: 22px; font-weight: 700; color: var(--white); margin: 0 0 8px; line-height: 1.3; text-wrap: balance; }
.tp-cta-sub   { font-size: 14px; color: rgba(255,255,255,.68); line-height: 1.6; margin: 0; }
.tp-cta-action {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px; flex-shrink: 0;
}
.tp-cta-btn {
  display: inline-block; padding: 14px 28px;
  background: var(--jade); color: #fff;
  border: none; border-radius: 10px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  white-space: nowrap; transition: opacity .18s; line-height: 1.3;
}
.tp-cta-btn:hover { opacity: .88; }
.tp-cta-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.tp-cta-secondary {
  font-size: 13px; color: rgba(255,255,255,.72);
  text-decoration: underline; text-decoration-color: rgba(255,255,255,.35);
  text-underline-offset: 2px; cursor: pointer; background: none; border: none;
  line-height: 1.45; max-width: 240px; text-align: left; padding: 0;
  transition: color .15s;
}
.tp-cta-secondary:hover { color: #fff; }
.tp-cta-disclaimer { font-size: 11px; color: rgba(255,255,255,.3); margin: 0; line-height: 1.6; max-width: 240px; }

/* ── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .tp-steps-grid { grid-template-columns: repeat(4, 1fr); }
  .tp-scenarios { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .tp-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .tp-step { border-top: 2px solid var(--jade); padding: 20px 16px 20px 0; }
  .tp-scenarios { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .trip-plan { padding: 56px 0 64px; }
  .tp-head { margin-bottom: 40px; }
  .tp-support-cols { grid-template-columns: 1fr; }
  .tp-cta {
    flex-direction: column; align-items: flex-start;
    padding: 32px 28px; gap: 24px;
  }
  .tp-cta-action { align-items: stretch; width: 100%; }
  .tp-cta-btn { text-align: center; }
  .tp-cta-secondary { max-width: 100%; }
  .tp-cta-disclaimer { max-width: 100%; }
}

@media (max-width: 640px) {
  .tp-steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .tp-step {
    border-top: none;
    border-left: 2px solid var(--jade);
    padding: 0 0 24px 20px;
    gap: 6px;
  }
  .tp-step:last-child { padding-bottom: 0; }
  .tp-step-title { font-size: 15px; }
  .tp-step-desc  { font-size: 14px; }
  .tp-scenario-head .tp-scenario-title { font-size: 17px; }
  .tp-scenario-summary { font-size: 15px; }
  .tp-scenario-details li { font-size: 15px; }
  .tp-support-list li { font-size: 15px; }
  .tp-cta { padding: 28px 20px; border-radius: 16px; }
}

@media (max-width: 480px) {
  .tp-head h2 { font-size: 22px; }
  .tp-steps-title, .tp-scenarios-title, .tp-support-split-title { font-size: 18px; }
  .tp-cta-title { font-size: 19px; }
}

@media (max-width: 360px) {
  .tp-cta { padding: 24px 16px; }
}

/* Note in implant options */
.implopt-note {
  font-size: 14px;
  color: var(--faded);
  text-align: center;
  margin: 16px auto;
  max-width: 640px;
  padding: 12px 20px;
  background: var(--surface);
  border-radius: 8px;
  border-left: 3px solid var(--border);
}

@media (max-width: 767px) {
  .trust-clinic { padding: 56px 0; }
  .tc-clinic-photos .clinic-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ─ 360px safety guards ─ */
@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .implopt-diagram { padding: 20px 16px 18px; max-width: 100%; box-sizing: border-box; overflow: hidden; }
  .implopt-intro-right { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════
   BLOCK 15 — FAQ
   ══════════════════════════════════════════════════════ */

.faq-section {
  padding: 80px 0 88px;
  background: var(--white);
}

/* Header */
.faq-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}
.faq-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--ink);
  margin: 12px 0 16px;
  line-height: 1.25;
  text-wrap: balance;
}
.faq-sub {
  font-size: 16px;
  color: var(--faded);
  line-height: 1.6;
  margin: 0 0 10px;
}
.faq-disclaimer {
  font-size: 13px;
  color: var(--faded);
  line-height: 1.55;
  margin: 0;
  opacity: 0.8;
}

/* Grid: 2 columns on desktop */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  margin-bottom: 48px;
}

/* Group */
.faq-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-group-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--jade);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* Accordion item */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  /* keep border-bottom for visual closure */
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-question:hover {
  color: var(--jade);
}
.faq-question:focus-visible {
  outline: 2px solid var(--jade);
  outline-offset: 2px;
  border-radius: 2px;
}

/* +/× icon */
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--jade);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease;
}
.faq-icon::before {
  width: 2px; height: 12px;
  top: 4px; left: 9px;
}
.faq-icon::after {
  width: 12px; height: 2px;
  top: 9px; left: 4px;
}
/* When open: rotate vertical bar to hide it (= × look) */
details[open] > .faq-question .faq-icon::before {
  transform: rotate(90deg);
  opacity: 0;
}

/* Answer */
.faq-answer {
  padding: 0 4px 18px;
  overflow: hidden;
}
.faq-answer p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--faded);
  margin: 0;
}
.faq-answer p + p {
  margin-top: 10px;
}

/* Internal links */
.faq-link {
  color: var(--jade);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.15s;
  font-size: inherit;
}
.faq-link:hover {
  text-decoration-color: var(--jade);
}

/* ── FAQ: tablet 1024 ───────────────────────────────── */
@media (max-width: 1024px) {
  .faq-grid { gap: 28px 32px; }
}

/* ── FAQ: tablet 768 ────────────────────────────────── */
@media (max-width: 768px) {
  .faq-section { padding: 64px 0 72px; }
  .faq-head { margin-bottom: 36px; }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ── FAQ: mobile 480 ────────────────────────────────── */
@media (max-width: 480px) {
  .faq-section { padding: 56px 0 64px; }
  .faq-title { font-size: 24px; }
}

/* ── FAQ: mobile 360 ────────────────────────────────── */
@media (max-width: 360px) {
  .faq-question { font-size: 14px; }
}

/* ═══════════════════════════════════════════════════════
   VISUAL_PHASE_01 — Hero two-column + expert preview
   ═══════════════════════════════════════════════════════ */

/* Hero inner: two-column flex wrapper */
.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
  padding: 60px 0;
}

/* Left column — override existing .hero-content padding/max-width */
.hero-content {
  flex: 0 0 53%;
  max-width: 540px;
  padding: 0;
}

/* Right column */
.hero-right {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: flex;
  align-items: center;
}

/* MAX tertiary links */
.hero-max-link {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s;
  white-space: nowrap;
}
.hero-max-link:hover { color: rgba(255,255,255,0.72); }

.expert-max-link {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--faded);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.expert-max-link:hover { color: var(--ink); }

/* ── Hero expert preview component ── */
.hero-expert-preview {
  width: 100%;
}

.hero-preview-card {
  background: rgba(14,14,12,0.68);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0,0,0,0.4), 0 4px 14px rgba(0,0,0,0.25);
}

.hero-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hero-preview-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.hero-preview-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: var(--jade-light);
}

.hero-preview-dot {
  width: 6px;
  height: 6px;
  background: var(--jade-light);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2.5s infinite;
}

.hero-preview-scan {
  margin: 0;
  position: relative;
  line-height: 0;
}

.hero-preview-scan img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-preview-markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-preview-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-preview-results {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.hero-preview-result {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 7px;
  padding: 10px 10px;
}

.hero-preview-result-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(77,128,96,0.18);
  border-radius: 4px;
}

.hero-preview-result-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero-preview-result-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  line-height: 1.3;
}

.hero-preview-result-value {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* Responsive: single-column stacking at 900px */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    gap: 28px;
    padding: 40px 0 32px;
  }
  .hero-content {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
  .hero-right {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    align-self: auto;
  }
}

@media (max-width: 480px) {
  .hero-inner { padding: 28px 0 24px; }
  .hero-preview-results { flex-direction: column; gap: 6px; }
  .hero-preview-result { align-items: center; }
}

/* Upload form: response time below submit button */
.upload-response-time {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted, #6b7a99);
  text-align: center;
  line-height: 1.4;
}

/* Mobile nav: phone number link */
.mobile-nav-phone {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.75) !important;
  letter-spacing: 0.01em;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 12px;
  margin-top: -8px;
}
.mobile-nav-phone:hover { color: #fff !important; }

/* Final form: response time below submit button */
.ff-response-time {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted, #6b7a99);
  text-align: center;
  line-height: 1.4;
}

/* ── Section bridge note (educational sections → case-selector) ── */
.section-bridge-note {
  margin: 32px auto 0;
  max-width: 560px;
  text-align: center;
  font-size: 15px;
  color: var(--muted, #6b7a99);
  font-style: italic;
  line-height: 1.5;
  padding: 14px 20px;
  border-top: 1px solid var(--border, rgba(0,0,0,.07));
}

/* ── Upload success: what happens next steps ── */
.upload-success-next {
  margin: 20px 0 16px;
  background: #F5F9FF;
  border: 1px solid #DDE8F8;
  border-radius: 10px;
  padding: 16px 18px;
  text-align: left;
}
.upload-success-next-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B7A99;
  margin-bottom: 12px;
}
.upload-success-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.upload-success-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.upload-success-steps li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.upload-success-steps li strong {
  font-size: 13px;
  font-weight: 700;
  color: #1a2e4a;
  line-height: 1.3;
}
.upload-success-steps li span {
  font-size: 12px;
  color: #6B7A99;
  line-height: 1.4;
}
.uss-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CFDCE8;
  border: 2px solid #CFDCE8;
  margin-top: 3px;
}
.uss-dot--done {
  background: #00B87A;
  border-color: #00B87A;
}

/* ── Trip-plan: distances mini-map ── */
.tp-distances {
  margin: 36px 0 40px;
}
.tp-distances-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink, #1a2e4a);
  margin-bottom: 16px;
}
.tp-map-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  max-width: 580px;
}
.tp-map-svg {
  display: block;
  width: 100%;
  min-width: 300px;
  height: auto;
}
.tp-map-note {
  font-size: 11px;
  color: var(--muted, #6b7a99);
  margin-top: 10px;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .tp-distances-title { font-size: 16px; }
  .tp-map-wrap { border-radius: 10px; }
}

/* ── FAQ: distances list inside answer ── */
.faq-distances {
  margin: 4px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-distance-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 6px 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.faq-distance-row:last-child { border-bottom: none; }
.faq-distance-row dt {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink, #1a2e4a);
  padding-top: 1px;
}
.faq-distance-row dd {
  font-size: 13px;
  color: var(--muted, #455570);
  line-height: 1.5;
  margin: 0;
}
.faq-distances-note {
  font-size: 12px;
  color: var(--muted, #6b7a99);
  margin: 6px 0 0;
  font-style: italic;
}

@media (max-width: 480px) {
  .faq-distance-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .faq-distance-row dt { color: var(--ink, #1a2e4a); }
}
