/* ============================================================
   SculpSure® Body Sculpting — Premium Stylesheet
   sculpsurebodysculpting.com
   © 2026 The Institute for Laser & Aesthetic Medicine
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --midnight:   #0a2540;
  --midnight-80: rgba(10,37,64,0.8);
  --midnight-95: rgba(10,37,64,0.95);
  --coral:      #e8513d;
  --coral-dark: #c43e2c;
  --cyan:       #00b4d8;
  --cyan-light: #48cae4;
  --gold:       #c9a84c;
  --gold-light: #e2c97e;
  --light:      #f8fafb;
  --white:      #ffffff;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-400:   #94a3b8;
  --gray-600:   #475569;
  --gray-800:   #1e293b;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.15);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.2);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:  1200px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::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(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--midnight);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.7;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--dark {
  background: var(--midnight);
  color: var(--white);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark .lead { color: rgba(255,255,255,0.75); }

.section--light { background: var(--light); }
.section--gray  { background: var(--gray-100); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-coral  { color: var(--coral); }
.text-cyan   { color: var(--cyan); }
.text-gold   { color: var(--gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,81,61,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--midnight);
  border-color: var(--midnight);
}
.btn-outline-dark:hover {
  background: var(--midnight);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--midnight);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.site-nav.scrolled {
  background: var(--midnight-95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text .brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo-text .sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ───────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--midnight-95);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 1rem 0 1.5rem;
  transform: translateY(-110%);
  transition: transform var(--transition);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.mobile-nav .mobile-cta { padding: 1rem 1.5rem 0; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--midnight);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  transition: opacity 1s;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,37,64,0.92) 0%,
    rgba(10,37,64,0.7) 40%,
    rgba(0,180,216,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 7rem 0 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--coral);
}

.hero .lead {
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--coral);
  padding: 1rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 2rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(255,255,255,0.3);
}

.trust-item svg {
  flex-shrink: 0;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-body { padding: 2rem; }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.feature-icon--coral { background: rgba(232,81,61,0.1); color: var(--coral); }
.feature-icon--cyan  { background: rgba(0,180,216,0.1); color: var(--cyan); }
.feature-icon--gold  { background: rgba(201,168,76,0.1); color: var(--gold); }
.feature-icon--midnight { background: rgba(10,37,64,0.08); color: var(--midnight); }

/* ── How It Works — Diagram ───────────────────────────────── */
.skin-diagram {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Process Steps ────────────────────────────────────────── */
.process-steps {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: -1.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--coral), var(--cyan));
  opacity: 0.3;
}

.process-step:last-child::before { display: none; }

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(232,81,61,0.3);
}

.step-content {
  padding: 0.25rem 0 2.5rem;
  flex: 1;
}

.step-content h4 { color: var(--midnight); margin-bottom: 0.4rem; }
.step-content p  { color: var(--gray-600); margin: 0; }

/* ── Comparison Table ─────────────────────────────────────── */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 700px;
}

.compare-table th {
  padding: 1rem 1.25rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gray-200);
}

.compare-table th:first-child { text-align: left; }

.compare-table th.highlight {
  background: var(--midnight);
  color: var(--white);
  position: relative;
}

.compare-table th.highlight::after {
  content: '★ Best Choice';
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

.compare-table td {
  padding: 0.9rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600);
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--gray-800);
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table td.highlight {
  background: rgba(10,37,64,0.03);
  font-weight: 600;
  color: var(--midnight);
}

.compare-table .check { color: #22c55e; font-size: 1.1rem; }
.compare-table .cross { color: #ef4444; font-size: 1rem; }
.compare-table .partial { color: var(--gold); }

/* ── Timeline ─────────────────────────────────────────────── */
.timeline {
  display: flex;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--cyan), var(--gold));
  border-radius: 2px;
}

.timeline-item {
  flex: 1;
  text-align: center;
  padding: 0 0.5rem;
  position: relative;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}

.timeline-dot--coral { background: var(--coral); color: var(--white); }
.timeline-dot--cyan  { background: var(--cyan); color: var(--white); }
.timeline-dot--gold  { background: var(--gold); color: var(--midnight); }

.timeline-item h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.timeline-item p  { font-size: 0.85rem; color: var(--gray-600); margin: 0; }

/* ── Area Cards ───────────────────────────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.area-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.area-card:hover {
  border-color: var(--coral);
  background: rgba(232,81,61,0.03);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.area-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.area-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 0.25rem;
}

.area-card p {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin: 0;
}

/* ── Stat Blocks ──────────────────────────────────────────── */
.stat-block {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--coral);
  opacity: 0.15;
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.author-info strong { display: block; font-weight: 600; color: var(--midnight); }
.author-info span   { font-size: 0.82rem; color: var(--gray-400); }

.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.75rem; }

/* ── Before/After ─────────────────────────────────────────── */
.before-after-showcase {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 700px;
  margin: 0 auto;
}

.before-after-showcase img {
  width: 100%;
  height: auto;
}

.before-after-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--midnight-95);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ── Accordion / FAQ ──────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--midnight);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--coral); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--coral);
  transition: var(--transition);
}

.faq-item.open .faq-icon { background: var(--coral); color: var(--white); transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--midnight) 0%, #1a4060 50%, var(--midnight) 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(232,81,61,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0,180,216,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section > * { position: relative; z-index: 1; }

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section .lead {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Ecosystem / Partner Bar ──────────────────────────────── */
.partner-bar {
  background: var(--midnight);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.partner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}

.partner-item:hover { color: var(--white); }

.partner-item img {
  height: 28px;
  width: auto;
  opacity: 0.6;
  filter: brightness(10);
  transition: opacity var(--transition);
}

.partner-item:hover img { opacity: 0.9; }

/* ── Page Hero (interior pages) ──────────────────────────── */
.page-hero {
  background: var(--midnight);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.9), rgba(0,180,216,0.15));
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.8); max-width: 650px; }

.page-hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── Contact Form ─────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--midnight);
  box-shadow: 0 0 0 3px rgba(10,37,64,0.08);
}

.form-control::placeholder { color: var(--gray-400); }

select.form-control { cursor: pointer; }
textarea.form-control { min-height: 130px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ── Consultation Sidebar ─────────────────────────────────── */
.consult-include {
  background: var(--midnight);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.consult-include h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.consult-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.consult-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.consult-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.consult-list-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
  padding-top: 0.3rem;
}

.consult-list-item strong { color: var(--white); display: block; }

.location-block {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-top: 1rem;
}

.location-block h4 { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.5rem; }
.location-block p { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin: 0; }

/* ── Doctor Profile ───────────────────────────────────────── */
.doctor-portrait {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.achievement {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}

.achievement .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.achievement .label {
  font-size: 0.82rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* ── Medical Disclaimer ───────────────────────────────────── */
.disclaimer {
  background: var(--gray-100);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.disclaimer strong { color: var(--gray-800); }

/* ── Highlight Box ────────────────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, rgba(232,81,61,0.08), rgba(0,180,216,0.08));
  border: 1px solid rgba(232,81,61,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

/* ── vs. Split ────────────────────────────────────────────── */
.vs-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.vs-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--midnight);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img { height: 36px; width: auto; filter: brightness(10); opacity: 0.9; }

.footer-logo-text .name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.footer-logo-text .sub {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

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

.footer-address {
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer-address strong { color: var(--white); display: block; margin-top: 0.75rem; }
.footer-address strong:first-child { margin-top: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-trademark {
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  line-height: 1.6;
  max-width: 600px;
}

/* ── Scroll Animations ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--cyan));
  border-radius: 2px;
  margin: 1.5rem auto;
}
.divider--left { margin-left: 0; }

/* ── Chips / Tags ─────────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.chip--coral { background: rgba(232,81,61,0.1); color: var(--coral); }
.chip--cyan  { background: rgba(0,180,216,0.1); color: var(--cyan); }
.chip--gold  { background: rgba(201,168,76,0.1); color: #a07c2a; }
.chip--green { background: rgba(34,197,94,0.1); color: #16a34a; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .timeline { flex-direction: column; }
  .timeline::before { top: 2rem; left: 28px; right: auto; bottom: 2rem; width: 3px; height: auto; }
  .timeline-item { display: flex; gap: 1.5rem; align-items: flex-start; text-align: left; }
  .timeline-dot { flex-shrink: 0; margin: 0; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-3.three-col-mobile { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .vs-split { grid-template-columns: 1fr; }
  .vs-badge { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .trust-item { padding: 0.5rem 1rem; }
  .trust-item + .trust-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.3); }
  .trust-bar-inner { flex-direction: column; gap: 0; }
  .form-row { grid-template-columns: 1fr; }
  .achievement-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-content { padding: 6rem 0 3.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ── Utility: visually hidden ─────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
