@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  color-scheme: light;
  --brand-green: oklch(35% 0.096 154);
  --brand-green-deep: oklch(27% 0.074 154);
  --brand-green-soft: oklch(94% 0.03 153);
  --brand-gold: oklch(75% 0.14 83);
  --brand-gold-soft: oklch(96% 0.042 84);
  --clinical-blue: oklch(58% 0.093 221);
  --clinical-blue-soft: oklch(94% 0.028 222);
  --coral: oklch(64% 0.13 35);
  --coral-soft: oklch(94% 0.048 35);
  --ink: oklch(20% 0.019 165);
  --text: var(--ink);
  --muted: oklch(46% 0.027 164);
  --text-light: var(--muted);
  --text-muted: oklch(61% 0.024 164);
  --surface: oklch(100% 0 0);
  --surface-alt: oklch(97% 0.012 150);
  --surface-strong: oklch(100% 0 0);
  --line: oklch(87% 0.018 158);
  --line-strong: oklch(76% 0.029 158);
  --focus: oklch(69% 0.17 85);
  --shadow-sm: 0 1px 2px oklch(20% 0.019 165 / 0.08);
  --shadow-md: 0 8px 8px oklch(20% 0.019 165 / 0.07);
  --shadow-hard: 0 6px 0 oklch(24% 0.064 156 / 0.16);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 220ms var(--ease-out);
  --container: 1280px;

  --blue: var(--clinical-blue);
  --blue-light: oklch(70% 0.08 221);
  --blue-pale: var(--clinical-blue-soft);
  --blue-deep: var(--brand-green);
  --green: var(--brand-green);
  --green-light: var(--brand-green-soft);
  --green-pale: oklch(96% 0.02 153);
  --warm-white: var(--surface);
  --warm-gray: var(--surface-alt);
  --border: var(--line-strong);
  --border-light: var(--line);
  --red-soft: var(--coral);
  --red-pale: var(--coral-soft);
  --yellow-soft: var(--brand-gold);
  --yellow-pale: var(--brand-gold-soft);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  color: var(--text);
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.62;
  overflow-x: clip;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.55rem, 5vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 3.9vw, 3.55rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

h4 {
  font-size: 1rem;
  line-height: 1.18;
}

p,
li {
  text-wrap: pretty;
}

a {
  color: var(--brand-green);
  text-decoration: none;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

a:hover {
  color: var(--brand-green-deep);
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 34px);
}

.page-content {
  flex: 1;
  padding: clamp(48px, 7vw, 86px) 0 clamp(72px, 9vw, 120px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: oklch(99% 0.003 165 / 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header::before {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-green-deep), var(--brand-green), var(--brand-gold));
}

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

.logo {
  display: flex;
  align-items: center;
  min-width: 220px;
  gap: 12px;
  color: var(--text);
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  background: var(--brand-green);
  border-radius: 50%;
  color: white;
  box-shadow: 0 0 0 4px var(--brand-green-soft);
}

.logo-text {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.logo-text small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: none;
}

.main-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  align-self: stretch;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-inline-start: 1px solid transparent;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.15;
}

.main-nav a::after {
  content: '';
  position: absolute;
  right: 13px;
  bottom: 18px;
  left: 13px;
  height: 3px;
  background: var(--brand-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand-green);
  background: oklch(96% 0.022 153 / 0.7);
}

.header-cta {
  margin-left: auto;
  white-space: nowrap;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.burger svg {
  width: 26px;
  height: 26px;
}

.mobile-nav {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: none;
  background: oklch(20% 0.019 165 / 0.36);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

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

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 340px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px;
  background: var(--surface-strong);
  transform: translateX(100%);
  transition: transform 360ms var(--ease-out);
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-close {
  align-self: flex-end;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.mobile-nav a {
  display: block;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 700;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--brand-green-soft);
  color: var(--brand-green);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(620px, calc(100svh - 83px));
  display: flex;
  align-items: center;
  padding: clamp(38px, 5vw, 58px) 0;
  background:
    linear-gradient(90deg, oklch(24% 0.064 156 / 0.95), oklch(31% 0.085 154 / 0.88) 46%, oklch(72% 0.145 85 / 0.22)),
    linear-gradient(135deg, var(--brand-green-deep), var(--brand-green));
}

.hero::before {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 11px;
  background: var(--brand-gold);
}

.hero::after {
  content: 'UROLOGY / ONCOLOGY / KIDNEY PRESERVATION';
  position: absolute;
  right: clamp(16px, 3vw, 42px);
  bottom: clamp(20px, 4vw, 54px);
  max-width: 220px;
  color: oklch(100% 0 0 / 0.34);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 2.1rem);
  font-weight: 700;
  line-height: 0.94;
  text-align: right;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 4.5vw, 58px);
  align-items: center;
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 18px;
  color: white;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--brand-gold);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  max-width: 850px;
  margin: 0 0 22px;
  color: oklch(98% 0.004 150 / 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.trust-line span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-gold);
}

.hero-subtitle {
  max-width: 710px;
  margin-bottom: 26px;
  color: oklch(98% 0.004 150 / 0.9);
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.42;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 30px -18px -18px 28px;
  background: var(--brand-gold);
  border-radius: var(--radius-lg);
}

.hero-photo-img {
  position: relative;
  width: min(100%, 370px);
  height: min(44svh, 398px);
  min-height: 310px;
  object-fit: cover;
  object-position: center top;
  border: 8px solid white;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 8px oklch(9% 0.02 160 / 0.24);
}

.hero-photo-placeholder {
  width: 320px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand-gold);
  color: var(--brand-green-deep);
  box-shadow: 0 6px 0 oklch(14% 0.055 154 / 0.22);
}

.btn-primary:hover {
  background: oklch(78% 0.15 85);
  color: var(--brand-green-deep);
}

.btn-secondary {
  background: var(--surface-strong);
  border-color: var(--line-strong);
  color: var(--brand-green);
}

.btn-secondary:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: white;
}

.hero .btn-secondary,
.cta-dark .btn-secondary,
.page-title-area .btn-secondary {
  background: transparent;
  border-color: oklch(100% 0 0 / 0.66);
  color: white;
}

.hero .btn-secondary:hover,
.cta-dark .btn-secondary:hover,
.page-title-area .btn-secondary:hover {
  background: white;
  color: var(--brand-green);
}

.btn-green {
  background: var(--brand-green);
  color: white;
}

.btn-green:hover {
  background: var(--brand-green-deep);
  color: white;
}

.btn-sm {
  min-height: 38px;
  padding: 8px 16px;
  font-size: 0.84rem;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.facts-strip {
  background: var(--brand-green-deep);
  padding: clamp(30px, 4vw, 48px) 0;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: oklch(100% 0 0 / 0.16);
}

.fact {
  min-height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3vw, 34px);
  background: var(--brand-green-deep);
  color: white;
}

.fact .fact-num {
  color: var(--brand-gold);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.fact .fact-num.small {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.05;
}

.fact .fact-label {
  margin-top: 12px;
  color: oklch(98% 0.004 150 / 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
}

.section {
  padding: clamp(64px, 9vw, 116px) 0;
}

.section[style*='--warm-gray'],
.section[style*='warm-gray'] {
  background: var(--surface-alt) !important;
}

.section-header {
  max-width: 780px;
  margin: 0 auto clamp(34px, 5vw, 60px);
  text-align: center;
}

.section-header h2 {
  text-transform: uppercase;
}

.section-header p {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.55;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cards-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.article-card,
.video-card,
.advantage,
.quote-card,
.form-section,
.ipss-question,
.ipss-result,
.faq-item,
.acc-section,
.checklist-card,
.research-box {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card,
.article-card,
.video-card {
  position: relative;
  overflow: hidden;
  color: var(--text);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
}

.card::before,
.article-card::before,
.video-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.card:hover,
.article-card:hover,
.video-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-green);
  box-shadow: var(--shadow-hard);
  color: var(--text);
}

.card:hover::before,
.article-card:hover::before,
.video-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--brand-green-soft);
  border-radius: var(--radius-sm);
  color: var(--brand-green);
  font-size: 24px;
}

.card-icon.blue {
  background: var(--clinical-blue-soft);
  color: var(--clinical-blue);
}

.card-icon.green {
  background: var(--brand-green-soft);
  color: var(--brand-green);
}

.card-icon.warm {
  background: var(--brand-gold-soft);
  color: oklch(54% 0.1 83);
}

.card h3 {
  margin-bottom: 14px;
  text-transform: uppercase;
}

.card p {
  flex: 1;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--brand-green);
  font-weight: 800;
}

.video-grid,
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.quotes-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card {
  display: flex;
  flex-direction: column;
}

.video-thumb {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, oklch(24% 0.064 156 / 0.84), oklch(37% 0.092 154 / 0.78)),
    var(--brand-green);
}

.video-thumb .play,
.play {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: white;
  border-radius: 50%;
  color: var(--brand-green);
}

.video-card h4 {
  padding: 18px 18px 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.22;
}

.video-soon {
  width: max-content;
  margin: auto 18px 18px;
  padding: 4px 10px;
  background: var(--brand-gold-soft);
  border-radius: 999px;
  color: oklch(44% 0.079 83);
  font-size: 0.74rem;
  font-weight: 800;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.social-badge,
.research-badge,
.article-category {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  max-width: 100%;
  white-space: normal;
}

.svc3d-grid {
  max-width: 1050px;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
  margin: 0 auto;
}

.svc3d-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.svc3d-tile {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.svc3d-tile.ct {
  background:
    linear-gradient(135deg, oklch(42% 0 0), oklch(80% 0 0)),
    oklch(74% 0 0);
  color: white;
}

.svc3d-tile.model {
  background:
    radial-gradient(circle at 70% 25%, oklch(77% 0.15 35), transparent 28%),
    radial-gradient(circle at 38% 62%, oklch(72% 0.11 153), transparent 30%),
    linear-gradient(135deg, oklch(86% 0.06 221), oklch(94% 0.056 86));
  color: var(--brand-green-deep);
}

.svc3d-arrow {
  color: var(--brand-green);
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
}

.svc3d-content h2 {
  margin-bottom: 18px;
  text-transform: uppercase;
}

.svc3d-content p {
  max-width: 62ch;
  margin-bottom: 16px;
  color: var(--muted);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.advantage {
  padding: clamp(26px, 4vw, 42px);
}

.advantage h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.advantage p {
  color: var(--muted);
}

.checklist-card {
  max-width: 820px;
  padding: clamp(28px, 4vw, 46px);
  margin: 0 auto;
  background: var(--surface-strong);
}

.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list li::before {
  content: '';
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-top: 3px;
  background: var(--brand-gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7px var(--brand-green-deep);
}

.research-box {
  max-width: 900px;
  padding: clamp(28px, 5vw, 56px);
  margin: 0 auto;
  background:
    linear-gradient(135deg, oklch(92% 0.035 153), oklch(98% 0.003 165));
}

.research-box h3 {
  margin-bottom: 14px;
  text-transform: uppercase;
}

.research-box p {
  max-width: 72ch;
  margin-bottom: 13px;
  color: var(--muted);
}

.quote-card {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
}

.quote-card::before {
  content: '“';
  display: block;
  margin-bottom: 12px;
  color: var(--brand-gold);
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  line-height: 0.7;
}

.quote-card p {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}

.quote-who,
.quotes-note {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.quotes-note {
  max-width: 760px;
  margin: 20px auto 0;
  text-align: center;
}

.faq-wrap,
.surgery-accordion,
.surgery-intro,
.surgery-controls {
  max-width: 860px;
  margin-inline: auto;
}

.faq-item,
.acc-section {
  overflow: clip;
  margin-bottom: 12px;
}

.faq-q,
.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-q {
  font-family: 'Oswald', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.faq-mark,
.acc-chevron {
  margin-left: auto;
  color: var(--brand-green);
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem;
  transition: transform var(--transition);
}

.faq-item.open .faq-mark,
.acc-section.open .acc-chevron {
  transform: rotate(45deg);
}

.faq-a,
.acc-body {
  display: none;
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-item.open .faq-a,
.acc-section.open .acc-body {
  display: block;
  animation: revealDrop 320ms var(--ease-out);
}

.cta-dark {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 118px) 0;
  background:
    linear-gradient(100deg, var(--brand-green-deep), var(--brand-green) 66%, oklch(55% 0.11 155));
  color: white;
}

.cta-dark::before {
  content: 'NEXT STEP';
  position: absolute;
  left: clamp(14px, 2vw, 32px);
  bottom: -0.12em;
  color: oklch(100% 0 0 / 0.1);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(4rem, 16vw, 15rem);
  font-weight: 700;
  line-height: 0.8;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-dark h2 {
  margin-bottom: 14px;
  color: white;
  text-transform: uppercase;
}

.cta-dark p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: oklch(100% 0 0 / 0.82);
  font-size: 1.13rem;
}

.cta-dark .btn-primary {
  background: white !important;
  color: var(--brand-green-deep) !important;
}

.cta-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 18px;
}

.cta-channel {
  color: oklch(100% 0 0 / 0.86);
  font-weight: 700;
}

a.cta-channel:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 52px 0 28px;
  background: oklch(18% 0.026 158);
  color: oklch(100% 0 0 / 0.68);
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 34px;
}

.footer-col h4 {
  margin-bottom: 12px;
  color: white;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  padding: 3px 0;
  color: oklch(100% 0 0 / 0.68);
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid oklch(100% 0 0 / 0.14);
  color: oklch(100% 0 0 / 0.5);
  text-align: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin: 8px 0 20px;
  padding-top: 20px;
  border-top: 1px solid oklch(100% 0 0 / 0.1);
}

.footer-legal a {
  color: oklch(100% 0 0 / 0.76);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: oklch(100% 0 0 / 0.26);
  text-underline-offset: 4px;
}

.footer-legal a:hover {
  color: white;
  text-decoration-color: var(--brand-gold);
}

.page-title-area {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 100px) 0 clamp(42px, 6vw, 76px);
  background: linear-gradient(105deg, var(--brand-green-deep), var(--brand-green));
  color: white;
}

.page-title-area::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  background: var(--brand-gold);
}

.page-title-area h1 {
  max-width: 900px;
  color: white;
  text-transform: uppercase;
}

.page-title-area p {
  max-width: 760px;
  margin-top: 16px;
  color: oklch(100% 0 0 / 0.84);
  font-size: 1.2rem;
}

.breadcrumbs {
  margin-bottom: 22px;
  color: oklch(100% 0 0 / 0.75);
  font-size: 0.88rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: oklch(100% 0 0 / 0.78);
}

.breadcrumbs a:hover {
  color: white;
}

.article-content,
.form-page,
.chat-page {
  max-width: 840px;
  margin: 0 auto;
}

.article-content h1 {
  margin-bottom: 18px;
  text-transform: uppercase;
}

.article-content .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 800;
}

.article-content .meta {
  margin-bottom: 34px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-content p {
  max-width: 72ch;
  margin-bottom: 17px;
  font-size: 1.04rem;
}

.article-content h2 {
  margin: 42px 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  text-transform: uppercase;
}

.article-content h3 {
  margin: 28px 0 10px;
  line-height: 1.1;
  text-transform: uppercase;
}

.article-content ul,
.article-content ol {
  max-width: 72ch;
  margin: 0 0 20px 24px;
}

.article-content li {
  margin-bottom: 8px;
}

.micro-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 24px;
}

.micro-figure {
  margin: 0;
  border: 1px solid var(--line);
  background: white;
}

.micro-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: contain;
  background: oklch(98% 0.006 150);
}

.micro-figure figcaption {
  padding: 14px 16px 16px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.45;
}

.micro-takeaway {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 8px solid var(--brand-gold);
  background: var(--brand-green);
  color: white;
  font-size: 1.05rem;
  line-height: 1.65;
}

.micro-takeaway strong {
  color: var(--brand-gold);
}

.disclaimer-box,
.info-box,
.acc-note,
.acc-highlight {
  margin: 24px 0;
  padding: 16px 18px;
  background: var(--brand-gold-soft);
  border: 1px solid oklch(83% 0.08 84);
  border-radius: var(--radius);
  color: oklch(32% 0.04 84);
  font-size: 0.94rem;
}

.info-box,
.acc-highlight {
  background: var(--clinical-blue-soft);
  border-color: oklch(82% 0.04 221);
  color: oklch(32% 0.055 221);
}

.consent-panel {
  margin: 22px 0;
  padding: 18px 20px;
  background: oklch(98% 0.01 150);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
}

.consent-panel-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.consent-panel-heading strong {
  color: var(--brand-green-deep);
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1rem;
}

.consent-panel p {
  max-width: 78ch;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.consent-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 0.86rem;
}

.consent-links a {
  color: var(--brand-green);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: oklch(35% 0.096 154 / 0.28);
  text-underline-offset: 4px;
}

.consent-links a:hover {
  color: var(--brand-green-deep);
  text-decoration-color: var(--brand-gold);
}

.consent-checks {
  display: grid;
  gap: 10px;
}

.consent-check {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.94rem;
  line-height: 1.45;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--brand-green);
}

.consent-check span {
  min-width: 0;
}

.chat-prompt.is-disabled,
.chat-send.is-disabled,
.chat-input-area input:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.chat-prompt.is-disabled:hover {
  transform: none;
}

.legal-content h2 {
  margin-top: 38px;
}

.legal-content strong {
  color: var(--brand-green-deep);
}

.legal-consent-card {
  margin: 14px 0 24px;
  padding: 18px 20px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-consent-card p {
  margin: 0;
  color: var(--ink);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.article-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 0;
}

.article-card h3 {
  margin: 10px 26px;
  text-transform: uppercase;
}

.article-card p {
  margin: 0 26px 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.article-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.96) contrast(1.02);
}

.article-card .article-category {
  align-self: flex-start;
  margin: 22px 26px 0;
}

.article-date {
  display: block;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.cat-urology {
  background: var(--clinical-blue-soft);
  color: oklch(39% 0.085 221);
}

.cat-oncology {
  background: var(--brand-gold-soft);
  color: oklch(42% 0.075 84);
}

.cat-practical {
  background: var(--brand-green-soft);
  color: var(--brand-green);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.filter-btn,
.tab-btn {
  min-height: 42px;
  padding: 8px 16px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.filter-btn:hover,
.filter-btn.active,
.tab-btn:hover,
.tab-btn.active {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: white;
}

.about-grid,
.contacts-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(32px, 6vw, 72px);
}

.contacts-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.about-photo-img,
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
}

.about-content .specialty {
  margin-bottom: 26px;
  color: var(--brand-green);
  font-size: 1.1rem;
  font-weight: 800;
}

.about-content p {
  max-width: 74ch;
  margin-bottom: 14px;
}

.about-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.about-detail {
  padding: 18px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-detail h4 {
  margin-bottom: 8px;
  color: var(--muted);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.science-list {
  margin-top: 14px;
}

.science-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.science-year {
  width: 54px;
  flex: 0 0 54px;
  color: var(--brand-green);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}

.contact-info-block {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  display: grid;
  flex: 0 0 46px;
  place-items: center;
  background: var(--brand-green-soft);
  border-radius: 50%;
  color: var(--brand-green);
}

.map-placeholder {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}

.hours-table {
  width: 100%;
  margin-top: 8px;
  border-collapse: collapse;
}

.hours-table td {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.hours-table td:last-child {
  color: var(--muted);
  text-align: right;
}

.contact-chat-link {
  margin-top: 12px;
}

.contact-qr-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: 20px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.contact-qr-card img {
  width: 150px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

.contact-qr-card h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.contact-qr-card p {
  color: var(--muted);
}

.contact-request-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin-top: clamp(42px, 6vw, 76px);
  padding-top: clamp(36px, 5vw, 58px);
  border-top: 8px solid var(--brand-green);
}

.contact-request-copy h2,
.calendar-copy h2,
.calendar-planner h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.07;
  text-wrap: balance;
}

.contact-request-copy p,
.calendar-copy p {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.52;
}

.callback-form,
.calendar-planner {
  padding: clamp(24px, 4vw, 42px);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.callback-result {
  margin-top: 24px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
}

.callback-result h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.callback-result p {
  color: var(--muted);
}

.callback-result pre {
  max-height: 220px;
  overflow: auto;
  margin: 16px 0;
  padding: 16px;
  background: oklch(97% 0.004 150);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.98rem;
  line-height: 1.45;
  white-space: pre-wrap;
}

.calendar-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(340px, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.calendar-hours {
  display: grid;
  gap: 0;
  margin: 26px 0 18px;
  border-top: 1px solid var(--line);
}

.calendar-hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.calendar-hours span {
  color: var(--brand-green);
  font-weight: 800;
}

.calendar-note {
  font-size: 0.98rem !important;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin: 18px 0 24px;
}

.slot-button {
  min-height: 78px;
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.slot-button strong,
.slot-button span {
  display: block;
}

.slot-button strong {
  margin-bottom: 4px;
  font-size: 1.25rem;
  line-height: 1;
}

.slot-button span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.25;
}

.slot-button:hover,
.slot-button.active {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: white;
  transform: translateY(-2px);
}

.slot-button:hover span,
.slot-button.active span {
  color: oklch(100% 0 0 / 0.82);
}

.slot-button-custom {
  border-color: var(--brand-gold);
}

.chat-intro-panel {
  margin-bottom: 22px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--brand-green);
  color: white;
}

.chat-intro-panel h1 {
  margin-bottom: 10px;
  color: white;
}

.chat-intro-panel p {
  max-width: 72ch;
  color: oklch(100% 0 0 / 0.84);
  font-size: 1.08rem;
}

.chat-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chat-prompt {
  min-height: 42px;
  padding: 9px 14px;
  background: white;
  border: 1px solid oklch(100% 0 0 / 0.28);
  border-radius: 7px;
  color: var(--brand-green-deep);
  cursor: pointer;
  font-weight: 800;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.chat-prompt:hover {
  background: var(--brand-gold);
  color: var(--brand-green-deep);
  transform: translateY(-2px);
}

.svc3d-hero {
  padding-top: clamp(34px, 5vw, 62px);
}

.svc3d-page-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 0.86fr);
  align-items: center;
  gap: clamp(38px, 6vw, 82px);
}

.svc3d-gallery-lead {
  min-width: 0;
}

.svc3d-hero-image,
.svc3d-story-photo,
.svc3d-process-image {
  margin: 0;
  overflow: hidden;
  background: var(--surface-alt);
}

.svc3d-hero-image img {
  width: 100%;
  height: clamp(350px, 38vw, 560px);
  object-fit: cover;
  object-position: center;
}

.svc3d-mini-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.svc3d-mini-row img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: var(--surface-alt);
}

.svc3d-copy h1 {
  max-width: 760px;
  color: oklch(8% 0.008 150);
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: clamp(2.35rem, 4vw, 3.75rem);
  line-height: 1.04;
  text-wrap: balance;
}

.svc3d-copy p {
  max-width: 68ch;
  color: oklch(28% 0.012 150);
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
  line-height: 1.52;
}

.svc3d-boundary-section {
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.svc3d-boundary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.svc3d-boundary-block {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.svc3d-boundary-block h3 {
  margin-bottom: 14px;
  color: var(--brand-green-deep);
  font-size: 1.2rem;
}

.svc3d-boundary-block ul {
  display: grid;
  gap: 10px;
  margin-left: 18px;
  color: var(--muted);
}

.svc3d-boundary-note {
  margin-top: 18px;
  padding: 20px 24px;
  background: var(--brand-green-deep);
  border-radius: var(--radius);
  color: white;
  font-weight: 800;
  line-height: 1.45;
}

.svc3d-dark-strip h2 {
  max-width: 720px;
  color: white;
  font-size: clamp(2.1rem, 3.7vw, 3.45rem);
  line-height: 1.06;
  text-wrap: balance;
}

.svc3d-band-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.svc3d-band-copy p {
  max-width: 74ch;
  color: oklch(100% 0 0 / 0.84);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
}

.svc3d-band-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.svc3d-band-points span {
  padding: 7px 12px;
  background: oklch(100% 0 0 / 0.1);
  border: 1px solid oklch(100% 0 0 / 0.2);
  border-radius: 999px;
  color: white;
  font-weight: 800;
}

.svc3d-story-photo img {
  width: 100%;
  height: clamp(360px, 34vw, 500px);
  object-fit: contain;
  background: oklch(97% 0.004 150);
}

.section-alt {
  background: var(--surface-alt);
}

.svc3d-process {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.svc3d-process-copy p {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.svc3d-steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.svc3d-steps li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.svc3d-process-image img {
  width: 100%;
  height: clamp(300px, 32vw, 440px);
  object-fit: contain;
  background: white;
}

.svc3d-info-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 0.8fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: stretch;
}

.svc3d-checklist {
  max-width: none;
  margin: 0;
}

.svc3d-note {
  padding: clamp(28px, 4vw, 46px);
  background: var(--brand-green);
  color: white;
}

.svc3d-note h3 {
  color: white;
  margin-bottom: 14px;
}

.svc3d-note p {
  color: oklch(100% 0 0 / 0.84);
  margin-bottom: 14px;
}

.svc3d-note .btn {
  margin-top: 8px;
  background: var(--brand-gold);
  color: var(--brand-green-deep);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.form-section {
  padding: clamp(24px, 4vw, 40px);
  margin-bottom: 22px;
}

.form-section h3 {
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-weight: 800;
}

.form-group .hint {
  display: block;
  margin-bottom: 7px;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='number'],
input[type='date'],
input[type='time'],
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  background: var(--surface-strong);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px oklch(37% 0.092 154 / 0.15);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.ipss-question {
  padding: 22px 24px;
  margin-bottom: 14px;
}

.ipss-question h4 {
  margin-bottom: 14px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.ipss-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ipss-option,
.checklist-form-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.ipss-option:hover,
.checklist-form-item:hover {
  background: var(--brand-green-soft);
}

.ipss-option input[type='radio'],
.checklist-form-item input[type='checkbox'] {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  accent-color: var(--brand-green);
}

.ipss-result {
  padding: 32px;
  margin-top: 24px;
  text-align: center;
}

.ipss-score {
  margin: 8px 0;
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 0.9;
}

.ipss-score.mild {
  color: var(--brand-green);
}

.ipss-score.moderate {
  color: oklch(55% 0.13 83);
}

.ipss-score.severe {
  color: var(--coral);
}

.ipss-label {
  margin-bottom: 8px;
  font-weight: 800;
}

.ipss-description {
  color: var(--muted);
}

.diary-table-wrap {
  overflow-x: auto;
  margin: 16px 0;
}

.diary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.diary-table th {
  padding: 10px 12px;
  background: var(--brand-green-soft);
  border-bottom: 1px solid var(--line);
  color: var(--brand-green);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: left;
}

.diary-table td {
  padding: 7px 8px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.row-delete {
  width: 34px;
  height: 34px;
  background: var(--coral-soft);
  border: 1px solid oklch(83% 0.07 35);
  border-radius: 50%;
  color: var(--coral);
  cursor: pointer;
}

.diary-totals {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  margin-top: 12px;
  padding: 16px 18px;
  background: var(--brand-green-soft);
  border-radius: var(--radius);
  color: var(--muted);
}

.diary-totals strong {
  color: var(--brand-green);
}

.progress-bar-wrap {
  height: 10px;
  margin: 16px 0;
  overflow: hidden;
  background: var(--line);
  border-radius: 999px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-gold));
  transition: width 420ms var(--ease-out);
}

.progress-text {
  color: var(--text-muted);
  font-size: 0.86rem;
  text-align: right;
}

.chat-container {
  height: 640px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--brand-green);
  color: white;
}

.chat-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: oklch(100% 0 0 / 0.18);
  border-radius: 50%;
}

.chat-header-text h3 {
  color: white;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.chat-header-text p {
  color: oklch(100% 0 0 / 0.78);
  font-size: 0.82rem;
}

.chat-status {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 4px;
  background: var(--brand-gold);
  border-radius: 50%;
}

.chat-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  padding: 24px;
}

.chat-msg {
  max-width: 82%;
  padding: 13px 16px;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
  animation: revealDrop 280ms var(--ease-out);
}

.chat-msg.bot {
  align-self: flex-start;
  background: var(--brand-green-soft);
  border-bottom-left-radius: 5px;
}

.chat-msg.user {
  align-self: flex-end;
  background: var(--brand-green);
  border-bottom-right-radius: 5px;
  color: white;
}

.typing-dots {
  display: flex;
  gap: 4px;
  padding: 4px 0;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  background: var(--brand-green);
  border-radius: 50%;
  animation: blink 1.4s infinite both;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

.chat-input-area {
  display: flex;
  gap: 10px;
  padding: 16px 18px;
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
}

.chat-input-area input {
  flex: 1;
  border-radius: 999px;
}

.chat-send,
.chat-fab,
.msg-fab {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.chat-send {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--brand-green);
  color: white;
}

.chat-send:hover,
.chat-fab:hover,
.msg-fab:hover {
  transform: translateY(-2px) scale(1.03);
}

.chat-fab,
.msg-fab {
  position: fixed;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  color: white;
  box-shadow: 0 8px 8px oklch(20% 0.019 165 / 0.18);
}

.chat-fab {
  bottom: 24px;
  background: var(--brand-green);
}

.msg-fab {
  bottom: 96px;
  background: var(--clinical-blue);
}

.msg-fab .msg-soon {
  position: absolute;
  top: -7px;
  right: -4px;
  padding: 2px 7px;
  background: var(--brand-gold);
  border-radius: 999px;
  color: var(--brand-green-deep);
  font-size: 0.6rem;
  font-weight: 900;
}

.surgery-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.surgery-steps {
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 32px;
}

.surgery-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--brand-green-soft);
  border-radius: 999px;
  color: var(--brand-green);
  font-size: 0.84rem;
  font-weight: 800;
}

.acc-icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 44px;
  place-items: center;
  background: var(--brand-green-soft);
  border-radius: 50%;
  color: var(--brand-green);
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.acc-title {
  flex: 1;
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.acc-section.alarm {
  background: var(--coral-soft);
  border-color: oklch(83% 0.07 35);
}

.acc-section.alarm .acc-title {
  color: oklch(42% 0.1 35);
}

.acc-sub {
  margin-bottom: 22px;
}

.acc-sub h4 {
  margin-bottom: 8px;
  color: var(--brand-green);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 900;
}

.acc-sub p,
.acc-sub li {
  color: var(--muted);
}

.contact-bar {
  padding: 42px 0;
  background: var(--brand-green-deep);
  color: white;
}

.contact-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-bar h3 {
  color: white;
}

.contact-bar p {
  color: oklch(100% 0 0 / 0.75);
}

.reveal.is-visible {
  animation: revealRise 720ms var(--ease-out) both;
}

.hero h1,
.hero .trust-line,
.hero .hero-subtitle,
.hero .hero-actions {
  animation: revealRise 860ms var(--ease-out) both;
}

.hero .trust-line {
  animation-delay: 80ms;
}

.hero .hero-subtitle {
  animation-delay: 150ms;
}

.hero .hero-actions {
  animation-delay: 220ms;
}

.hero-photo-img {
  animation: portraitIn 980ms var(--ease-out) both;
}

@keyframes revealRise {
  from {
    opacity: 0.01;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealDrop {
  from {
    opacity: 0.01;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes portraitIn {
  from {
    opacity: 0.01;
    transform: translateX(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes blink {
  0%,
  80%,
  100% {
    opacity: 0.3;
  }
  40% {
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .main-nav a {
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .cards-grid.four,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  html {
    font-size: 17px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .burger {
    display: grid;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    display: none;
  }

  .hero-grid,
  .svc3d-grid,
  .about-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    order: -1;
    justify-content: flex-start;
  }

  .hero-photo::before {
    inset: 22px auto -14px 22px;
    width: min(80vw, 360px);
  }

  .hero-photo-img {
    width: min(50vw, 220px);
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero-actions .btn-secondary {
    border-color: oklch(100% 0 0 / 0.74);
  }

  .advantages-grid,
  .quotes-grid,
  .about-details,
  .form-row,
  .micro-gallery {
    grid-template-columns: 1fr;
  }

  .micro-figure img {
    max-height: 360px;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 16px;
  }

  .container {
    padding-inline: 16px;
  }

  .logo {
    min-width: 0;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-text small {
    display: none;
  }

  .hero {
    padding: 28px 0 42px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 12vw, 2.75rem);
  }

  .hero-subtitle {
    display: none;
  }

  .hero-actions,
  .form-actions,
  .contact-bar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .btn-secondary {
    display: none;
  }

  .hero-actions {
    display: none;
  }

  .cards-grid,
  .cards-grid.four,
  .video-grid,
  .facts-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: 132px;
  }

  .svc3d-visual {
    grid-template-columns: 1fr;
  }

  .svc3d-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .faq-q,
  .acc-header {
    padding: 18px;
  }

  .faq-a,
  .acc-body {
    padding: 0 18px 20px;
  }

  .chat-container {
    height: calc(100svh - 180px);
  }

  .chat-fab,
  .msg-fab {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .btn:hover,
  .card:hover,
  .article-card:hover,
  .video-card:hover,
  .chat-fab:hover,
  .msg-fab:hover {
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .chat-fab,
  .msg-fab,
  .btn,
  .filter-bar,
  .mobile-nav,
  .surgery-controls {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .hero,
  .page-title-area,
  .cta-dark,
  .facts-strip {
    background: white !important;
    color: black !important;
  }

  .hero h1,
  .page-title-area h1,
  .cta-dark h2 {
    color: black !important;
  }

  .page-content {
    padding: 0;
  }

  .form-section,
  .ipss-question,
  .acc-section {
    page-break-inside: avoid;
  }

  .acc-body {
    display: block !important;
  }
}

/* ===== UAB-inspired white composition pass ===== */
.site-header {
  background: var(--brand-green-deep);
  border-bottom: 1px solid oklch(72% 0.13 84 / 0.45);
  backdrop-filter: blur(10px);
}

.site-header::before {
  display: none;
}

.header-inner {
  min-height: 92px;
}

.logo {
  min-width: 270px;
  gap: 14px;
}

.logo-icon {
  width: 58px;
  height: 58px;
  background: var(--brand-green);
  box-shadow: none;
}

.logo-text {
  color: white;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.38rem;
  font-weight: 850;
  line-height: 0.92;
  text-transform: none;
}

.logo-text small {
  margin-top: 7px;
  color: oklch(88% 0.07 84);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
}

.main-nav {
  align-self: center;
  gap: 18px;
  flex-shrink: 0;
}

.main-nav > a,
.main-nav > .nav-item > a {
  padding: 10px 0;
  color: white;
  font-size: 0.98rem;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav > a::after,
.main-nav > .nav-item > a::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--brand-gold);
}

.main-nav > a:hover,
.main-nav > a.active,
.main-nav > .nav-item > a:hover,
.main-nav > .nav-item > a.active,
.nav-item:hover > .nav-menu-link,
.nav-item.open > .nav-menu-link {
  background: transparent;
  color: var(--brand-gold);
}

.nav-item {
  position: static;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 34px;
  margin-left: -6px;
  padding: 0;
  color: oklch(91% 0.08 84);
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.nav-menu-button:hover,
.nav-menu-button:focus-visible,
.nav-item.open .nav-menu-button {
  color: var(--brand-green-deep);
  background: var(--brand-gold);
  outline: none;
}

.nav-caret {
  color: currentColor;
  font-size: 0.72em;
  line-height: 1;
  transition: transform var(--transition);
}

.nav-item.open .nav-caret,
.nav-item:focus-within .nav-caret {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  z-index: 98;
  top: 100%;
  right: 0;
  left: 0;
  padding: 46px 0 54px;
  background: white;
  border-top: 1px solid var(--line);
  box-shadow: 0 20px 30px oklch(20% 0.019 165 / 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
}

.nav-item.open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-inner {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, minmax(190px, 1fr));
  gap: clamp(34px, 5vw, 64px);
}

.mega-intro h3 {
  color: var(--brand-green-deep);
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
}

.mega-intro p {
  max-width: 300px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.45;
}

.mega-col {
  border-top: 6px solid var(--brand-green);
  padding-top: 20px;
}

.mega-col h4 {
  margin-bottom: 18px;
  color: var(--text-muted);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-menu .mega-col a {
  display: block;
  padding: 7px 0;
  color: var(--brand-green);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.mega-menu a::after {
  display: none;
}

.mega-menu .mega-col a:hover {
  color: var(--brand-green-deep);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.header-cta.btn-primary {
  margin-left: 18px;
  padding: 13px 18px;
  background: var(--brand-gold);
  border-radius: 7px;
  color: var(--brand-green-deep);
  box-shadow: none;
}

.header-cta.btn-primary:hover {
  background: white;
  color: var(--brand-green-deep);
}

.hero {
  min-height: auto;
  padding: clamp(36px, 5vw, 58px) 0 clamp(48px, 6vw, 72px);
  background: var(--surface);
}

.hero::before {
  display: none;
}

.hero::after {
  content: '';
  top: 118px;
  right: clamp(26px, 7vw, 120px);
  bottom: auto;
  width: clamp(210px, 24vw, 360px);
  height: clamp(210px, 24vw, 360px);
  max-width: none;
  background:
    radial-gradient(circle, transparent 46%, oklch(92% 0 0 / 0.82) 47%, transparent 48%),
    conic-gradient(from -20deg, transparent, oklch(92% 0 0 / 0.65), transparent 62%);
  border-radius: 50%;
  color: transparent;
  pointer-events: none;
}

.hero-grid {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 0.84fr);
  gap: clamp(44px, 6vw, 86px);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 14px;
  color: oklch(8% 0.008 150);
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: clamp(2.35rem, 3.6vw, 3.45rem);
  line-height: 1.03;
  text-transform: none;
}

.hero h1 span {
  color: oklch(8% 0.008 150);
}

.uab-rule {
  width: 76px;
  height: 6px;
  margin: 18px 0 18px;
  background: var(--brand-green);
}

.trust-line {
  gap: 8px 16px;
  max-width: 740px;
  margin: 0 0 18px;
  color: oklch(34% 0.016 150);
  font-size: 1rem;
  font-weight: 700;
}

.trust-line span::before {
  background: var(--brand-green);
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 24px;
  color: oklch(25% 0.012 150);
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
  line-height: 1.5;
}

.hero-photo {
  justify-content: flex-start;
}

.hero-photo::before {
  display: none;
}

.hero-photo-img {
  width: min(100%, 590px);
  height: clamp(360px, 34vw, 470px);
  min-height: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body[data-page='home'] .msg-fab,
body[data-page='home'] .chat-fab {
  display: none;
}

.btn {
  border-radius: 7px;
  box-shadow: none;
}

.btn-primary {
  background: var(--brand-green);
  color: white;
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--brand-green-deep);
  color: white;
}

.btn-secondary {
  border-color: var(--line);
}

.uab-link-list {
  width: min(100%, 760px);
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.uab-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 8px 18px;
  border-bottom: 1px solid var(--line);
  color: oklch(22% 0.012 150);
  font-size: 1rem;
  font-weight: 700;
}

.uab-link-list a:hover {
  background: oklch(97% 0.006 150);
  color: var(--brand-green);
}

.uab-link-list span {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  background: oklch(94% 0.004 150);
  border-radius: 50%;
  color: var(--brand-green);
  font-size: 0.9rem;
}

.facts-strip {
  background: var(--brand-green);
  padding: 0;
}

.facts-grid {
  background: transparent;
}

.fact {
  min-height: 172px;
  background: var(--brand-green);
  border-right: 1px solid oklch(100% 0 0 / 0.18);
}

.fact .fact-num {
  color: white;
  font-family: 'Roboto Slab', Georgia, serif;
  text-transform: none;
}

.fact .fact-label {
  color: oklch(100% 0 0 / 0.78);
}

.section {
  background: var(--surface);
}

.section[style*='--warm-gray'],
.section[style*='warm-gray'] {
  background: white !important;
  border-top: 6px solid var(--brand-green);
}

.section-header {
  text-align: left;
  margin-inline: 0;
}

.section-header h2,
.card h3,
.article-card h3,
.advantage h3,
.research-box h3,
.cta-dark h2,
.page-title-area h1,
.article-content h1,
.article-content h2,
.article-content h3 {
  text-transform: none;
}

.section-header p {
  margin-left: 0;
}

.help-list-header {
  max-width: 900px;
  margin-bottom: 18px;
}

.help-link-list {
  width: min(100%, 980px);
  margin-top: 28px;
}

.feature-split,
.svc3d-grid {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 0.86fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
}

.feature-split-reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 0.86fr);
}

.feature-copy h2,
.svc3d-content h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 3.7vw, 3.55rem);
}

.feature-copy p,
.svc3d-content p {
  max-width: 720px;
  color: oklch(28% 0.012 150);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.5;
}

.cards-grid,
.cards-grid.four,
.video-grid,
.quotes-grid,
.advantages-grid {
  gap: 20px;
}

.card,
.article-card,
.video-card,
.advantage,
.quote-card,
.form-section,
.ipss-question,
.ipss-result,
.faq-item,
.acc-section,
.checklist-card,
.research-box {
  border-radius: 0;
  box-shadow: none;
}

.card:hover,
.article-card:hover,
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.card::before,
.article-card::before,
.video-card::before {
  background: var(--brand-green);
}

.svc3d-tile {
  border-radius: 0;
}

.cta-dark {
  background: var(--brand-green);
}

.cta-dark::before {
  color: oklch(100% 0 0 / 0.08);
  font-family: 'Roboto Slab', Georgia, serif;
}

.page-title-area {
  background: var(--brand-green);
}

@media (max-width: 1080px) {
  .header-inner {
    min-height: 92px;
  }

  .logo {
    min-width: 245px;
  }

  .logo-icon {
    width: 50px;
    height: 50px;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .main-nav {
    gap: 12px;
  }

  .main-nav a {
    font-size: 0.95rem;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 82px;
  }

  .logo {
    min-width: 0;
  }

  .hero-grid,
  .feature-split,
  .feature-split-reverse,
  .svc3d-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-photo {
    order: 0;
  }

  .hero-photo-img {
    width: 100%;
    height: min(60vw, 420px);
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9vw, 3rem);
  }

  .hero-subtitle {
    display: block;
    font-size: 1.05rem;
  }

  .hero-actions {
    display: flex;
  }
}

@media (max-width: 640px) {
  .logo-icon {
    width: 48px;
    height: 48px;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .logo-text small {
    display: block;
    font-size: 0.66rem;
  }

  .hero {
    padding: 24px 0 42px;
  }

  .hero-photo-img {
    height: 290px;
  }

  .hero-actions {
    display: none;
  }

  .uab-link-list a {
    min-height: 54px;
    padding-inline: 12px;
    font-size: 1rem;
  }

  .section-header {
    text-align: left;
  }

  .fact {
    min-height: 138px;
  }
}

/* ===== UAB section rhythm refinement ===== */
.facts-strip {
  background: var(--brand-green);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
}

.fact {
  min-height: clamp(176px, 14vw, 210px);
  justify-content: flex-start;
  padding: clamp(28px, 3.8vw, 46px) clamp(24px, 3vw, 38px);
  border-right: 1px solid oklch(100% 0 0 / 0.16);
}

.fact:last-child {
  border-right: 0;
}

.fact .fact-num,
.fact .fact-num.small {
  min-height: 3.05em;
  display: flex;
  align-items: flex-end;
  color: white;
  font-size: clamp(1.75rem, 2.35vw, 2.45rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.fact .fact-label {
  max-width: 25ch;
  margin-top: 14px;
  color: oklch(100% 0 0 / 0.78);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.45;
}

.uab-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 0.88fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
}

.uab-story-photo-right {
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.92fr);
}

.story-photo {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.story-photo img {
  width: 100%;
  height: clamp(360px, 36vw, 520px);
  display: block;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.95) contrast(1.04);
}

.story-photo-alt img {
  object-position: center 42%;
}

.story-copy h2 {
  max-width: 720px;
  color: oklch(8% 0.008 150);
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  line-height: 1.04;
  text-wrap: balance;
}

.story-copy p {
  max-width: 66ch;
  color: oklch(28% 0.012 150);
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  line-height: 1.52;
}

.dark-band {
  background: var(--brand-green) !important;
  color: white;
}

.dark-band .uab-rule {
  background: var(--brand-gold);
}

.dark-band .svc3d-content h2,
.dark-band .research-box h3 {
  color: white;
}

.dark-band .svc3d-content p,
.dark-band .research-box p {
  color: oklch(100% 0 0 / 0.84);
}

.dark-band .uab-link-list {
  border-top-color: oklch(100% 0 0 / 0.28);
}

.dark-band .uab-link-list a {
  border-bottom-color: oklch(100% 0 0 / 0.24);
  color: white;
}

.dark-band .uab-link-list a:hover {
  background: oklch(100% 0 0 / 0.08);
  color: var(--brand-gold);
}

.dark-band .uab-link-list span {
  background: var(--brand-gold);
  color: var(--brand-green-deep);
}

.dark-band .svc3d-tile {
  border-color: oklch(100% 0 0 / 0.26);
}

.dark-band .svc3d-tile.ct {
  background:
    linear-gradient(135deg, oklch(22% 0 0), oklch(62% 0 0)),
    oklch(36% 0 0);
  color: white;
}

.dark-band .svc3d-tile.model {
  background:
    radial-gradient(circle at 70% 25%, oklch(77% 0.15 35), transparent 28%),
    radial-gradient(circle at 38% 62%, oklch(72% 0.11 153), transparent 30%),
    linear-gradient(135deg, oklch(90% 0.08 84), oklch(98% 0.02 145));
  color: var(--brand-green-deep);
}

.dark-band .svc3d-arrow {
  color: var(--brand-gold);
}

.dark-band-research {
  border-top: 8px solid var(--brand-gold);
}

.dark-band .research-box {
  max-width: 980px;
  padding: 0;
  margin: 0;
  background: transparent;
}

.dark-band .research-box h3 {
  max-width: 780px;
  font-size: clamp(2.15rem, 3.8vw, 3.55rem);
  line-height: 1.05;
  text-wrap: balance;
}

.dark-band .research-badge {
  display: inline-flex;
  margin-top: 14px;
  background: var(--brand-gold);
  border-color: transparent;
  color: var(--brand-green-deep);
}

@media (max-width: 900px) {
  .facts-grid,
  .uab-story,
  .uab-story-photo-right,
  .svc3d-page-grid,
  .svc3d-boundary-grid,
  .svc3d-band-grid,
  .svc3d-process,
  .svc3d-info-grid,
  .contact-request-section,
  .calendar-layout {
    grid-template-columns: 1fr;
  }

  .uab-story-photo-right .story-photo,
  .svc3d-gallery-lead {
    order: -1;
  }

  .story-photo img {
    height: min(66vw, 430px);
  }

  .svc3d-hero-image img {
    height: min(70vw, 460px);
  }

  .svc3d-process-image img {
    height: auto;
  }
}

@media (max-width: 640px) {
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: auto;
    padding: 28px 22px;
    border-right: 0;
    border-bottom: 1px solid oklch(100% 0 0 / 0.16);
  }

  .fact .fact-num,
  .fact .fact-num.small {
    min-height: auto;
    align-items: flex-start;
  }

  .story-photo img {
    height: 290px;
  }

  .svc3d-mini-row,
  .contact-qr-card {
    grid-template-columns: 1fr;
  }

  .svc3d-mini-row img {
    height: 150px;
  }

  .contact-qr-card img {
    width: min(100%, 220px);
  }

  .chat-intro-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .callback-form,
  .calendar-planner,
  .callback-result {
    padding: 20px;
  }

  .slot-grid {
    grid-template-columns: 1fr;
  }

  .calendar-hours div {
    flex-direction: column;
    gap: 4px;
  }

  .footer-legal,
  .consent-panel-heading,
  .consent-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .consent-panel {
    padding: 16px;
  }
}

/* Compact facts band: brand green, smaller type, stable responsive columns. */
.facts-strip {
  background: var(--brand-green);
  padding: 0;
}

.facts-strip .container {
  max-width: none;
  padding: 0;
}

.facts-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--brand-green);
}

.fact {
  min-height: 188px;
  justify-content: flex-start;
  align-items: center;
  padding: 34px clamp(18px, 2.6vw, 44px);
  background: var(--brand-green);
  border: 0;
  color: white;
  text-align: center;
}

.fact:last-child {
  border: 0;
}

.fact .fact-num,
.fact .fact-num.small {
  min-height: 2.35em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: white;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: clamp(1.35rem, 1.72vw, 1.95rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

.fact .fact-label {
  max-width: 28ch;
  margin: 12px auto 0;
  color: rgb(203 214 222);
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.48;
}

@media (max-width: 900px) {
  .facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fact {
    min-height: 180px;
    padding: 30px 24px;
  }
}

@media (max-width: 520px) {
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: 0;
    padding: 28px 22px;
    border-bottom: 1px solid rgb(255 255 255 / 0.12);
  }

  .fact .fact-num,
  .fact .fact-num.small {
    min-height: 0;
  }

  .fact:last-child {
    border-bottom: 0;
  }
}

/* Keep the hero link rows visually even on desktop, tablet, and mobile. */
.hero-link-list {
  width: 100%;
  max-width: 720px;
}

.hero-link-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  column-gap: 18px;
  min-height: 66px;
  padding: 12px 24px;
  line-height: 1.18;
}

.hero-link-list span {
  width: 32px;
  height: 32px;
  justify-self: end;
  flex: none;
}

@media (max-width: 640px) {
  .hero-link-list {
    max-width: none;
  }

  .hero-link-list a {
    min-height: 64px;
    padding: 12px 14px;
    column-gap: 12px;
  }
}

/* CT to rotating 3D model visual in the dark 3D band. */
.svc3d-visual {
  gap: clamp(12px, 2vw, 24px);
}

.svc3d-card {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 0;
  border: 1px solid oklch(100% 0 0 / 0.26);
  background: oklch(100% 0 0 / 0.08);
}

.svc3d-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.svc3d-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent, oklch(5% 0.02 155 / 0.84));
  color: white;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.35);
}

.svc3d-card-ct {
  background: #070b10;
}

.svc3d-card-ct img {
  filter: grayscale(1) contrast(1.12) brightness(0.92);
}

.svc3d-card-model {
  background:
    radial-gradient(circle at 50% 46%, oklch(100% 0 0 / 0.9), oklch(88% 0.044 170 / 0.68) 58%, oklch(78% 0.05 210 / 0.36));
  perspective: 900px;
}

.svc3d-model-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.04);
}

.svc3d-model-stage {
  width: 86%;
  height: 86%;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  animation: svc3dRotate 10s linear infinite;
}

.svc3d-model-stage img {
  width: 148%;
  height: 148%;
  object-fit: contain;
  object-position: 59% 50%;
  filter: saturate(1.08) contrast(1.04) drop-shadow(0 18px 18px rgb(0 0 0 / 0.24));
  transform: translateZ(34px);
}

.svc3d-card-model::after {
  content: '';
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px solid oklch(23% 0.07 154 / 0.18);
  transform: rotateX(68deg);
}

@keyframes svc3dRotate {
  from {
    transform: rotateY(0deg) rotateX(4deg);
  }

  to {
    transform: rotateY(360deg) rotateX(4deg);
  }
}

@media (max-width: 760px) {
  .svc3d-visual {
    grid-template-columns: minmax(0, 1fr);
  }

  .svc3d-arrow {
    transform: rotate(90deg);
  }

  .svc3d-card {
    width: min(100%, 360px);
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc3d-model-stage {
    animation: none;
  }
}

/* Safari can wrap phone numbers at spaces and hyphens; keep contact numbers intact. */
.contact-info-block a[href^='tel:'],
.cta-channel[href^='tel:'],
.social-badge[href^='tel:'] {
  display: inline-block;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

/* Match the footer background to the dark green top navigation bar. */
.site-footer {
  background: var(--brand-green-deep);
  color: oklch(100% 0 0 / 0.72);
}

.site-footer .footer-bottom,
.site-footer .footer-legal {
  border-color: oklch(100% 0 0 / 0.16);
}

.site-footer .footer-legal a {
  color: oklch(100% 0 0 / 0.84);
}

/* Global heading refinement from visual review: slightly smaller and lighter. */
h1,
h2,
h3,
h4,
.hero h1,
.story-copy h2,
.feature-copy h2,
.svc3d-content h2,
.section-header h2,
.card h3,
.article-card h3,
.advantage h3,
.research-box h3,
.cta-dark h2,
.page-title-area h1,
.article-content h1,
.article-content h2,
.article-content h3,
.contact-request-copy h2,
.calendar-copy h2,
.calendar-planner h2,
.form-section h3,
.callback-result h3,
.contact-qr-card h3,
.svc3d-copy h1,
.svc3d-dark-strip h2,
.svc3d-note h3,
.contact-bar h3 {
  font-weight: 600;
}

h2,
.story-copy h2,
.feature-copy h2,
.svc3d-content h2,
.section-header h2,
.cta-dark h2,
.article-content h2,
.contact-request-copy h2,
.calendar-copy h2,
.calendar-planner h2,
.svc3d-dark-strip h2 {
  font-size: clamp(2rem, 3.58vw, 3.35rem);
}
