/* ── RESET & BASE ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:  #0f0f0f;
  --dark:   #1a1a1a;
  --teal:   #2C6E6A;
  --teal-m: #4A9E9A;
  --teal-l: #EAF2F1;
  --grey:   #6b6b6b;
  --lgrey:  #f5f5f5;
  --white:  #ffffff;
  --border: #e0e0e0;
  --mono:   'Courier Prime', 'Courier New', monospace;
  --sans:   'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────────── */
.mono { font-family: var(--mono); }
.teal  { color: var(--teal); }
.grey  { color: var(--grey); }

h1,h2,h3,h4 { font-family: var(--mono); font-weight: 700; }

.label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ── LAYOUT UTILS ────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 40px; }

section { padding: 120px 0; }
section:nth-child(even) { background: var(--lgrey); }

.section-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 64px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.section-head .num {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--teal);
  letter-spacing: 0.12em;
}
.section-head h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
}

/* ── NAV ──────────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.1;
}
.nav-logo .the { display: block; font-size: 0.62rem; color: var(--grey); font-weight: 400; }
.nav-logo .brand { display: block; font-size: 0.88rem; font-weight: 700; }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--teal); }
.nav-book {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 10px 24px;
  background: var(--teal);
  color: var(--white);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-book:hover { background: var(--dark); }

/* ── MOBILE HAMBURGER ────────────────────────────────────────────────────── */
.ham {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  z-index: 110;
}
.ham span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--dark);
  margin: 5px 0;
  transition: all 0.25s;
}
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.nav-drawer.open { display: block; }
.nav-drawer ul { list-style: none; padding: 8px 0; }
.nav-drawer ul li a {
  display: block;
  padding: 16px 24px;
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  min-height: 44px;
}
.nav-drawer ul li:last-child a { border-bottom: none; }
.nav-drawer ul li a:active { background: var(--lgrey); }
.nav-drawer .drawer-book {
  display: block;
  margin: 16px 24px 20px;
  padding: 14px 24px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
}

/* ── HERO (Homepage) ─────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  min-height: calc(var(--real-vh, 1vh) * 100);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  min-height: 100vh;
  min-height: calc(var(--real-vh, 1vh) * 100);
}
.hero-tagline {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 40px;
}
.hero-logo { margin-bottom: 48px; }
.hero-logo .the {
  font-family: var(--mono);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--grey);
  font-weight: 400;
  display: block;
  letter-spacing: 0.05em;
}
.hero-logo .main {
  font-family: var(--mono);
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: var(--dark);
  font-weight: 700;
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 480px;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat .num {
  font-family: var(--mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
}
.hero-stat .lbl {
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.05em;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-card {
  background: var(--lgrey);
  padding: 32px;
  border-left: 3px solid var(--teal);
}
.hero-card h3 {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ── PAGE HERO (inner pages) ──────────────────────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  margin-top: 64px; /* nav height */
}
.page-hero .label { margin-bottom: 24px; }
.page-hero h1 {
  font-family: var(--mono);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 24px;
}
.page-hero-sub {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 32px;
}
.breadcrumb {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--grey);
}
.breadcrumb a {
  color: var(--teal);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn-primary {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--dark); }
.btn-outline {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  border: 1px solid var(--dark);
  color: var(--dark);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-white {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 16px 40px;
  background: var(--white);
  color: var(--teal);
  text-decoration: none;
  transition: background 0.2s;
  font-weight: 700;
  display: inline-block;
}
.btn-white:hover { background: var(--dark); color: var(--white); }
.btn-white-outline {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 16px 40px;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); }

/* ── TRUST STRIP ──────────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--teal-l);
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.trust-item .t-num {
  font-family: var(--mono);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
  margin-bottom: 8px;
}
.trust-item .t-label {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.4;
}

/* ── MANIFESTO ────────────────────────────────────────────────────────────── */
.manifesto-section,
#manifesto {
  background: var(--dark) !important;
  padding: 140px 0;
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.manifesto-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--teal-m);
  text-transform: uppercase;
  margin-bottom: 48px;
}
.manifesto-q {
  font-family: var(--mono);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 48px;
}
.manifesto-q em { color: var(--teal-m); font-style: normal; }
.manifesto-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 660px;
  margin: 0 auto 48px;
}
.manifesto-tag {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--teal-m);
  letter-spacing: 0.05em;
  font-style: italic;
}

/* ── WHY / DIFFERENTIATORS ────────────────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.diff-card {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
}
section:nth-child(even) .diff-card { background: var(--white); }
.diff-card::before {
  content: attr(data-n);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--teal);
  display: block;
  margin-bottom: 24px;
}
.diff-card h3 {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.diff-card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.65;
}
.diff-highlight { background: var(--teal) !important; }
.diff-highlight h3, .diff-highlight p, .diff-highlight::before { color: var(--white) !important; }
.diff-highlight p { color: rgba(255,255,255,0.75) !important; }

/* ── PROCESS ──────────────────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 10%; right: 10%;
  height: 1px;
  background: var(--teal);
  z-index: 0;
}
.process-step {
  padding: 0 32px 48px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-step .circle {
  width: 40px; height: 40px;
  border: 2px solid var(--teal);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px auto 32px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
}
section:nth-child(even) .process-step .circle { background: var(--lgrey); }
.bg-dark .process-step .circle { background: var(--dark); }
.process-step h3 {
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.process-step p {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.6;
}
.process-step-text { flex: 1; }
.process-step-text h3 { margin-bottom: 12px; }
@media (min-width: 769px) {
  .process-step { display: block; text-align: center; }
  .process-step .circle { margin: 32px auto 32px; }
  .process-step-text { display: contents; }
}

/* ── TREATMENTS GRID (homepage) ───────────────────────────────────────────── */
.treatments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.treatment-card {
  background: var(--white);
  padding: 56px 48px;
}
.treatment-card:first-child { background: var(--teal); }
.treatment-card:first-child .treatment-cat,
.treatment-card:first-child h3,
.treatment-card:first-child p,
.treatment-card:first-child .treatment-list li { color: var(--white); }
.treatment-card:first-child .treatment-list li::before { background: rgba(255,255,255,0.4); }
.treatment-cat {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.treatment-card h3 {
  font-family: var(--mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.treatment-card p {
  font-size: 0.87rem;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 28px;
}
.treatment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.treatment-list li {
  font-size: 0.82rem;
  color: var(--dark);
  padding-left: 20px;
  position: relative;
}
.treatment-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--teal);
}
.treatment-price {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--teal);
  font-weight: 700;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.treatment-card:first-child .treatment-price {
  color: rgba(255,255,255,0.9);
  border-top-color: rgba(255,255,255,0.2);
}

/* ── TREATMENT FULL (treatments page) ────────────────────────────────────── */
.treatment-full {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.tf-body {}
.tf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.tf-item {
  background: var(--lgrey);
  border: 1px solid var(--border);
  padding: 28px 24px;
}
.tf-item h3 {
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.tf-item p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 16px;
}
.tf-price {
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
}
.tf-price span {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--grey);
}
.tf-intro {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 640px;
}
.tf-stats-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 40px;
}
.tf-stat {
  flex: 1;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.tf-stat:last-child { border-right: none; }
.tf-stat span {
  display: block;
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
}
.tf-stat small {
  font-size: 0.72rem;
  color: var(--grey);
  letter-spacing: 0.05em;
}
.tf-subhead {
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-top: 8px;
}
.tf-pricing-strip {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.tf-p-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 6px;
}
.tf-p-val {
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
}
.tf-p-val em { font-family: var(--sans); font-size: 0.8rem; font-weight: 400; color: var(--grey); font-style: normal; }

.tf-sidebar {}
.tf-sidebar-card {
  background: var(--lgrey);
  border: 1px solid var(--border);
  padding: 32px;
  margin-bottom: 0;
}
.tf-sidebar-card h4 {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tf-sidebar-card p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.65;
}
.teal-card {
  background: var(--teal) !important;
  border-color: var(--teal) !important;
}
.teal-card h4 { color: rgba(255,255,255,0.7) !important; }
.teal-card p { color: rgba(255,255,255,0.8) !important; }

/* ── BEFORE/AFTER SPLIT PHOTO ────────────────────────────────────────────── */
/* Each case uses a single clinical photo that already shows before (top) and  */
/* after (bottom) - or reversed for case06. Labels overlay on each half.      */
.ba-photo-wrap {
  position: relative;
  overflow: hidden;
  background: var(--lgrey);
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.ba-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.ba-split-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.ba-split-half {
  flex: 1;
  display: flex;
  padding: 10px 12px;
}
.ba-top-label  { align-items: flex-start; }
.ba-bot-label  { align-items: flex-end; }
.ba-split-line {
  height: 1.5px;
  background: rgba(255,255,255,0.6);
  flex-shrink: 0;
}
.ba-sl-chip {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.52);
  padding: 3px 10px;
  backdrop-filter: blur(2px);
}

/* ── RESULTS PREVIEW (homepage) ───────────────────────────────────────────── */
.results-preview { }
.results-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.rp-case { }
.rp-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
  margin-top: 4px;
}
.rp-tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
}
.rp-period {
  font-size: 0.75rem;
  color: var(--grey);
}
.rp-desc {
  font-size: 0.82rem;
  color: var(--grey);
}
.results-cta-row {
  text-align: center;
  padding-top: 8px;
}

/* ── BEFORE & AFTER (results page) ───────────────────────────────────────── */
.results-filter {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.rfilt {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 12px 24px;
  cursor: pointer;
  color: var(--grey);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  min-height: 44px;
  white-space: nowrap;
}
.rfilt.active { color: var(--teal); border-bottom-color: var(--teal); }
.rfilt:hover { color: var(--dark); }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.ba-case.hidden { display: none; }
.ba-case { }
.ba-comparison {
  margin-bottom: 20px;
}
.ba-slider-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--lgrey);
  border: 1px solid var(--border);
  user-select: none;
  cursor: col-resize;
}
.ba-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: clip-path 0.05s linear;
}
.ba-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-after  { clip-path: inset(0 0 0 50%); }
.ba-placeholder {
  display: none;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: var(--lgrey);
  text-align: center;
  padding: 20px;
}
.ba-placeholder-before { background: #f0eeec; }
.ba-placeholder-after  { background: #eaf2f1; }
.ba-ph-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.ba-placeholder span {
  font-size: 0.75rem;
  color: var(--grey);
  line-height: 1.5;
}
.ba-placeholder em {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--teal);
  font-style: normal;
}
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  z-index: 10;
  transform: translateX(-50%);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  background: var(--white);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle span {
  font-size: 0.55rem;
  color: var(--teal);
  letter-spacing: -2px;
}
.ba-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.ba-l-before, .ba-l-after {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}
.ba-info {}
.ba-tags {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.ba-tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  background: var(--teal-l);
  color: var(--teal);
  text-transform: uppercase;
}
.ba-tag-combo { background: #f0f4ff; color: #3a5bd9; }
.ba-tag-meso  { background: #fff8e6; color: #b07d1a; }
.ba-tag-programme { background: var(--dark); color: var(--white); }
.ba-period {
  font-size: 0.78rem;
  color: var(--grey);
  margin-left: auto;
}
.ba-title {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.ba-desc {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 16px;
}
.ba-metrics {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.ba-m { text-align: center; }
.ba-m span {
  display: block;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.ba-m small {
  font-size: 0.68rem;
  color: var(--grey);
  letter-spacing: 0.05em;
}
.results-disclaimer {
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--lgrey);
  border-left: 3px solid var(--border);
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ── PRICING ──────────────────────────────────────────────────────────────── */
.pricing-intro { max-width: 640px; margin-bottom: 64px; }
.pricing-intro p { font-size: 1rem; color: var(--grey); line-height: 1.7; }

.pricing-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.ptab {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  cursor: pointer;
  color: var(--grey);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.ptab.active { color: var(--teal); border-bottom-color: var(--teal); }
.ptab:hover { color: var(--dark); }

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.price-table { width: 100%; border-collapse: collapse; }
.price-table th {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  text-align: left;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--border);
}
.price-table th:last-child { text-align: right; }
.price-table td {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  vertical-align: top;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table .t-name { font-weight: 500; color: var(--dark); padding-right: 24px; }
.price-table .t-desc { font-size: 0.78rem; color: var(--grey); margin-top: 4px; }
.price-table .t-price {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--teal);
  text-align: right;
  white-space: nowrap;
}
.price-table .t-pack {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--grey);
  text-align: right;
  margin-top: 4px;
}
.badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
}
.badge-teal { background: var(--teal-l); color: var(--teal); }
.badge-pop  { background: var(--teal); color: var(--white); }

.pricing-note {
  margin-top: 32px;
  padding: 24px 32px;
  background: var(--teal-l);
  border-left: 3px solid var(--teal);
  font-size: 0.85rem;
  color: var(--dark);
  line-height: 1.6;
}

/* ── FOUNDER / ABOUT ──────────────────────────────────────────────────────── */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.founder-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--lgrey);
  border: 1px solid var(--border);
  overflow: hidden;
}
.founder-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.founder-placeholder {
  display: none;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: var(--lgrey);
  text-align: center;
  padding: 32px;
}
.founder-placeholder span {
  font-size: 0.75rem;
  color: var(--grey);
  line-height: 1.5;
}
.founder-placeholder em {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--teal);
  font-style: normal;
}
/* legacy placeholder */
.founder-img-placeholder {
  aspect-ratio: 4/5;
  background: var(--lgrey);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.founder-img-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--teal);
}
.founder-img-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--grey);
  text-align: center;
}
.founder-quote {
  margin-top: 24px;
  padding: 24px;
  border-left: 3px solid var(--teal);
  background: var(--lgrey);
}
.founder-quote p {
  font-family: var(--mono);
  font-size: 0.88rem;
  color: var(--dark);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 8px;
}
.founder-quote cite {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--teal);
  font-style: normal;
}
.founder-name {
  font-family: var(--mono);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.founder-title {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
.founder-body {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 32px;
}
.founder-section-head {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  margin-top: 40px;
}
.founder-creds {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cred {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.cred-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  margin-top: 8px;
  flex-shrink: 0;
}
.cred-text { font-size: 0.85rem; color: var(--dark); line-height: 1.5; }
.cred-text span { color: var(--grey); font-size: 0.78rem; }

/* Philosophy */
.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.phil-block {
  background: var(--white);
  padding: 48px 40px;
}
section:nth-child(even) .phil-block { background: var(--white); }
.phil-block h3 {
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.phil-block p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ── TELECONSULT ──────────────────────────────────────────────────────────── */
.bg-dark, #tc-services {
  background: var(--dark) !important;
}
.bg-dark .section-head h2 { color: var(--white); }
.bg-dark .section-head { border-bottom-color: rgba(255,255,255,0.1); }
.bg-dark .process-step h3 { color: var(--white); }
.bg-dark .process-step p { color: rgba(255,255,255,0.5); }
.bg-dark .process-steps::before { background: var(--teal-m); }

.tc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.tc-left .label { color: var(--teal-m); margin-bottom: 24px; }
.tc-left h2 {
  font-family: var(--mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.tc-left p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 40px;
}
.tc-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tc-feat { display: flex; gap: 16px; align-items: flex-start; }
.tc-feat-dot {
  width: 20px; height: 20px;
  background: var(--teal);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.tc-feat-dot span {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--white);
  font-weight: 700;
}
.tc-feat p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}
.tc-feat strong { color: var(--white); font-weight: 500; }
.tc-card {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 48px 40px;
  margin-bottom: 16px;
}
.tc-card h3 {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--teal-m);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tc-card .tc-price {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.tc-card .tc-period {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.tc-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
}
.tc-card-featured {
  background: var(--teal);
  border-color: var(--teal);
}
.tc-card-featured h3 { color: rgba(255,255,255,0.7); }
.tc-card-featured p { color: rgba(255,255,255,0.75); }

/* Brazil section */
.brazil-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ── LOCATION / CONTACT ───────────────────────────────────────────────────── */
.contact-book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.contact-book-card {
  background: var(--white);
  padding: 48px 40px;
}
section:nth-child(even) .contact-book-card { background: var(--white); }
.contact-book-primary { background: var(--teal) !important; }
.contact-book-primary .label { color: rgba(255,255,255,0.6); }
.contact-book-primary h3 { color: var(--white); }
.contact-book-primary p { color: rgba(255,255,255,0.7); }
.contact-book-primary .contact-price { color: var(--white); border-top-color: rgba(255,255,255,0.2); }
.contact-book-card .label { margin-bottom: 16px; }
.contact-book-card h3 {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.contact-book-card p {
  font-size: 0.87rem;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 20px;
}
.contact-price {
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
  display: block;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.location-left p {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 32px;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.loc-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.loc-item:last-child { border-bottom: none; }
.loc-key {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  width: 120px;
  flex-shrink: 0;
  padding-top: 2px;
}
.loc-val { font-size: 0.88rem; color: var(--dark); line-height: 1.5; }
.location-right {
  background: var(--lgrey);
  border: 1px solid var(--border);
  padding: 48px;
}
.location-right h3 {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.87rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--grey); }
.hours-list .hrs { font-family: var(--mono); color: var(--dark); }
.hours-list .hrs.scalp { color: var(--teal); font-weight: 700; }
.hours-list .hrs.closed { color: var(--grey); }
.hours-teleconsult {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hours-teleconsult .label { margin-bottom: 10px; }
.hours-teleconsult p { font-size: 0.82rem; color: var(--grey); line-height: 1.6; }

/* Map placeholder */
.map-placeholder {
  height: 320px;
  background: var(--lgrey);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-ph-inner { text-align: center; }
.map-ph-label {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.map-ph-sub {
  font-size: 0.78rem;
  color: var(--grey);
}

/* ── CTA SECTION ──────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--teal) !important;
  padding: 120px 0;
}
.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.cta-inner .label { color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.cta-inner h2 {
  font-family: var(--mono);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--mono);
  margin-bottom: 20px;
}
.footer-logo .the { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.footer-logo .main { display: block; font-size: 1.5rem; font-weight: 700; color: var(--white); }
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-sub {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.footer-motto {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--teal-m);
  letter-spacing: 0.05em;
  font-style: italic;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-m);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col .f-addr {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}
.footer-tagline-bottom {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--teal-m);
  letter-spacing: 0.05em;
  font-style: italic;
}

/* ── WHATSAPP ─────────────────────────────────────────────────────────────── */
/* Floating bubble */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 12px 20px 12px 14px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: background 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.wa-float-icon { font-size: 1.1rem; line-height: 1; }
.wa-float-label { line-height: 1.2; }
.wa-float-label strong { display: block; font-size: 0.75rem; }
.wa-float-label span   { font-size: 0.62rem; color: rgba(255,255,255,0.75); }

/* WhatsApp strip on contact page */
.wa-strip {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  margin-bottom: 40px;
}
.wa-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  flex-wrap: wrap;
}
.wa-strip-text { display: flex; align-items: center; gap: 16px; }
.wa-icon { font-size: 1.8rem; flex-shrink: 0; }
.wa-headline {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.wa-sub { font-size: 0.82rem; color: var(--grey); }
.btn-wa {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 12px 24px;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}
.btn-wa:hover { background: #1ebe5d; }

@media (max-width: 768px) {
  .wa-float { bottom: 20px; right: 16px; padding: 10px 16px 10px 12px; }
  .wa-float-label span { display: none; }
  .wa-strip-inner { padding: 20px; flex-direction: column; align-items: flex-start; }
  .btn-wa { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .wa-float-label strong { display: none; }
  .wa-float { padding: 10px 12px; }
}

/* ── SCROLL REVEAL ────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE - TABLET (≤1024px) ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-top: 80px; }
  .hero-right { display: none; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .treatments-grid { grid-template-columns: 1fr; }
  .treatment-card { padding: 40px 36px; }
  .treatment-full { grid-template-columns: 1fr; gap: 40px; }
  .tf-grid { grid-template-columns: 1fr; }
  .tf-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-img-placeholder { max-height: 300px; max-width: 360px; }
  .founder-img-wrap { max-height: 360px; }
  .tc-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 40px; }
  .location-grid { grid-template-columns: 1fr; gap: 48px; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .contact-book-grid { grid-template-columns: 1fr; }
  .phil-grid { grid-template-columns: 1fr; }
  .brazil-grid { grid-template-columns: 1fr; gap: 40px; }
  .results-preview-grid { grid-template-columns: 1fr 1fr; }
}

/* ── RESPONSIVE - MOBILE (≤768px) ────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .container--narrow { padding: 0 20px; }
  .section-head { margin-bottom: 40px; }

  /* Nav */
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none !important; }
  .nav-book  { display: none; }
  .ham       { display: block; }

  /* Page hero */
  .page-hero { padding: 100px 0 56px; }
  .page-hero .container { padding: 0 20px; }
  .page-hero h1 { font-size: clamp(1.8rem, 7.5vw, 2.8rem); }
  .page-hero-sub { font-size: 0.92rem; }

  /* Hero */
  .hero-inner {
    padding: 0 20px;
    padding-top: 80px;
    padding-bottom: 48px;
    min-height: 100svh;
    align-items: flex-start;
  }
  .hero-tagline { font-size: 0.65rem; letter-spacing: 0.12em; margin-bottom: 28px; }
  .hero-logo { margin-bottom: 32px; }
  .hero-logo .the { font-size: 1rem; }
  .hero-desc { font-size: 0.95rem; margin-bottom: 32px; }
  .hero-ctas { flex-direction: column; margin-bottom: 40px; }
  .btn-primary, .btn-outline {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 0.8rem;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    padding-top: 32px;
  }
  .hero-stat .num { font-size: 1.5rem; }

  /* Manifesto */
  .manifesto-section, #manifesto { padding: 80px 0 !important; }
  .manifesto-inner { padding: 0 20px !important; }
  .manifesto-q { font-size: clamp(1.8rem, 7.5vw, 2.6rem); margin-bottom: 32px; }
  .manifesto-body { font-size: 0.9rem; margin-bottom: 32px; }
  .manifesto-label { margin-bottom: 28px; }

  /* Why / Differentiators */
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card { padding: 36px 28px; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 0; }
  .process-step { padding: 0 0 40px; text-align: left; display: flex; gap: 20px; }
  .process-step .circle { margin: 0; flex-shrink: 0; width: 36px; height: 36px; font-size: 0.65rem; }
  .process-step-text { flex: 1; padding-top: 6px; display: block !important; }

  /* Treatments */
  .treatment-card { padding: 32px 24px; }
  .treatment-full { grid-template-columns: 1fr; }
  .tf-sidebar { display: flex; flex-direction: column; }
  .tf-stats-row { flex-wrap: wrap; }
  .tf-stat { flex: 1 0 50%; }

  /* Pricing */
  .pricing-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 32px;
  }
  .pricing-tabs::-webkit-scrollbar { display: none; }
  .ptab {
    white-space: nowrap;
    padding: 14px 20px;
    font-size: 0.68rem;
    min-height: 44px;
  }
  .price-table thead { display: none; }
  .price-table tr { display: block; padding: 20px 0; border-bottom: 1px solid var(--border); }
  .price-table tr:last-child { border-bottom: none; }
  .price-table td { display: block; padding: 0; border-bottom: none; }
  .price-table .t-name { padding-right: 0; margin-bottom: 8px; font-size: 0.9rem; }
  .price-table .t-desc { font-size: 0.78rem; margin-bottom: 12px; }
  .price-table .t-price { text-align: left; font-size: 1rem; }
  .price-table .t-pack  { text-align: left; }
  .pricing-note { padding: 20px; font-size: 0.82rem; }

  /* Results filter */
  .results-filter {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }
  .results-filter::-webkit-scrollbar { display: none; }
  .rfilt { white-space: nowrap; font-size: 0.68rem; padding: 12px 16px; }

  /* Before/after */
  .ba-grid { grid-template-columns: 1fr; }
  .ba-metrics { gap: 16px; }

  /* Founder */
  .founder-img-placeholder { max-height: 220px; max-width: 100%; aspect-ratio: 16/7; }
  .founder-img-wrap { aspect-ratio: 4/3; max-height: 280px; }
  .founder-name { font-size: 1.8rem; }

  /* Teleconsult */
  .tc-inner { padding: 0 20px !important; gap: 40px; }
  .tc-card { padding: 28px 24px; }
  .tc-card .tc-price { font-size: 1.6rem; }
  .tc-left h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }

  /* Trust strip */
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 28px; padding: 0 20px; }
  .trust-item .t-num { font-size: 1.8rem; }

  /* Contact/Location */
  .loc-key { width: 90px; }
  .location-right { padding: 28px 20px; }
  .contact-book-card { padding: 32px 24px; }
  .contact-book-grid { background: none; border: none; gap: 16px; }
  .contact-book-card { border: 1px solid var(--border); }

  /* CTA */
  .cta-section { padding: 80px 0 !important; }
  .cta-inner { padding: 0 20px !important; }
  .cta-inner h2 { font-size: clamp(1.8rem, 7.5vw, 2.8rem); }
  .cta-inner p { font-size: 0.9rem; margin-bottom: 36px; }
  .cta-btns { flex-direction: column; }
  .btn-white, .btn-white-outline {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 0.8rem;
  }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-inner { padding: 0 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Results preview */
  .results-preview-grid { grid-template-columns: 1fr; }
  .brazil-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── LANGUAGE TOGGLE ─────────────────────────────────────────────────────── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 8px;
}
.lang-btn {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  padding: 3px 7px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}
.lang-btn:hover { color: var(--teal); }
.lang-btn.lang-active {
  color: var(--teal);
  font-weight: 700;
  background: var(--teal-l);
}
.lang-sep {
  color: var(--border);
  font-size: 0.7rem;
  pointer-events: none;
  user-select: none;
}

/* ── RESPONSIVE - SMALL PHONES (≤480px) ──────────────────────────────────── */
@media (max-width: 480px) {
  .trust-inner { grid-template-columns: 1fr; gap: 24px; }
  .trust-item .t-num { font-size: 2rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .diff-card { padding: 28px 20px; }
  .process-step { gap: 16px; }
  .treatment-card { padding: 28px 20px; }
  .footer-top { gap: 28px; }
  .section-head h2 { font-size: 1.3rem; }
  .ba-slider-wrap { aspect-ratio: 1/1; }
  .tf-stat { flex: 1 0 100%; }
  .contact-book-card { padding: 28px 20px; }
  .phil-block { padding: 32px 24px; }
}
