/* ═══════════════════════════════════════════════════════
   DIVINE CARE — Shared Stylesheet
   TMJ, Orofacial Pain & Sleep Health Centre, Pune
   Exact values matched from Lovable source CSS
   ═══════════════════════════════════════════════════════ */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap");

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --background: #ffffff;
  --foreground: #252d3d;
  --ink: #1a2030;
  --primary: #1e4d8c;
  --primary-fg: #fafbfd;
  --primary-hover: #1a4278;
  --secondary: #f2f5fa;
  --secondary-fg: #2e3d5c;
  --muted: #f4f5f8;
  --muted-fg: #6b7280;
  --accent: #e2ebf7;
  --accent-fg: #2a3d66;
  --soft: #f0f4fa;
  --mist: #f8fafc;
  --border: #e4e8ef;
  --input-bg: #eceef3;
  --ring: #3b6fc4;
  --gold: #c49a3c;
  --gold-light: #fdf6e3;
  --teal: #1a7a6e;
  --teal-light: #e6f4f2;
  --white: #ffffff;

  /* aliases */
  --navy: #1a2030;
  --navy-mid: #1e2d4a;
  --blue: #1e4d8c;
  --blue-light: #3b6fc4;
  --blue-pale: #6ba8e0;
  --sky: #e2ebf7;
  --sky-mid: #d0e0f5;
  --cream: #f8fafc;
  --gray-50: #f8f9fa;
  --gray-100: #f0f2f5;
  --gray-200: #e4e8ef;
  --gray-300: #c8d0dc;
  --gray-400: #8d9aab;
  --gray-500: #6b7280;
  --gray-600: #4a5568;
  --gray-700: #2d3748;
  --gray-800: #1a2030;

  --font-display: "Playfair Display", ui-serif, Georgia, serif;
    --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;

  /* Radius — base 14px */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-2xl: 22px;
  --radius-3xl: 30px; /* pill buttons */
  --radius-full: 9999px;

  /* Shadows */
  --shadow-soft:
    0 1px 2px rgba(37, 77, 160, 0.04), 0 8px 24px rgba(37, 77, 160, 0.06);
  --shadow-elevated:
    0 4px 12px rgba(30, 61, 128, 0.08), 0 24px 60px rgba(30, 61, 128, 0.1);
  --shadow-ring: 0 0 0 1px rgba(30, 61, 128, 0.08);
  --shadow-xs: 0 1px 3px rgba(26, 32, 48, 0.06);
  --shadow-sm:
    0 2px 8px rgba(26, 32, 48, 0.07), 0 1px 3px rgba(26, 32, 48, 0.04);
  --shadow-md:
    0 4px 20px rgba(26, 32, 48, 0.1), 0 1px 4px rgba(26, 32, 48, 0.05);
  --shadow-lg:
    0 8px 40px rgba(26, 32, 48, 0.13), 0 2px 8px rgba(26, 32, 48, 0.06);
  --shadow-xl:
    0 20px 60px rgba(26, 32, 48, 0.16), 0 4px 16px rgba(26, 32, 48, 0.07);

  /* Hero gradient — exact from Lovable source */
  --gradient-hero:
    radial-gradient(80% 60% at 80% 0%, #deeaf8 0%, transparent 60%),
    radial-gradient(60% 50% at 0% 100%, #e8f0f8 0%, transparent 60%);

  --transition: 0.22s ease;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-optical-sizing: none;
  font-variant-alternates: normal; /* ← add this */ 
}

/* ── HERO H1 — Inter for body, Playfair only for em ── */
h1.hero-h1 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2.5rem, 4.8vw, 3.8rem);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
}

h1.hero-h1 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--blue);
  font-weight: 500;
}

/* ── TYPOGRAPHY ── */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  font-optical-sizing: auto;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow.light {
  color: rgba(255, 255, 255, 0.5);
}
.eyebrow.light::before {
  background: rgba(255, 255, 255, 0.35);
}

/* ── LAYOUT ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
}
.page-section {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}
.page-section.sm {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
}

.section-head {
  margin-bottom: 3rem;
}
.section-head .eyebrow {
  margin-bottom: 1rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
.section-head p {
  font-size: 1rem;
  color: var(--muted-fg);
  max-width: 580px;
  line-height: 1.75;
}
.section-head.centered {
  text-align: center;
}
.section-head.centered p {
  margin: 0 auto;
}
.section-head.light h2 {
  color: var(--white);
}
.section-head.light p {
  color: rgba(255, 255, 255, 0.6);
}

/* ── BUTTONS — pill shape ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-3xl);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  line-height: 1;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 12px 26px;
  font-size: 14px;
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(30, 77, 140, 0.3);
}
.btn-primary.lg {
  padding: 14px 32px;
  font-size: 15px;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  padding: 11px 24px;
  font-size: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-3xl);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--accent);
}
.btn-outline-white {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  padding: 11px 24px;
  font-size: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-3xl);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 10px 0;
  font-size: 14px;
  border: none;
}
.btn-ghost:hover {
  color: var(--ink);
}
.btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--gradient-hero), var(--background);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem)
    clamp(3rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero .eyebrow {
  margin-bottom: 1.2rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
  max-width: 780px;
  font-optical-sizing: auto;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--primary);
}
.page-hero .lead {
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 2.2rem;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition:
    box-shadow var(--transition),
    border-color var(--transition),
    transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-elevated);
  border-color: rgba(30, 77, 140, 0.14);
}
.card.lift:hover {
  transform: translateY(-3px);
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.card-icon svg {
  width: 21px;
  height: 21px;
}
.card-icon.sky {
  background: var(--accent);
}
.card-icon.sky svg {
  stroke: var(--primary);
}
.card-icon.teal {
  background: var(--teal-light);
}
.card-icon.teal svg {
  stroke: var(--teal);
}
.card-icon.gold {
  background: var(--gold-light);
}
.card-icon.gold svg {
  stroke: var(--gold);
}
.card-icon.navy {
  background: var(--secondary);
}
.card-icon.navy svg {
  stroke: var(--ink);
}
.card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.45rem;
  line-height: 1.3;
  font-family: var(--font-body);
}
.card p {
  font-size: 14px;
  color: var(--muted-fg);
  line-height: 1.7;
}

/* ── TAGS ── */
.tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
}
.tag.blue {
  color: var(--primary);
  background: var(--accent);
  border: 1px solid rgba(30, 77, 140, 0.14);
}
.tag.teal {
  color: var(--teal);
  background: var(--teal-light);
  border: 1px solid rgba(26, 122, 110, 0.14);
}
.tag.gold {
  color: var(--gold);
  background: var(--gold-light);
  border: 1px solid rgba(196, 154, 60, 0.2);
}
.tag.navy {
  color: var(--ink);
  background: var(--secondary);
  border: 1px solid rgba(26, 32, 48, 0.1);
}
.tag.white {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* ── GRIDS ── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.grid-auto-sm {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.grid-auto-md {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}
.grid-auto-lg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* ── BANDS ── */
.band-dark {
  background: var(--ink);
}
.band-cream {
  background: var(--soft);
}
.band-sky {
  background: var(--accent);
}
.band-mist {
  background: var(--mist);
}
.band-deep {
  background: linear-gradient(150deg, #0d1525 0%, #111b2e 55%, #0d2020 100%);
}
.accent-bar {
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 80px;
  padding: 0 clamp(1rem, 4vw, 3rem);
}



.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo {
  height: auto;
  width: 180px;
  max-width: 180px;
  display: block;
  object-fit: contain;
}

.footer-site-logo {
  height: auto;
  width: 180px;
  max-width: 180px;
}

@media (max-width: 768px) {
  .site-logo {
    width: 140px;
    max-width: 140px;
  }
  .footer-site-logo {
    width: 140px;
    max-width: 140px;
  }
}

/* DESKTOP NAV */
.main-nav {
  flex: 1;
  display: flex;
  gap: 2px;
  justify-content: center;
}
.main-nav a {
  font-size: 13.5px;
  color: var(--foreground);
  text-decoration: none;
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  font-weight: 400;
  white-space: nowrap;
  transition:
    color var(--transition),
    background var(--transition);
  font-family: var(--font-body);
}
.main-nav a:hover {
  color: var(--ink);
  background: var(--soft);
}
.main-nav a.active {
  color: var(--primary);
  font-weight: 500;
}

/* HEADER RIGHT */
.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}
.header-call {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--muted-fg);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  font-family: var(--font-body);
  white-space: nowrap;
}
.header-call:hover {
  color: var(--ink);
  border-color: var(--primary);
}
.header-call svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none; /* hidden on desktop */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  padding: 0;
  transition: background var(--transition);
  flex-shrink: 0;
}
.hamburger:hover {
  background: var(--soft);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    width 0.3s ease;
  transform-origin: center;
}
/* Animate to X when open */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════
   MOBILE NAV DRAWER
   ═══════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
}
.mobile-nav.open {
  display: flex;
  animation: overlayIn 0.25s ease both;
  background: rgba(26, 32, 48, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@keyframes overlayIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Slide-in panel from right */
.mobile-nav-panel {
  background: var(--white);
  width: min(300px, 85vw);
  height: 100%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 40px rgba(26, 32, 48, 0.14);
  overflow-y: auto;
  animation: slideIn 0.28s cubic-bezier(0.32, 0.72, 0, 1) both;
}
@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Panel header row */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-nav-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--soft);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}
.mobile-nav-close:hover {
  background: var(--border);
}
.mobile-nav-close svg {
  width: 18px;
  height: 18px;
  stroke: var(--foreground);
}

/* Nav links list */
.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0.75rem;
  gap: 2px;
}
.mobile-nav-links a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: var(--foreground);
  text-decoration: none;
  padding: 11px 14px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  font-family: var(--font-body);
}
.mobile-nav-links a:hover {
  background: var(--soft);
  color: var(--ink);
}
.mobile-nav-links a.active {
  background: var(--accent);
  color: var(--primary);
  font-weight: 500;
}

/* Panel footer — CTA + phone */
.mobile-nav-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.mobile-nav-footer .btn-primary {
  width: 100%;
  justify-content: center;
}
.mobile-nav-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted-fg);
  text-decoration: none;
  font-family: var(--font-body);
  padding: 6px;
  border-radius: var(--radius-lg);
  transition: color var(--transition);
}
.mobile-nav-tel:hover {
  color: var(--primary);
}
.mobile-nav-tel svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* ── FOOTER ── */
#site-footer {
  background: var(--ink);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) 2rem;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.85;
  margin-top: 1rem;
  max-width: 275px;
}
.footer-logo .logo-mark {
  background: rgba(255, 255, 255, 0.1);
}
.footer-logo .logo-text strong {
  color: var(--white);
}
.footer-logo .logo-text span {
  color: rgba(255, 255, 255, 0.3);
}
.footer-col h4 {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 1.1rem;
  font-family: var(--font-body);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.26);
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  animation: wa-pulse 3.5s ease infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37, 211, 102, 0.55);
}
.wa-float svg {
  width: 28px;
  height: 28px;
}
@keyframes wa-pulse {
  0%,
  100% {
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 4px 24px rgba(37, 211, 102, 0.6),
      0 0 0 8px rgba(37, 211, 102, 0.07);
  }
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--ink);
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
.cta-band p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
}
.cta-band .hero-ctas {
  justify-content: center;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted-fg);
  margin-bottom: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-body);
}
.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .sep {
  color: var(--border);
}

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 3px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.5;
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover {
  color: var(--primary);
}
.faq-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 1.1rem 0;
  font-size: 14.5px;
  color: var(--muted-fg);
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 0;
  width: 1.5px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 1.75rem;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--primary);
}
.timeline-item.active .timeline-dot {
  background: var(--primary);
}
.timeline-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
}
.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.timeline-item p {
  font-size: 14.5px;
  color: var(--muted-fg);
  line-height: 1.8;
  max-width: 620px;
}
.outcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.9rem;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-light);
  font-family: var(--font-body);
}
.outcome-badge svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
}

/* ── STARS / TESTIMONIALS ── */
.stars {
  display: flex;
  gap: 3px;
}
.star {
  width: 14px;
  height: 14px;
  fill: #f59e0b;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}
.testimonial-text {
  font-size: 14.5px;
  color: var(--muted-fg);
  line-height: 1.85;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  flex-shrink: 0;
  font-family: var(--font-body);
}
.author-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-body);
}
.author-info span {
  font-size: 12px;
  color: var(--muted-fg);
}

/* ── STAT / CONTACT / FORM ── */
.stat-card {
  text-align: center;
}
.stat-card .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
  font-optical-sizing: auto;
}
.stat-card .label {
  font-size: 13px;
  color: var(--muted-fg);
  font-family: var(--font-body);
}
.stat-card.dark .num {
  color: var(--white);
}
.stat-card.dark .label {
  color: rgba(255, 255, 255, 0.5);
}

.contact-row {
  display: flex;
  gap: 14px;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-row-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-row-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--primary);
}
.contact-row h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-fg);
  margin-bottom: 3px;
  font-family: var(--font-body);
}
.contact-row p,
.contact-row a {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.5;
  font-family: var(--font-body);
  font-weight: 400;
}
.contact-row a:hover {
  color: var(--primary);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-family: var(--font-body);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--input-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 10px 14px;
  outline: none;
  transition:
    border-color var(--transition),
    background var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ring);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(59, 111, 196, 0.1);
}
.form-group textarea {
  resize: none;
  height: 90px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit {
  width: 100%;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 13px;
  border-radius: var(--radius-3xl);
  border: none;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}
.form-submit:hover {
  background: var(--primary-hover);
}

/* ── SEO STRIP ── */
.seo-strip {
  background: var(--soft);
  border-top: 1px solid var(--border);
  padding: 1.75rem clamp(1.5rem, 5vw, 4rem);
}
.seo-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.seo-strip p {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-fg);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}
.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.seo-links a {
  font-size: 12px;
  color: var(--primary);
  text-decoration: none;
  border: 1px solid rgba(30, 77, 140, 0.18);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  font-family: var(--font-body);
}
.seo-links a:hover {
  background: var(--accent);
  border-color: var(--primary);
}

/* ── GLASS CARD ── */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(30, 77, 140, 0.1);
  box-shadow: var(--shadow-soft);
}

/* ── CRED ITEM ── */
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}
.cred-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cred-item h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
  font-family: var(--font-body);
}
.cred-item p {
  font-size: 12px;
  color: var(--muted-fg);
  line-height: 1.5;
}

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

/* Tablet ≤1020px — hide nav, show hamburger on far right */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .header-call {
    display: none;
  } /* hide phone, keep layout clean */
  .hamburger {
    display: flex;
  }
  .header-actions .btn-primary {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile ≤768px */
@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .page-hero h1 {
    font-size: clamp(1.9rem, 6vw, 2.6rem);
  }
}

/* Small mobile ≤500px */
@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .header-inner {
    padding: 0 1rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    justify-content: center;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-up {
  animation: fadeUp 0.65s ease both;
}
.d1 {
  animation-delay: 0.08s;
}
.d2 {
  animation-delay: 0.16s;
}
.d3 {
  animation-delay: 0.24s;
}
.d4 {
  animation-delay: 0.32s;
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.animate-float {
  animation: float-soft 6s ease-in-out infinite;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-up {
  animation: fade-up 0.7s ease-out both;
}

.doc-photo-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.doc-photo-illo{
  height:480px;
  background:#f8fafc;
}

.doctor-photo{
  width:100%;
  height:100%;
  object-fit:cover;
}

.doc-photo-info{
  padding:24px;
}

.doc-photo-info strong{
  display:block;
  font-size:1.5rem;
  color:var(--navy);
  margin-bottom:6px;
}

.doc-photo-info span{
  color:var(--gray-500);
}

#about-dr-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    transform: scaleX(-1) scale(2.4);
    transform-origin: center top;
}
.before-after-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(500px,1fr));
    gap:2rem;
    margin-top:3rem;
}

.ba-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid rgba(0,0,0,.06);
}

.ba-images{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.ba-image{
    position:relative;
    overflow:hidden;
}

.ba-image img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:.4s ease;
}

.ba-card:hover img{
    transform:scale(1.04);
}

.ba-label{
    position:absolute;
    top:14px;
    left:14px;
    z-index:2;
    padding:.45rem .85rem;
    border-radius:999px;
    font-size:.8rem;
    font-weight:600;
    color:#fff;
}

.ba-label.before{
    background:#64748b;
}

.ba-label.after{
    background:#1a7a6e;
}

@media(max-width:768px){

    .before-after-grid{
        grid-template-columns:1fr;
    }

    .ba-images{
        grid-template-columns:1fr;
    }

    .ba-image img{
        height:260px;
    }
}
.ba-slider-container{
    position:relative;
    max-width:900px;
    margin:3rem auto;
}

.ba-slider{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(15,42,74,.1);
}

.ba-slider img{
    width:100%;
    display:block;
}

.ba-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    cursor:pointer;
    z-index:5;
    font-size:22px;
}

.ba-arrow.prev{
    left:-25px;
}

.ba-arrow.next{
    right:-25px;
}

.ba-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:1.5rem;
}

.ba-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#cbd5e1;
    cursor:pointer;
}

.ba-dot.active{
    background:var(--primary);
}
/*.case-gallery-section{*/
/*    padding:80px 0;*/
/*}*/

/*.case-gallery-grid{*/
/*    display:grid;*/
/*    grid-template-columns:repeat(5, 1fr);*/
/*    gap:24px;*/
/*    margin-top:50px;*/
/*}*/

/*.case-card{*/
/*    position:relative;*/
/*    overflow:hidden;*/
/*    border-radius:20px;*/
/*    background:#fff;*/
/*    cursor:pointer;*/
    aspect-ratio: 4 / 5; /* Keeps all cards same size */

/*    box-shadow:0 8px 20px rgba(15,42,74,.08);*/

/*    transition:*/
/*        transform .35s ease,*/
/*        box-shadow .35s ease;*/
/*}*/

/*.case-card img{*/
/*    width:100%;*/
/*    height:100%;*/
    object-fit:cover;      /* Fill available space */
    object-position:center; /* Center crop */
/*    display:block;*/

/*    transition:transform .5s ease;*/
/*}*/

/* POP OUT EFFECT */

/*.case-card:hover{*/
/*    transform:*/
/*        translateY(-12px)*/
/*        scale(1.04);*/

/*    box-shadow:*/
/*        0 25px 50px rgba(15,42,74,.18);*/
/*}*/

/*.case-card:hover img{*/
/*    transform:scale(1.08);*/
/*}*/

/* Optional glowing border */

/*.case-card::after{*/
/*    content:"";*/
/*    position:absolute;*/
/*    inset:0;*/
/*    border-radius:20px;*/
/*    border:2px solid transparent;*/
/*    transition:.35s ease;*/
/*}*/

/*.case-card:hover::after{*/
/*    border-color:rgba(37,99,168,.25);*/
/*}*/

/* Tablet */

/*@media(max-width:1200px){*/
/*    .case-gallery-grid{*/
/*        grid-template-columns:repeat(3,1fr);*/
/*    }*/
/*}*/

/* Mobile */

/*@media(max-width:768px){*/
/*    .case-gallery-grid{*/
/*        grid-template-columns:repeat(2,1fr);*/
/*        gap:16px;*/
/*    }*/

/*    .case-card{*/
/*        border-radius:16px;*/
/*    }*/
/*}*/

/* ═══════════════════════════════════════════
   REDESIGN ADDITIONS — Visual Enhancement Layer
   ═══════════════════════════════════════════ */

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ── IMPROVED SECTION BANDS ── */
.band-gradient-hero {
  background: linear-gradient(135deg, #edf4fb 0%, #f5f8fc 40%, #eef7f4 100%);
}
.band-blue-light {
  background: linear-gradient(135deg, #e8f0fb 0%, #f0f5ff 100%);
  border-top: 1px solid rgba(37,99,168,0.07);
  border-bottom: 1px solid rgba(37,99,168,0.07);
}
.band-teal-light {
  background: linear-gradient(135deg, #e6f4f2 0%, #f0f9f8 100%);
  border-top: 1px solid rgba(26,122,110,0.08);
  border-bottom: 1px solid rgba(26,122,110,0.08);
}

/* ── ICON BADGE (larger than card-icon) ── */
.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-badge svg {
  width: 26px;
  height: 26px;
}
.icon-badge.blue { background: var(--accent); }
.icon-badge.blue svg { stroke: var(--primary); }
.icon-badge.teal { background: var(--teal-light); }
.icon-badge.teal svg { stroke: var(--teal); }
.icon-badge.gold { background: var(--gold-light); }
.icon-badge.gold svg { stroke: var(--gold); }
.icon-badge.navy { background: var(--secondary); }
.icon-badge.navy svg { stroke: var(--ink); }

/* ── ENHANCED FEATURE CARDS ── */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  box-shadow: var(--shadow-elevated);
  border-color: rgba(30,77,140,0.12);
  transform: translateY(-3px);
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1rem 0 0.5rem;
  line-height: 1.3;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted-fg);
  line-height: 1.75;
}

/* ── STAT STRIP (light version) ── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.stat-strip-cell {
  background: var(--white);
  padding: 1.5rem;
  text-align: center;
}
.stat-strip-cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.stat-strip-cell span {
  font-size: 12px;
  color: var(--muted-fg);
  letter-spacing: 0.02em;
}

/* ── HIGHLIGHTED INFO BOX ── */
.info-box {
  background: var(--accent);
  border: 1px solid rgba(30,77,140,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--primary);
}
.info-box p {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.75;
}
.info-box.teal {
  background: var(--teal-light);
  border-color: rgba(26,122,110,0.12);
  border-left-color: var(--teal);
}
.info-box.gold {
  background: var(--gold-light);
  border-color: rgba(196,154,60,0.15);
  border-left-color: var(--gold);
}

/* ── TWO-COLUMN PROSE LAYOUT ── */
.prose-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .prose-split { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── STEP / PROCESS CARDS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  position: relative;
  transition: box-shadow var(--transition);
}
.process-card:hover { box-shadow: var(--shadow-md); }
.process-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.process-card p {
  font-size: 13.5px;
  color: var(--muted-fg);
  line-height: 1.7;
}

/* ── HIGHLIGHT ROW (alternating feature) ── */
.highlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--border);
}
.highlight-row:last-child { border-bottom: none; }
.highlight-row.reverse { direction: rtl; }
.highlight-row.reverse > * { direction: ltr; }
.highlight-row-visual {
  background: var(--soft);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  border: 1px solid var(--border);
}
.highlight-row-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
.highlight-row-content p {
  font-size: 15px;
  color: var(--muted-fg);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .highlight-row { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
  .highlight-row.reverse { direction: ltr; }
}

/* ── CREDENTIAL ITEM (improved) ── */
.cred-item-v2 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition), transform var(--transition);
}
.cred-item-v2:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.cred-item-v2 .icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cred-item-v2 h4 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.cred-item-v2 p { font-size: 12.5px; color: var(--muted-fg); line-height: 1.5; }

/* ── CONDITION DETAIL CARD ENHANCED ── */
.cond-card-v2 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.cond-card-v2:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cond-card-v2-img {
  height: 180px; background: var(--soft); overflow: hidden;
}
.cond-card-v2-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.cond-card-v2:hover .cond-card-v2-img img { transform: scale(1.04); }
.cond-card-v2-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.cond-card-v2-body h3 { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.cond-card-v2-body p { font-size: 13.5px; color: var(--muted-fg); line-height: 1.7; flex: 1; }

/* ── PAGE HERO ENHANCED — split layout option ── */
.page-hero-split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { .page-hero-split { grid-template-columns: 1fr; } }

/* ── CONTACT ROW ── */
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-row-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-lg);
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row-icon svg { width: 17px; height: 17px; stroke: var(--primary); }
.contact-row h4 { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-fg); margin-bottom: 3px; }
.contact-row a, .contact-row p { font-size: 14.5px; color: var(--ink); font-weight: 500; text-decoration: none; }
.contact-row a:hover { color: var(--primary); }

/* ── SEO STRIP ── */
.seo-strip {
  background: var(--soft);
  border-top: 1px solid var(--border);
  padding: 1.75rem clamp(1.5rem, 5vw, 4rem);
}
.seo-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.seo-strip p {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-fg);
  flex-shrink: 0;
}
.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.seo-links a {
  font-size: 12px;
  color: var(--muted-fg);
  text-decoration: none;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.seo-links a:hover { color: var(--primary); border-color: var(--primary); background: var(--accent); }

/* ── STORY CARD V2 ── */
.story-card-v2 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.story-card-v2:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.story-case-num {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.story-card-v2 h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  font-optical-sizing: auto;
}
.story-card-v2 p { font-size: 14px; color: var(--muted-fg); line-height: 1.75; }

/* ── TESTIMONIAL ENHANCED ── */
.testi-card-v2 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative; overflow: hidden;
}
.testi-card-v2::before {
  content: '\201C';
  position: absolute; top: 0.75rem; right: 1.25rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  pointer-events: none;
}
.testi-card-v2:hover { box-shadow: var(--shadow-elevated); transform: translateY(-2px); }

/* ── MOBILE RESPONSIVE EXTRAS ── */
@media (max-width: 768px) {
  .icon-badge { width: 46px; height: 46px; }
  .icon-badge svg { width: 20px; height: 20px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .highlight-row-visual { min-height: 180px; padding: 1.5rem; }
}
@media (max-width: 500px) {
  .process-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
}
