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

:root {
  /* Paleta extraída da logotipo CCI */
  --c-bg:          #FFFFFF;
  --c-surface:     #F3F5FB;
  --c-surface-2:   #E9ECF6;
  --c-border:      #E0E3EF;

  --c-brand:       #373991;  /* indigo — cor principal da logo */
  --c-brand-deep:  #2A2B6E;  /* indigo escuro — blocos de destaque */
  --c-brand-light: #499AD3;  /* azul-céu — acento secundário */
  --c-red:         #E7333A;  /* vermelho — acento do anel da logo */

  --c-ink:         #1C1D3A;  /* texto principal */
  --c-muted:       #6E7088;  /* texto de apoio */

  --f-display: 'Cormorant Garamond', serif;
  --f-body:    'DM Sans', sans-serif;

  --container: 1280px;
  --header-h: 84px;
}

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}

body {
  font-family: var(--f-body);
  font-weight: 300;
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===================== TYPOGRAPHY HELPERS ===================== */
.section-number {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--c-brand-light);
  margin-bottom: 48px;
}

.section-number::after {
  content: ' /';
  color: var(--c-red);
  font-weight: 700;
}

.section-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  color: var(--c-ink);
  margin-bottom: 24px;
}

.section-subtitle {
  font-family: var(--f-body);
  color: var(--c-muted);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 80px;
}

/* ===================== SCROLL ANIMATIONS ===================== */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children of certain lists */
.values-grid .value-card[data-animate]:nth-child(1) { transition-delay: 0.05s; }
.values-grid .value-card[data-animate]:nth-child(2) { transition-delay: 0.15s; }
.values-grid .value-card[data-animate]:nth-child(3) { transition-delay: 0.25s; }
.values-grid .value-card[data-animate]:nth-child(4) { transition-delay: 0.35s; }
.values-grid .value-card[data-animate]:nth-child(5) { transition-delay: 0.45s; }

.pillars-list .pillar[data-animate]:nth-child(1) { transition-delay: 0.05s; }
.pillars-list .pillar[data-animate]:nth-child(2) { transition-delay: 0.12s; }
.pillars-list .pillar[data-animate]:nth-child(3) { transition-delay: 0.19s; }
.pillars-list .pillar[data-animate]:nth-child(4) { transition-delay: 0.26s; }
.pillars-list .pillar[data-animate]:nth-child(5) { transition-delay: 0.33s; }
.pillars-list .pillar[data-animate]:nth-child(6) { transition-delay: 0.40s; }

.team-grid .doctor[data-animate]:nth-child(1) { transition-delay: 0.05s; }
.team-grid .doctor[data-animate]:nth-child(2) { transition-delay: 0.15s; }
.team-grid .doctor[data-animate]:nth-child(3) { transition-delay: 0.25s; }
.team-grid .doctor[data-animate]:nth-child(4) { transition-delay: 0.35s; }

/* ===================== NAVBAR ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 100;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 8px 32px rgba(28, 29, 58, 0.06);
}

.nav-inner {
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logotipo CCI no lugar do antigo wordmark de texto */
.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-ink);
  position: relative;
  transition: letter-spacing 0.4s ease, color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--c-brand);
  transition: width 0.4s ease;
}

.nav-links a:hover {
  color: var(--c-brand);
  letter-spacing: 0.22em;
}

.nav-links a:hover::after { width: 100%; }

/* hamburger */
.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-brand);
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 90;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.mobile-menu a {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.06em;
  color: var(--c-ink);
}

.mobile-menu a:hover { color: var(--c-brand); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 80px) 0 120px;
  background:
    radial-gradient(ellipse at 80% 14%, rgba(73, 154, 211, 0.22) 0%, transparent 52%),
    radial-gradient(ellipse at 97% 72%, rgba(231, 51, 58, 0.10) 0%, transparent 46%),
    radial-gradient(ellipse at 10% 90%, rgba(55, 57, 145, 0.10) 0%, transparent 50%),
    var(--c-bg);
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, var(--c-border) 1px, transparent 1px),
    linear-gradient(to right, var(--c-border) 1px, transparent 1px);
  background-size: 100% 96px, 96px 100%;
  opacity: 0.7;
  mask-image: radial-gradient(ellipse at 30% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 40%, #000 0%, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.02;
  color: var(--c-ink);
  margin-bottom: 40px;
  max-width: 14ch;
}

.hero-title span {
  display: block;
}

.hero-title .italic {
  font-style: italic;
  color: var(--c-brand);
  padding-left: 12vw;
}

.hero-subtitle {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--c-muted);
  max-width: 480px;
  margin-bottom: 64px;
}

.hero-ctas {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 36px;
  transition: background 0.4s ease, color 0.4s ease, letter-spacing 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}

.btn-primary {
  border: 1px solid var(--c-brand);
  color: var(--c-brand);
  background: transparent;
}

.btn-primary:hover {
  background: var(--c-brand);
  color: #fff;
  letter-spacing: 0.28em;
  box-shadow: 0 12px 32px rgba(55, 57, 145, 0.25);
}

.btn-light {
  background: #fff;
  color: var(--c-brand);
  border: 1px solid #fff;
}

.btn-light:hover {
  background: var(--c-brand-light);
  border-color: var(--c-brand-light);
  color: #fff;
  letter-spacing: 0.28em;
  box-shadow: 0 0 32px rgba(73, 154, 211, 0.45);
}

.btn-arrow {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: gap 0.4s ease, color 0.3s ease;
}

.btn-arrow span {
  transition: transform 0.4s ease;
}

.btn-arrow:hover {
  color: var(--c-brand);
  gap: 20px;
}

.btn-arrow:hover span { transform: translateX(6px); }

/* ITI badge */
.iti-badge {
  position: absolute;
  bottom: 56px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
  z-index: 3;
}

.iti-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-brand-light);
  box-shadow: 0 0 0 0 rgba(73, 154, 211, 0.6);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(73, 154, 211, 0.6); }
  70%  { box-shadow: 0 0 0 14px rgba(73, 154, 211, 0); }
  100% { box-shadow: 0 0 0 0 rgba(73, 154, 211, 0); }
}

/* ===================== NUMBERS ===================== */
.numbers {
  padding: 160px 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.num-cell {
  padding: 24px 48px;
  position: relative;
  text-align: left;
}

.num-cell + .num-cell {
  border-left: 1px solid rgba(55, 57, 145, 0.18);
}

.num {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1;
  color: var(--c-brand);
  margin-bottom: 24px;
}

.num-cell:nth-child(2) .num { color: var(--c-brand-light); }

.num-text {
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: 0.04em;
}

.num-label {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ===================== PMV ===================== */
.pmv {
  padding: 160px 0;
}

.pmv-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.pmv-tabs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-left: 1px solid var(--c-border);
  padding-left: 32px;
}

.pmv-tab {
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
  text-align: left;
  padding: 4px 0;
  position: relative;
  transition: color 0.4s ease, padding 0.4s ease;
}

.pmv-tab::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--c-brand);
  transform: translateY(-50%);
  transition: width 0.4s ease;
}

.pmv-tab.is-active,
.pmv-tab:hover {
  color: var(--c-brand);
  padding-left: 24px;
}

.pmv-tab.is-active::before,
.pmv-tab:hover::before {
  width: 48px;
}

.pmv-content {
  position: relative;
  min-height: 260px;
  background: linear-gradient(135deg, var(--c-surface) 0%, #fff 72%);
  border-left: 4px solid var(--c-brand);
  padding: 56px 56px 56px 48px;
}

.pmv-content::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 36px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 150px;
  line-height: 1;
  color: var(--c-brand-light);
  opacity: 0.22;
  pointer-events: none;
}

.pmv-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.pmv-panel.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.pmv-panel p {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.9;
  color: var(--c-ink);
  max-width: 64ch;
}

/* ===================== VALUES ===================== */
.values {
  padding: 160px 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.value-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-brand);
  padding: 48px 40px 56px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.value-card:nth-child(2) { border-top-color: var(--c-brand-light); }
.value-card:nth-child(3) { border-top-color: var(--c-red); }
.value-card:nth-child(5) { border-top-color: var(--c-brand-light); }

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(28, 29, 58, 0.14);
}

.value-num {
  display: block;
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--c-brand);
  margin-bottom: 32px;
}

.value-card:nth-child(2) .value-num { color: var(--c-brand-light); }
.value-card:nth-child(3) .value-num { color: var(--c-red); }
.value-card:nth-child(5) .value-num { color: var(--c-brand-light); }

.value-card h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.25;
  color: var(--c-ink);
  margin-bottom: 16px;
}

.value-card p {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
}

/* ===================== PILLARS (especialidades) ===================== */
.pillars {
  padding: 160px 0;
}

.pillars-list {
  margin-top: 32px;
  border-top: 1px solid var(--c-border);
}

.pillar {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding: 40px 16px;
  border-bottom: 1px solid var(--c-border);
  position: relative;
  cursor: default;
  transition: background 0.4s ease, padding 0.4s ease;
}

.pillar:hover {
  background: rgba(55, 57, 145, 0.04);
  padding-left: 32px;
}

.pillar-num {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 32px;
  color: var(--c-brand);
  transition: color 0.4s ease, transform 0.4s ease;
}

.pillar:nth-child(3n+2) .pillar-num { color: var(--c-brand-light); }
.pillar:nth-child(3n)   .pillar-num { color: var(--c-red); }

.pillar:hover .pillar-num {
  transform: translateX(6px);
}

.pillar-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
  color: var(--c-ink);
}

.pillar-desc {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
  opacity: 0.7;
  transform: translateY(4px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pillar:hover .pillar-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== TEAM ===================== */
.team {
  padding: 160px 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 32px;
}

.doctor {
  background: #fff;
  border: 1px solid var(--c-border);
  padding: 56px 48px;
  position: relative;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.doctor:hover {
  border-color: var(--c-brand);
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(28, 29, 58, 0.12);
}

.doctor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 3px;
  background: var(--c-brand);
}

.doctor:nth-child(2)::before { background: var(--c-brand-light); }
.doctor:nth-child(3)::before { background: var(--c-red); }

.doctor:nth-child(2) .avatar { color: var(--c-brand-light); }
.doctor:nth-child(3) .avatar { color: var(--c-red); }

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--c-surface-2);
  color: var(--c-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.doctor-name {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(26px, 2.2vw, 32px);
  line-height: 1.2;
  color: var(--c-ink);
  margin-bottom: 8px;
}

.doctor-cro {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 24px;
  min-height: 1em;
}

.doctor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.badge {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-brand);
  border: 1px solid var(--c-brand);
  padding: 6px 12px;
  border-radius: 999px;
}

.doctor-titles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
}

.doctor-titles li {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-muted);
  padding-left: 18px;
  position: relative;
}

.doctor-titles li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 2px;
  background: var(--c-brand-light);
}

/* ===================== CTA FINAL ===================== */
.cta-final {
  padding: 200px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(73, 154, 211, 0.35) 0%, transparent 60%),
    var(--c-brand-deep);
  text-align: center;
  position: relative;
}

.cta-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.accent-line {
  display: block;
  width: 80px;
  height: 3px;
  background: var(--c-red);
  margin-bottom: 16px;
}

.cta-final .section-number {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.55);
}

.cta-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  color: #fff;
  font-style: italic;
}

.cta-sub {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ===================== FOOTER ===================== */
.site-footer {
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--c-brand) 0%, var(--c-brand-light) 55%, var(--c-red) 100%) 1;
  padding: 64px 0 48px;
  background: var(--c-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.brand-logo-footer {
  height: 46px;
  width: auto;
  margin-bottom: 16px;
}

.footer-rights {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--c-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--c-brand); }

.footer-tag {
  text-align: right;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--c-brand);
}

/* ===================== RESPONSIVE — 1200px ===================== */
@media (max-width: 1200px) {
  .nav-links { gap: 32px; }

  .hero-title .italic { padding-left: 8vw; }

  .pillar {
    grid-template-columns: 56px 1fr 1.1fr;
    gap: 32px;
  }
}

/* ===================== RESPONSIVE — 768px ===================== */
@media (max-width: 768px) {
  .container { padding: 0 24px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .brand-logo { height: 32px; }

  .hero {
    padding: calc(var(--header-h) + 48px) 0 120px;
    min-height: auto;
  }

  .hero-title { margin-bottom: 32px; }
  .hero-title .italic { padding-left: 0; }
  .hero-subtitle { margin-bottom: 48px; }

  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 24px; }
  .btn { width: 100%; padding: 20px 24px; }
  .btn-arrow { width: auto; }

  .iti-badge { right: 24px; bottom: 32px; font-size: 10px; letter-spacing: 0.18em; }

  .numbers,
  .pmv,
  .values,
  .pillars,
  .team { padding: 120px 0; }

  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .num-cell {
    padding: 40px 0;
    border-bottom: 1px solid var(--c-border);
  }
  .num-cell + .num-cell { border-left: 0; }
  .num-cell:last-child { border-bottom: 0; }

  .pmv-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pmv-tabs {
    flex-direction: row;
    gap: 16px;
    border-left: 0;
    border-bottom: 1px solid var(--c-border);
    padding-left: 0;
    padding-bottom: 20px;
    overflow-x: auto;
  }
  .pmv-tab { white-space: nowrap; padding: 4px 8px; }
  .pmv-tab::before,
  .pmv-tab.is-active::before,
  .pmv-tab:hover::before { display: none; }
  .pmv-tab.is-active,
  .pmv-tab:hover { padding-left: 8px; }
  .pmv-tab.is-active { color: var(--c-brand); }

  .values-grid { grid-template-columns: 1fr; gap: 16px; }

  .pillar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 0;
  }
  .pillar:hover { padding-left: 0; padding-right: 0; background: transparent; }
  .pillar-desc { opacity: 1; transform: none; }

  .team-grid { grid-template-columns: 1fr; gap: 24px; }
  .doctor { padding: 40px 28px; }

  .cta-final { padding: 140px 0; }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .footer-tag { text-align: center; }
  .footer-links { justify-content: center; }
  .brand-logo-footer { margin-left: auto; margin-right: auto; }
}
