/* ═══════════════════════════════════════════════════════════════════════
   INTIMÉ MIAMI — COMPONENT STYLES
   Extends styles-light.css — DO NOT duplicate base tokens
   ═══════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════
   DARK MODE OVERRIDES
   All-black backgrounds, coral accents, light text.
   Logos keep their original colors (inline SVG, unaffected by CSS vars).
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* ─── Dark backgrounds ─── */
  --bg-primary: #0C100E;
  --bg-elevated: #151A17;
  --bg-surface: #1A1F1C;
  --bg-hover: #1E2420;
  --bg-muted: #232A26;

  /* ─── Warm-white override → pure white ─── */
  --warm-white: #FFFFFF;

  /* ─── White text (non-coral = pure white) ─── */
  --text-primary: #FFFFFF;
  --text-secondary: #FFFFFF;
  --text-muted: #FFFFFF;
  --text-subtle: #FFFFFF;

  /* ─── Accent text — coral, readable on dark ─── */
  --accent-text: #F8B595;
  --accent-text-large: #E8967A;

  /* ─── Seafoam → coral ─── */
  --seafoam: #F8B595;
  --seafoam-deep: #E8967A;
  --seafoam-darker: #D4805F;
  --seafoam-glow: rgba(248, 181, 149, 0.10);
  --seafoam-subtle: rgba(248, 181, 149, 0.08);

  /* ─── Solid colors — no multi-color gradients ─── */
  --gradient-brand: #E8967A;
  --gradient-brand-soft: #F8B595;
  --gradient-warm: #E8967A;

  /* ─── Shadows — deep for dark mode ─── */
  --shadow-soft: 0 4px 40px rgba(0, 0, 0, 0.4);
  --shadow-medium: 0 8px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow-seafoam: 0 8px 40px rgba(248, 181, 149, 0.10);
  --shadow-glow-coral: 0 8px 40px rgba(232, 150, 122, 0.10);
  --shadow-elevated: 0 20px 80px rgba(0, 0, 0, 0.6);

  /* ─── Borders — subtle on dark ─── */
  --border-subtle: 1px solid rgba(255, 248, 240, 0.06);
  --border-light: 1px solid rgba(255, 248, 240, 0.10);
  --border-warm: 1px solid rgba(248, 181, 149, 0.12);
}

/* ─── Selection ─── */
::selection {
  background: var(--coral-deep);
  color: var(--warm-white);
}

/* ─── Remove ALL gradient text fills — coral accent ─── */
.subtitle,
.text-gradient,
.procedure-card__category,
.testimonial__procedure {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--accent-text) !important;
  background-clip: unset !important;
  color: var(--accent-text) !important;
}

.stat__number {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--accent-text-large) !important;
  background-clip: unset !important;
  color: var(--accent-text-large) !important;
}

.testimonial__quote::before {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--accent-text-large) !important;
  background-clip: unset !important;
  color: var(--accent-text-large) !important;
}

/* ─── Links — coral ─── */
a {
  color: var(--accent-text);
}
a:hover {
  color: var(--coral);
}

/* ─── Nav dropdown ─── */
.nav__dropdown-section h4 {
  color: var(--accent-text);
}
.nav__dropdown-section a {
  color: var(--text-secondary);
}

/* ─── Buttons — coral primary on dark ─── */
.btn--primary {
  background: var(--coral-deep);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(232, 150, 122, 0.2);
}
.btn--primary:hover {
  background: var(--coral);
  box-shadow: 0 8px 30px rgba(248, 181, 149, 0.3);
}

/* ─── Hero CTA — completely self-contained, no inheritance issues ─── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(248, 181, 149, 0.6);
  border-radius: 4px;
  background: transparent;
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.btn-cta:hover {
  border-color: #F8B595;
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
  box-shadow: 0 0 25px rgba(248, 181, 149, 0.2);
}
.btn--secondary {
  border-color: rgba(255, 248, 240, 0.25);
  color: var(--warm-white);
}
.btn--secondary:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: rgba(248, 181, 149, 0.06);
}
.btn--ghost {
  color: var(--coral);
}
.btn--ghost:hover {
  color: var(--coral-deep);
}
.btn--ghost::after {
  background: var(--coral-deep);
}

/* Nav panel CTA */
.nav-panel__cta {
  background: transparent;
}
.nav-panel__cta:hover {
  background: transparent;
}

/* ─── Inset fallbacks — Safari < 14.1 ─── */
.loader,
.grain,
.nav-overlay,
.hero__video-overlay {
  top: 0; right: 0; bottom: 0; left: 0;
}

/* ─── Nav — always dark, no backdrop-filter (avoids Safari fixed+blur bug) ─── */
.nav--scrolled {
  background: rgba(12, 16, 14, 0.95);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}
.nav--scrolled .nav__link {
  color: #FFFFFF;
}
.nav--scrolled .nav__link:hover {
  color: var(--warm-white);
}

/* Logo — always show dark-bg (light-colored) variant */
.nav--scrolled .nav__logo-img--dark { opacity: 1; }
.nav--scrolled .nav__logo-img--light { opacity: 0; }

/* ─── THE TIFFANY HAMBURGER — clean lines + coral glow ─── */
.nav__toggle {
  width: 32px;
  height: 22px;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  height: 1.5px;
  width: 100%;
  background: var(--warm-white);
  left: 0;
  transition: top 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1),
              background 0.3s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1),
              width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 1px;
  transform: none;
  opacity: 1;
}
.nav__toggle span:nth-child(1) { top: 0; width: 100%; margin-left: 0; }
.nav__toggle span:nth-child(2) { top: 10px; width: 100%; margin-left: 0; }
.nav__toggle span:nth-child(3) { top: 20px; width: 100%; }

/* Hover — coral glow */
.nav__toggle:hover span {
  background: var(--coral);
  box-shadow: 0 0 8px rgba(248, 181, 149, 0.8), 0 0 20px rgba(248, 181, 149, 0.3);
}

/* Scrolled — stays white, same glow on hover */
.nav--scrolled .nav__toggle span {
  background: var(--warm-white);
}
.nav--scrolled .nav__toggle:hover span {
  background: var(--coral);
  box-shadow: 0 0 8px rgba(248, 181, 149, 0.8), 0 0 20px rgba(248, 181, 149, 0.3);
}

/* Open — Tiffany X with coral glow */
.nav--open .nav__toggle span {
  width: 100%;
  background: var(--coral);
  box-shadow: 0 0 8px rgba(248, 181, 149, 0.8);
}
.nav--open .nav__toggle span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.nav--open .nav__toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav--open .nav__toggle span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}
.nav--open.nav--scrolled .nav__toggle span {
  background: var(--coral);
  box-shadow: 0 0 8px rgba(248, 181, 149, 0.8);
}

/* ─── Hero video overlay — fade to dark ─── */
.hero__video-overlay {
  background: linear-gradient(180deg,
    rgba(12, 16, 14, 0.45) 0%,
    rgba(12, 16, 14, 0.15) 15%,
    rgba(12, 16, 14, 0.05) 50%,
    rgba(12, 16, 14, 0.6) 90%,
    rgba(12, 16, 14, 1) 100%);
}

/* ─── Hero orbs — subtle ambient glow on dark ─── */
.hero__orb--1 { background: var(--coral); opacity: 0.15; }
.hero__orb--2 { background: var(--coral); opacity: 0.10; }
.hero__orb--3 { background: var(--cream); opacity: 0.08; }

/* ─── Glass card — dark glass ─── */
.card--glass {
  background: rgba(21, 26, 23, 0.7);
}

/* ─── Card hover — coral glow ─── */
.card:hover {
  border-color: rgba(248, 181, 149, 0.15);
}

/* ─── Procedure cards — Safari fix ─── */
/* Safari fails to paint children of <a> with overflow:hidden + border-radius.
   Fix: remove overflow:hidden, clip corners on children instead. */
.procedure-card {
  display: block;
  overflow: visible;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 248, 240, 0.10);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 248, 240, 0.04);
  text-decoration: none;
  color: var(--text-primary);
}
.procedure-card:hover {
  border-color: rgba(248, 181, 149, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(248, 181, 149, 0.08);
}
.procedure-card__image {
  background: linear-gradient(135deg, var(--bg-muted), var(--bg-hover));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: 300;
  letter-spacing: var(--tracking-wide);
  min-height: 180px;
}
.procedure-card__title {
  color: var(--text-primary);
}
.procedure-card__description {
  color: var(--text-secondary);
}

/* ─── Cursor — coral dot (hide native cursor everywhere) ─── */
*, *::before, *::after {
  cursor: none !important;
}
/* Restore cursor for LiveChat widget */
#chat-widget-container, #chat-widget-container *,
[id^="livechat"], [id^="livechat"] *,
iframe[title*="chat" i], iframe[title*="Chat" i] {
  cursor: auto !important;
}

/* ─── Hover states ─── */
.breadcrumb a:hover { color: var(--accent-text); }
.faq-question:hover { color: var(--accent-text); }
.sidebar-card__links a:hover { color: var(--accent-text); }
.credential-card h3 { color: var(--accent-text); }
.expertise-card li a { color: var(--accent-text); }
.expertise-card li a:hover { color: var(--coral); }

/* ─── Decorative elements — self-drawing accent lines ─── */
.accent-line {
  background: var(--coral-deep);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.accent-line.accent-line--drawn {
  transform: scaleX(1);
}
.benefit-list__icon {
  background: var(--coral-deep);
}

/* ─── Footer separator — since page bg matches footer ─── */
.footer-full {
  border-top: 1px solid rgba(255, 248, 240, 0.06);
}

/* ─── Form select arrow — visible on dark ─── */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23F8B595' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ─── Nav panel phone — coral ─── */
.nav-panel__phone { color: var(--coral); }

/* ─── Display titles — never wrap, scale to fit ─── */
h1,
.hero__title,
.proc-hero__title,
.cta-banner h2 {
  white-space: nowrap;
}
.mobile-break { display: none; }
@media (max-width: 768px) {
  .mobile-break { display: block; }
  .cta-banner h2 { white-space: normal; }
}

/* ─── Scroll Progress Indicator ─── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: var(--coral-deep);
  z-index: 10001;
  transition: none;
}

/* ─── Page Transition Overlay ─── */
.page-transition {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: var(--bg-primary);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo);
}
.page-transition--active {
  z-index: 99999;
  opacity: 1;
  pointer-events: all;
}

/* ─── Split Text Animation ─── */
[data-split-text] .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(3deg);
  transition: opacity 0.5s var(--ease-out-expo),
              transform 0.6s var(--ease-out-expo);
}
[data-split-text].split--visible .char {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* ─── Clip-Path Image Reveal ─── */
.clip-reveal {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 1.2s var(--ease-out-expo);
}
.clip-reveal--visible {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* ─── Magnetic Button ─── */
.btn--magnetic {
  transition: all var(--duration-normal) var(--ease-out-expo),
              transform 0.15s ease-out;
}

/* ─── Sound Toggle ─── */
.sound-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  box-shadow: var(--shadow-soft);
  transition: all var(--duration-normal) var(--ease-out-expo);
}
.sound-toggle:hover {
  box-shadow: var(--shadow-medium);
  transform: scale(1.1);
}
.sound-toggle svg { width: 18px; height: 18px; color: var(--text-secondary); }
.sound-toggle--active svg { color: var(--seafoam-deep); }

/* ═══════════════════════════════════════════════════════════════════════
   NAV DROPDOWN (Desktop)
   ═══════════════════════════════════════════════════════════════════════ */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 520px;
  background: var(--bg-elevated);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease-out-expo), visibility 0.3s;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-sm);
  z-index: 1100;
}
/* Invisible bridge so cursor doesn't lose hover crossing the gap */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-section h4 {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}
.nav__dropdown-section a {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding: 6px 0;
  transition: color 0.2s, padding-left 0.3s var(--ease-out-expo);
}
.nav__dropdown-section a:hover {
  color: var(--text-primary);
  padding-left: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════════════════ */
.breadcrumb {
  display: none;
}
.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--seafoam-deep); }
.breadcrumb .separator {
  margin: 0 0.5rem;
  color: var(--text-subtle);
}
.breadcrumb .current { color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════════════════
   PROCEDURE PAGE HERO (Dark)
   ═══════════════════════════════════════════════════════════════════════ */
.proc-hero {
  position: relative;
  padding: calc(var(--space-2xl) + 80px) 0 var(--space-xl);
  background: var(--dark);
  overflow: hidden;
  text-align: center;
}
@media (max-width: 768px) {
  .proc-hero {
    padding: calc(var(--space-lg) + 60px) 0 var(--space-md);
  }
}
.proc-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}
.proc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 20px;
  background: rgba(248, 181, 149, 0.1);
  border: 1px solid rgba(248, 181, 149, 0.25);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: var(--space-md);
}
.proc-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--warm-white);
  letter-spacing: clamp(0.05em, 1.5vw, 0.15em);
  text-transform: lowercase;
  margin-bottom: var(--space-md);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.proc-hero__desc {
  font-size: var(--text-lg);
  color: #FFFFFF;
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  margin-left: auto;
  margin-right: auto;
}
.proc-hero__stats {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
  justify-content: center;
}
.proc-hero__stat {
  text-align: center;
}
.proc-hero__stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--seafoam);
}
.proc-hero__stat-label {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  color: #FFFFFF;
  text-transform: uppercase;
}
.proc-hero__cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}
.proc-hero .btn--ghost {
  color: var(--seafoam);
}
.proc-hero .btn--ghost:hover { color: var(--coral); }
.proc-hero .btn--ghost::after { background: var(--seafoam); }

/* ═══════════════════════════════════════════════════════════════════════
   PROCEDURE TWO-COLUMN LAYOUT
   ═══════════════════════════════════════════════════════════════════════ */
.proc-layout {
  padding: var(--space-xl) 0;
}
.proc-main { min-width: 0; }
.proc-main h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  margin-top: var(--space-xl);
}
.proc-main h2:first-child { margin-top: 0; }
.proc-main h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-lg);
}
.proc-main p {
  margin-bottom: var(--space-sm);
}
.proc-main p:last-child {
  margin-bottom: var(--space-lg);
}

/* ─── Sticky Sidebar ─── */
.proc-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(152,221,200,0.15) transparent;
}
.proc-sidebar::-webkit-scrollbar { width: 3px; }
.proc-sidebar::-webkit-scrollbar-thumb { background: rgba(152,221,200,0.15); border-radius: 3px; }

/* ─── Sidebar Cards ─── */
.sidebar-card {
  background: var(--bg-elevated);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}
.sidebar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(152, 221, 202, 0.15);
  border-color: var(--seafoam);
}
.sidebar-card:hover h4 {
  color: var(--seafoam-deep);
}
.sidebar-card h4 {
  transition: color 0.3s ease;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: var(--border-subtle);
}
.sidebar-card__stat {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: var(--text-sm);
  border-bottom: 1px solid rgba(255, 248, 240, 0.04);
}
.sidebar-card__stat:last-child { border-bottom: none; }
.sidebar-card__stat-label { color: var(--text-muted); }
.sidebar-card__stat-value {
  font-weight: 400;
  color: var(--text-primary);
}
.sidebar-card .btn {
  width: 100%;
  margin-top: var(--space-sm);
}
.sidebar-card__links {
  list-style: none;
}
.sidebar-card__links li { padding: 6px 0; }
.sidebar-card__links a {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: color 0.2s, padding-left 0.3s var(--ease-out-expo);
}
.sidebar-card__links a:hover {
  color: var(--seafoam-deep);
  padding-left: 6px;
}

@media (max-width: 1024px) {
  .proc-sidebar {
    position: static;
    order: -1;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   BENEFIT LIST
   ═══════════════════════════════════════════════════════════════════════ */
.benefit-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-sm);
}
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  transition: transform 0.3s var(--ease-out-expo);
}
.benefit-list li:hover {
  transform: translateX(4px);
}
.benefit-list__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  font-size: 1rem;
}
.benefit-list__text h4 {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 2px;
  line-height: 1.4;
}
.benefit-list__text p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════════════ */
.faq-section {
  padding: var(--space-xl) 0;
  background: var(--bg-surface);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: var(--border-subtle);
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
  border-left: 2px solid transparent;
  transition: background 0.3s ease,
              border-color 0.3s ease,
              transform 0.3s ease,
              box-shadow 0.3s ease;
}
.faq-item:hover {
  background: rgba(152, 221, 200, 0.03);
  border-left-color: var(--seafoam);
  transform: translateX(4px);
  box-shadow: -2px 0 8px rgba(152, 221, 200, 0.1);
}
.faq-item:hover .faq-question {
  color: var(--seafoam);
}
.faq-item:hover .faq-question__icon {
  border-color: var(--seafoam);
  box-shadow: 0 0 8px rgba(152, 221, 200, 0.2);
}
.faq-item:first-child {
  border-top: var(--border-subtle);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--seafoam-deep); }
.faq-question__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out-expo), background 0.3s;
  margin-left: var(--space-sm);
}
.faq-question__icon svg {
  width: 14px;
  height: 14px;
  color: var(--seafoam-deep);
}
.faq-item--open .faq-question__icon {
  transform: rotate(45deg);
  background: var(--seafoam-subtle);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo),
              padding 0.5s var(--ease-out-expo);
}
.faq-answer__inner {
  padding-bottom: var(--space-md);
}
.faq-answer p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════════════
   CONTACT / CONSULTATION FORM
   ═══════════════════════════════════════════════════════════════════════ */
.form-section {
  padding: var(--space-xl) 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}
.form-group {
  margin-bottom: var(--space-md);
}
.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--text-primary);
  background: var(--bg-elevated);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--seafoam-deep);
  box-shadow: 0 0 0 3px var(--seafoam-glow);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23F8B595' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}
.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  accent-color: var(--seafoam-deep);
}
.form-checkbox label {
  text-transform: none;
  letter-spacing: normal;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}
.form-disclaimer {
  font-size: var(--text-xs);
  color: var(--text-subtle);
  margin-top: var(--space-sm);
  text-align: center;
}

/* ─── Contact Card ─── */
.contact-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 248, 240, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--seafoam);
  box-shadow: 0 8px 25px rgba(152, 221, 200, 0.1), 0 0 12px rgba(152, 221, 200, 0.06);
}
.contact-card:hover h3 {
  color: var(--seafoam);
}
.contact-card:hover .contact-card__icon {
  background: rgba(152, 221, 200, 0.15);
  transform: scale(1.1);
}
.contact-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  transition: color 0.4s ease;
}
.contact-card__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
}
.contact-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--seafoam-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease, transform 0.4s ease;
  color: var(--seafoam-deep);
}
.contact-card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
.contact-card__text strong {
  display: block;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   FULL FOOTER (Multi-Column, Dark)
   ═══════════════════════════════════════════════════════════════════════ */
.footer-full {
  background: var(--dark);
  padding: var(--space-xl) 0 var(--space-md);
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 248, 240, 0.06);
}
.footer-full a {
  color: #FFFFFF;
  transition: color 0.2s;
}
.footer-full a:hover { color: var(--seafoam); }

.footer-full__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 248, 240, 0.08);
}
.footer-full__logo {
  display: block;
  margin-bottom: var(--space-sm);
}
.footer-full__logo-img {
  height: 80px;
  width: auto;
}
.footer-full__brand-desc {
  font-size: var(--text-sm);
  color: #FFFFFF;
  max-width: 300px;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.footer-full__address {
  font-size: var(--text-sm);
  color: #FFFFFF;
  font-style: normal;
  line-height: 1.8;
}
.footer-full__col h4 {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: var(--space-md);
}
.footer-full__col ul {
  list-style: none;
  padding: 0;
}
.footer-full__col ul li {
  padding: 4px 0;
}
.footer-full__col ul a {
  font-size: var(--text-sm);
}
.footer-full__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer-full__copy {
  font-size: var(--text-xs);
  color: #FFFFFF;
}
.footer-full__legal {
  display: flex;
  gap: var(--space-md);
}
.footer-full__legal a {
  font-size: var(--text-xs);
  color: #FFFFFF;
}
.footer-full__legal a:hover { color: #FFFFFF; }

@media (max-width: 1024px) {
  .footer-full__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}
@media (max-width: 600px) {
  .footer-full__grid { grid-template-columns: 1fr; }
  .footer-full__bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════════
   FINANCING CARDS
   ═══════════════════════════════════════════════════════════════════════ */
.financing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.financing-card {
  background: var(--bg-elevated);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}
.financing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow-seafoam);
}
.financing-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--seafoam-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
  color: var(--seafoam-deep);
}
.financing-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}
.financing-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0 auto;
}

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

/* ═══════════════════════════════════════════════════════════════════════
   PROCEDURES LANDING GRID
   ═══════════════════════════════════════════════════════════════════════ */
.proc-category {
  margin-bottom: var(--space-xl);
}
.proc-category__title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.proc-category__title h2 {
  font-size: var(--text-2xl);
}
.proc-category__title .accent-line {
  flex-grow: 1;
  height: 1px;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   PAGE HERO (Support Pages)
   ═══════════════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: calc(var(--space-2xl) + 80px) 0 var(--space-xl);
  background: var(--dark);
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}
.page-hero__subtitle {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: var(--space-md);
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 5vw, 6rem);
  font-weight: 300;
  color: var(--warm-white);
  letter-spacing: clamp(0.02em, 1vw, 0.22em);
  text-transform: lowercase;
  margin-bottom: var(--space-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.page-hero__desc {
  font-size: var(--text-lg);
  color: #FFFFFF;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════════════
   CTA BANNER (Full Width)
   ═══════════════════════════════════════════════════════════════════════ */
.cta-banner {
  padding: var(--space-xl) 0;
  background: var(--dark-soft);
  text-align: center;
}
.cta-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta-banner .reveal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta-banner h2 {
  font-size: var(--text-3xl);
  color: var(--warm-white);
  margin-bottom: var(--space-sm);
}
.cta-banner p {
  color: #FFFFFF;
  max-width: 500px;
  margin: 0 auto var(--space-md);
}
.cta-banner .btn--primary {
  background: var(--warm-white);
  color: var(--dark);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.cta-banner .btn--primary:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.cta-banner .btn--ghost {
  color: var(--warm-white);
}
.cta-banner .btn--ghost::after {
  background: var(--warm-white);
}

/* ═══════════════════════════════════════════════════════════════════════
   FEATURES / REASONS GRID
   ═══════════════════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.feature-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 248, 240, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: transform 0.4s var(--ease-out-expo),
              box-shadow 0.4s ease,
              border-color 0.4s ease,
              background 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--seafoam);
  box-shadow: 0 8px 30px rgba(152, 221, 200, 0.12), 0 0 15px rgba(152, 221, 200, 0.08);
  background: rgba(152, 221, 200, 0.03);
}
.feature-card:hover h3 {
  color: var(--seafoam);
}
.feature-card:hover .feature-card__icon svg {
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(152, 221, 200, 0.3));
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--seafoam-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--seafoam-deep);
}
.feature-card__icon svg {
  transition: transform 0.4s ease, filter 0.4s ease;
}
.feature-card h3 {
  font-family: var(--font-sans);
  transition: color 0.4s ease;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
  letter-spacing: 0;
}
.feature-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

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

/* ═══════════════════════════════════════════════════════════════════════
   TWO-COLUMN CONTENT SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse { direction: ltr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   CREDENTIALS GRID
   ═══════════════════════════════════════════════════════════════════════ */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.credential-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 248, 240, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background 0.4s ease;
}
.credential-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--seafoam);
  box-shadow: 0 8px 30px rgba(152, 221, 200, 0.12), 0 0 15px rgba(152, 221, 200, 0.08);
  background: rgba(152, 221, 200, 0.04);
}
.credential-card:hover h3 {
  color: var(--seafoam);
}
.credential-card:hover li strong {
  color: var(--warm-white);
}
.credential-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-sm);
}
.credential-card__logo svg {
  filter: drop-shadow(0 0 6px rgba(152, 221, 200, 0.15));
  transition: transform 0.4s ease, filter 0.4s ease;
}
.credential-card:hover .credential-card__logo svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(152, 221, 200, 0.3));
}
.credential-card h3 {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: var(--border-subtle);
}
.credential-card ul {
  list-style: none;
  padding: 0;
}
.credential-card li {
  padding: 6px 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 248, 240, 0.04);
}
.credential-card li:last-child { border-bottom: none; }
.credential-card li strong {
  display: block;
  font-weight: 400;
  color: var(--text-primary);
}
.credential-card li span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

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

/* ═══════════════════════════════════════════════════════════════════════
   APPROACH STEPS
   ═══════════════════════════════════════════════════════════════════════ */
.approach-steps {
  max-width: 800px;
  margin: 0 auto;
}
.approach-step:last-child { border-bottom: none; }
.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--seafoam-subtle);
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--seafoam-deep);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background 0.4s ease;
}
.approach-step {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: var(--border-subtle);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.approach-step:hover {
  transform: translateX(8px);
}
.approach-step:hover .step-number {
  transform: scale(1.15);
  border-color: var(--seafoam);
  box-shadow: 0 0 16px rgba(152, 221, 200, 0.3), inset 0 0 8px rgba(152, 221, 200, 0.1);
  background: rgba(152, 221, 200, 0.15);
}
.approach-step:hover .step-content h3 {
  color: var(--seafoam);
}
.step-content h3 {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  letter-spacing: 0;
  transition: color 0.4s ease;
}
.step-content p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
  transition: color 0.4s ease;
}
.approach-step:hover .step-content p {
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════════════
   EXPERTISE GRID
   ═══════════════════════════════════════════════════════════════════════ */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.expertise-card {
  background: var(--bg-elevated);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}
.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-seafoam);
}
.expertise-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}
.expertise-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.expertise-card ul {
  list-style: none;
  padding: 0;
}
.expertise-card li { padding: 4px 0; }
.expertise-card li a {
  font-size: var(--text-sm);
  color: var(--accent-text);
}
.expertise-card li a:hover { color: var(--coral-deep); }

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

/* ═══════════════════════════════════════════════════════════════════════
   INTERNATIONAL SERVICES
   ═══════════════════════════════════════════════════════════════════════ */
.intl-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.intl-service {
  padding: var(--space-sm);
}
.intl-service h4 {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: 0;
}
.intl-service p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   PRIVACY ASSURANCE
   ═══════════════════════════════════════════════════════════════════════ */
.privacy-assurance {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--seafoam-subtle);
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
}
.privacy-assurance svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--seafoam-deep);
}
.privacy-assurance p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   MOBILE NAV ENHANCEMENTS (Sub-links)
   ═══════════════════════════════════════════════════════════════════════ */
.nav-panel__sublinks {
  list-style: none;
  padding: 0 0 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}
.nav-panel__sublinks--open {
  max-height: 500px;
}
.nav-panel__sublinks a {
  display: block;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: #FFFFFF;
  padding: 8px 0;
}
.nav-panel__sublinks a:hover { color: var(--seafoam); }

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE TITLES — Fit on one line
   ═══════════════════════════════════════════════════════════════════════ */

/* Homepage hero title */
.hero__title {
  font-size: clamp(2.5rem, 6vw, 9rem);
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    letter-spacing: 0.06em;
  }
  .proc-hero__title,
  .page-hero__title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    letter-spacing: 0.02em;
  }
  h2 {
    font-size: var(--text-2xl);
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
    letter-spacing: 0.04em;
  }
  .proc-hero__title,
  .page-hero__title {
    font-size: clamp(1.3rem, 5vw, 2rem);
    letter-spacing: 0.01em;
  }
}

/* ─── Reveal fix — remove stacking context after animation (Safari grid bug) ─── */
.reveal--visible {
  transform: none;
}

/* Safari-safe reveal: opacity only, no transform (for grid parents) */
.reveal.reveal--fade {
  transform: none;
}

/* ═══════════════════════════════════════════════════════════════════════
   BUGATTI-INSPIRED: CINEMATIC PROCEDURE CARDS
   ═══════════════════════════════════════════════════════════════════════ */

/* Cinematic image area — dark, moody, high-contrast */
.procedure-card__image {
  position: relative;
  overflow: hidden;
}
.procedure-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(12,16,14,0.6) 100%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.procedure-card__image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(248,181,149,0.3), transparent);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.procedure-card:hover .procedure-card__image::before {
  opacity: 0.3;
}
.procedure-card:hover .procedure-card__image::after {
  opacity: 1;
}

/* Subtle scale on hover — Bugatti zoom effect */
.procedure-card {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.6s ease,
              box-shadow 0.6s ease;
}
.procedure-card:hover {
  transform: translateY(-4px);
}

/* ═══════════════════════════════════════════════════════════════════════
   BUGATTI-INSPIRED: HORIZONTAL TEXT MARQUEE
   ═══════════════════════════════════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255,248,240,0.06);
  border-bottom: 1px solid rgba(255,248,240,0.06);
  position: relative;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-primary), transparent);
}
.marquee__track {
  display: inline-flex;
  animation: marquee-scroll 30s linear infinite;
}
.marquee__text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-subtle);
  padding: 0 2rem;
}
.marquee__separator {
  color: var(--accent-text);
  padding: 0 1rem;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  opacity: 0.5;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════════
   BUGATTI-INSPIRED: REVERSE MARQUEE (above footer)
   ═══════════════════════════════════════════════════════════════════════ */
.marquee--reverse .marquee__track {
  animation: marquee-scroll-reverse 40s linear infinite;
}
.marquee--reverse .marquee__text {
  color: #FFFFFF;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  letter-spacing: 0.35em;
}
@keyframes marquee-scroll-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ═══════════════════════════════════════════════════════════════════════
   BUGATTI-INSPIRED: LOADER PROGRESS RING
   ═══════════════════════════════════════════════════════════════════════ */
.loader__ring {
  position: absolute;
  width: clamp(260px, 40vw, 380px);
  height: clamp(260px, 40vw, 380px);
  border-radius: 50%;
  border: 1px solid rgba(248, 181, 149, 0.08);
}
.loader__ring-progress {
  position: absolute;
  width: clamp(260px, 40vw, 380px);
  height: clamp(260px, 40vw, 380px);
}
.loader__ring-progress circle {
  fill: none;
  stroke: var(--coral-deep, #E8967A);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: loader-ring-draw 2.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
  transform: rotate(-90deg);
  transform-origin: center;
}
@keyframes loader-ring-draw {
  to { stroke-dashoffset: 0; }
}

/* Subtle pulse on the ring after it draws */
.loader__ring-glow {
  position: absolute;
  width: clamp(260px, 40vw, 380px);
  height: clamp(260px, 40vw, 380px);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(248, 181, 149, 0.08);
  opacity: 0;
  animation: loader-glow-pulse 2s ease-in-out 2s infinite alternate;
}
@keyframes loader-glow-pulse {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════════════
   BUGATTI-INSPIRED: STAGGERED CARD ENTRANCE
   ═══════════════════════════════════════════════════════════════════════ */
.procedure-card.stagger-card {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.procedure-card.stagger-card.stagger--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════════════
   BUGATTI-INSPIRED: CINEMATIC IMAGE SHOWCASE
   Contained zoom, vignette, gradient overlay, clip-path reveal, caption reveal
   ═══════════════════════════════════════════════════════════════════════ */
.image-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.image-showcase__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 3/4;
  min-height: auto;
  cursor: pointer;
  /* Clip-path reveal on scroll */
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.image-showcase__item.showcase--visible {
  clip-path: inset(0 0% 0 0);
}
/* Stagger second image */
.image-showcase__item:nth-child(2) {
  transition-delay: 0.2s;
}

.image-showcase__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.8s ease;
  filter: brightness(0.92) contrast(1.05);
  will-change: transform;
}
.image-showcase__item:hover img {
  transform: scale(1.05);
  filter: brightness(1.02) contrast(1.08);
}

/* Cinematic vignette */
.image-showcase__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(12, 16, 14, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.image-showcase__item:hover::before {
  opacity: 0.6;
}

/* Bottom gradient for caption */
.image-showcase__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(12, 16, 14, 0.9) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.6s ease;
  opacity: 1;
}
.image-showcase__item:hover::after {
  opacity: 1;
}

/* Caption - slides up on hover */
.image-showcase__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg) var(--space-md);
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.6s ease;
}
.image-showcase__item:hover .image-showcase__caption {
  transform: translateY(0);
  opacity: 1;
}
.image-showcase__caption h4 {
  font-size: var(--text-lg);
  color: var(--warm-white);
  margin-bottom: 4px;
}
.image-showcase__caption p {
  font-size: var(--text-sm);
  color: #FFFFFF;
  max-width: none;
}

/* Thin accent line under caption title */
.image-showcase__caption::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--seafoam), var(--coral));
  margin-bottom: 12px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}
.image-showcase__item:hover .image-showcase__caption::before {
  transform: scaleX(1);
}

/* Single-image showcase — full-width cinematic */
.image-showcase--single {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}
.image-showcase--single .image-showcase__item {
  min-height: 45vh;
  /* No clip-path slide-in */
  clip-path: none;
}
.image-showcase--single .image-showcase__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .image-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .image-showcase__item {
    min-height: auto !important;
    aspect-ratio: 3/4;
    position: relative;
  }
  .image-showcase__item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* Show captions on mobile (no hover) — keep overlaid on image */
  .image-showcase__caption {
    position: absolute;
    transform: translateY(0);
    opacity: 1;
  }
  .image-showcase__caption::before {
    transform: scaleX(1);
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   PROCEDURE SUB-NAVIGATION (proc-subnav)
   Sticky horizontal nav linking Himplant section pages.
   ═══════════════════════════════════════════════════════════════════════ */

.proc-subnav {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle, rgba(255,248,240,0.08));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.proc-subnav__inner {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.proc-subnav__inner::-webkit-scrollbar {
  display: none;
}
.proc-subnav__link {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: var(--text-sm);
  font-family: var(--font-body, 'DM Sans', sans-serif);
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.3s ease, background 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.proc-subnav__link:hover {
  color: var(--text-primary);
  background: var(--bg-hover);
}
.proc-subnav__link--active {
  color: var(--accent-text);
  background: var(--seafoam-subtle);
}

@media (max-width: 768px) {
  .proc-subnav {
    top: 60px;
  }
  .proc-subnav__inner {
    padding: var(--space-xs) 0;
    gap: 4px;
  }
  .proc-subnav__link {
    font-size: 13px;
    padding: 6px 12px;
  }
}


/* ═══════════════════════════════════════════════════════════════════════
   RECOVERY TIMELINE
   Vertical gradient line with circle markers for recovery page.
   ═══════════════════════════════════════════════════════════════════════ */

.recovery-timeline {
  position: relative;
  padding-left: 40px;
}
.recovery-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--seafoam), var(--seafoam-deep), var(--bg-muted));
}
.recovery-timeline__item {
  position: relative;
  padding-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.recovery-timeline__item.timeline--visible {
  opacity: 1;
  transform: translateY(0);
}
.recovery-timeline__marker {
  position: absolute;
  left: -33px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--seafoam);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 2px var(--seafoam-deep);
  z-index: 2;
}
.recovery-timeline__period {
  font-size: var(--text-sm);
  color: var(--accent-text);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.recovery-timeline__title {
  font-size: var(--text-lg);
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: var(--font-serif, 'Josefin Sans', sans-serif);
}
.recovery-timeline__desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .recovery-timeline {
    padding-left: 32px;
  }
  .recovery-timeline::before {
    left: 11px;
  }
  .recovery-timeline__marker {
    left: -28px;
    width: 12px;
    height: 12px;
  }
}


/* ═══════════════════════════════════════════════════════════════════════
   COMPARISON TABLE
   Responsive table: Himplant vs alternatives.
   Horizontal scroll on mobile.
   ═══════════════════════════════════════════════════════════════════════ */

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid var(--border-subtle, rgba(255,248,240,0.08));
}
.comparison-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.comparison-table thead {
  background: var(--bg-surface);
}
.comparison-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-subtle, rgba(255,248,240,0.08));
}
.comparison-table th:first-child {
  color: var(--accent-text);
}
.comparison-table td {
  padding: 14px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle, rgba(255,248,240,0.06));
  vertical-align: top;
}
.comparison-table tbody tr:hover {
  background: var(--bg-hover);
}
.comparison-table td:first-child {
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
}
/* Highlight Himplant column */
.comparison-table .col-highlight {
  background: var(--seafoam-subtle);
}
.comparison-table thead .col-highlight {
  color: var(--accent-text);
  font-weight: 600;
}
.comparison-table .check-yes {
  color: var(--seafoam);
}
.comparison-table .check-no {
  color: var(--text-subtle);
}


/* ═══════════════════════════════════════════════════════════════════════
   VIDEO SHOWCASE
   Full-width cinematic video with play overlay for procedure pages.
   ═══════════════════════════════════════════════════════════════════════ */

.video-showcase {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-surface);
  aspect-ratio: 16 / 9;
}
.video-showcase video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-showcase__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 16, 14, 0.35);
  cursor: pointer;
  transition: background 0.4s ease;
  z-index: 2;
}
.video-showcase__overlay:hover {
  background: rgba(12, 16, 14, 0.2);
}
.video-showcase__overlay.video--playing {
  background: transparent;
  pointer-events: none;
}
.video-showcase__play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(248, 181, 149, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(248, 181, 149, 0.25);
}
.video-showcase__overlay:hover .video-showcase__play-btn {
  transform: scale(1.08);
  box-shadow: 0 12px 48px rgba(248, 181, 149, 0.35);
}
.video-showcase__overlay.video--playing .video-showcase__play-btn {
  opacity: 0;
  transform: scale(0.8);
}
.video-showcase__play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--bg-primary);
  margin-left: 3px; /* optical center for play triangle */
}

@media (max-width: 768px) {
  .video-showcase {
    border-radius: 8px;
  }
  .video-showcase__play-btn {
    width: 56px;
    height: 56px;
  }
  .video-showcase__play-btn svg {
    width: 22px;
    height: 22px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .scroll-progress { transition: none; }
  [data-split-text] .char { transition: none; opacity: 1; transform: none; }
  .clip-reveal { transition: none; clip-path: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .faq-answer { transition: none; }
  .page-transition { transition: none; }
  .marquee__track { animation: none; }
  .procedure-card.stagger-card { opacity: 1; transform: none; transition: none; }
  .accent-line { transform: scaleX(1); transition: none; }
  .loader__ring-progress circle { animation: none; stroke-dashoffset: 0; }
  .loader__ring-glow { animation: none; }
  .image-showcase__item { clip-path: none; transition: none; }
  .image-showcase__item img { transition: none; }
  .image-showcase__caption { transform: none; opacity: 1; transition: none; }
  .image-showcase__caption::before { transform: scaleX(1); transition: none; }
  .recovery-timeline__item { opacity: 1; transform: none; transition: none; }
  .video-showcase__overlay { transition: none; }
  .video-showcase__play-btn { transition: none; }
  .proc-subnav__link { transition: none; }
  video[autoplay] { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   ACCESSIBILITY ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════════════ */

/* Focus styles */
:focus-visible {
  outline: 2px solid #98DDC8;
  outline-offset: 3px;
}
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid #98DDC8;
  outline-offset: 3px;
}
.btn-cta:focus-visible, .btn--ghost:focus-visible, .nav__link:focus-visible {
  outline: 2px solid #98DDC8;
  outline-offset: 4px;
  box-shadow: 0 0 12px rgba(152, 221, 200, 0.2);
}

/* Skip navigation link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--seafoam);
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--seafoam);
  border-radius: 4px;
  z-index: 99999;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════
   TYPOGRAPHY POLISH
   ═══════════════════════════════════════════════════════════════════════ */

/* Body text link underlines */
.proc-main a, .step-content a, article a {
  text-decoration-color: rgba(248, 181, 149, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s ease;
}
.proc-main a:hover, .step-content a:hover, article a:hover {
  text-decoration-color: rgba(248, 181, 149, 0.8);
}

/* Heading spacing after paragraphs */
p + h2 { margin-top: var(--space-xl); }
p + h3 { margin-top: var(--space-lg); }

/* Global blockquote */
blockquote {
  border-left: 3px solid var(--seafoam-deep);
  padding-left: var(--space-md);
  font-style: italic;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════════════
   COMPREHENSIVE REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .split--visible .char { opacity: 1; transform: none; }
  .hero__subtitle, .hero__title, .hero__description, .hero__cta {
    opacity: 1; transform: none;
  }
  .clock-hand-hour, .clock-hand-min { animation: none !important; }
  .heartbeat-line { animation: none !important; }
  .globe-spin { animation: none !important; }
  .shield-breathe, .shield-check { animation: none !important; }
  .stat-icon svg { animation: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════════
   HIMPLANT PAGE — RESPONSIVE LAYOUTS
   ═══════════════════════════════════════════════════════════════════════ */

/* Prevent horizontal overflow on all page content */
.proc-main { min-width: 0; overflow: hidden; }
.proc-main img { max-width: 100%; height: auto; }

/* Page layout grid (content + sidebar) */
.proc-layout__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-xl);
}
@media (max-width: 1024px) {
  .proc-layout__grid {
    grid-template-columns: 1fr;
  }
}

/* Device image + text layout */
.himplant-device-layout {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-md);
}
.himplant-device-layout__text { flex: 1; min-width: 0; }
.himplant-device-layout__image { flex-shrink: 0; width: 280px; }

/* Dr. Robbins portrait + intro text */
.dr-robbins-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-md);
}
.dr-robbins-intro__photo {
  width: 400px;
  max-width: 100%;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
  margin-bottom: var(--space-md);
  transition: transform 0.6s ease, filter 0.6s ease, box-shadow 0.6s ease;
  filter: brightness(0.95) contrast(1.05);
  cursor: pointer;
}
.dr-robbins-intro__photo:hover {
  transform: scale(1.03);
  filter: brightness(1.02) contrast(1.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15), 0 0 20px rgba(152,221,200,0.1);
}

/* Explore section 2x2 grid */
.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

/* Tablet breakpoint */
@media (max-width: 1024px) {
  .himplant-device-layout__image {
    width: 220px;
  }
  .dr-robbins-intro__photo {
    width: 320px;
  }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  .himplant-device-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .himplant-device-layout__image {
    width: 200px;
    order: -1;
  }

  .dr-robbins-intro__photo {
    width: 280px;
  }

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

  .benefit-list li {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .himplant-device-layout__image {
    width: 160px;
  }
  .dr-robbins-intro__photo {
    width: 240px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   ED TREATMENT ONLINE PAGE
   ═══════════════════════════════════════════════════════════════════════ */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
.med-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 768px) {
  .how-it-works-grid {
    grid-template-columns: 1fr 1fr;
  }
  .med-grid {
    grid-template-columns: 1fr;
  }
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .injectable-layout {
    flex-direction: column;
  }
  .injectable-layout > div:last-child {
    width: 100% !important;
  }
}
@media (max-width: 480px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
}
