/* =============================================
   SMIORAA — Right Dental Care, Made Simple
   Design System: Cream, Dark Brown & Gold
   Inspired by the Smioraa flyer brand identity
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  /* Primary Palette (from flyer) */
  --cream:        #F7EED5;   /* main warm background */
  --cream-soft:   #FAF3E0;   /* secondary bg */
  --cream-deep:   #EFE2BD;   /* accent bg */
  --ivory:        #FDF8EC;   /* lightest cream */

  --brown:        #3D2817;   /* logo dark, primary text */
  --brown-dark:   #2A1A0E;
  --brown-mid:    #5C3E26;
  --brown-soft:   #8B6D4F;

  --gold:         #C9A961;   /* accent gold from "aa" */
  --gold-light:   #E0C78A;
  --gold-dark:    #A88438;
  --gold-bg:      #F4E8C8;

  --green:        #6B8E4E;   /* botanical accent */
  --green-light:  #C4D4A8;

  --text:         #3D2817;
  --muted:        #7C5E42;
  --white:        #FFFFFF;
  --border:       #E8D9B5;

  --shadow-sm:   0 1px 3px rgba(61,40,23,.08);
  --shadow-md:   0 6px 24px rgba(61,40,23,.12);
  --shadow-lg:   0 14px 44px rgba(168,132,56,.22);

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-full: 999px;

  --serif:       'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  --sans:        'Inter', 'Segoe UI', sans-serif;

  --transition:  0.3s cubic-bezier(.4,.0,.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; font-weight: 700; color: var(--brown); letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-family: var(--sans); font-weight: 700; }
p  { color: var(--muted); line-height: 1.8; }

/* ---------- Layout ---------- */
.container  { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: var(--radius-full);
  font-size: .95rem; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: all var(--transition);
  letter-spacing: .4px; font-family: var(--sans);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--brown-dark); border-color: var(--gold-dark);
  box-shadow: 0 4px 16px rgba(168,132,56,.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  transform: translateY(-2px); box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: transparent; color: var(--brown); border-color: var(--brown);
}
.btn-outline:hover {
  background: var(--brown); color: var(--cream);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--brown); color: var(--cream);
  border-color: var(--brown);
}
.btn-dark:hover {
  background: var(--brown-dark); border-color: var(--brown-dark);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn-outline-cream {
  background: transparent; color: var(--cream); border-color: rgba(247,238,213,.6);
}
.btn-outline-cream:hover { background: rgba(247,238,213,.12); border-color: var(--cream); }

/* ---------- Tag / Badge ---------- */
.tag {
  display: inline-block; padding: 6px 18px;
  background: var(--gold-bg); color: var(--gold-dark);
  border-radius: var(--radius-full); font-size: .78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px;
  font-family: var(--sans); border: 1px solid var(--gold-light);
}

/* ---------- Section Headings ---------- */
.section-label { margin-bottom: 14px; }
.section-title { margin-bottom: 18px; }
.section-sub   { max-width: 620px; margin: 0 auto 56px; font-size: 1.05rem; }

/* Section divider (gold flourish) */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 14px 0 22px;
}
.divider::before, .divider::after {
  content: ''; width: 48px; height: 1px; background: var(--gold);
}
.divider-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(253,248,236,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 100%; height: 100%; }
.nav-logo-text {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 700;
  color: var(--brown); letter-spacing: -.5px; line-height: 1;
}
.nav-logo-text .gold { color: var(--gold-dark); font-style: italic; }
.nav-tagline {
  display: block; font-family: var(--sans);
  font-size: .62rem; font-weight: 500; letter-spacing: 2.2px;
  color: var(--brown-soft); text-transform: uppercase; margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 500; color: var(--brown);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-dark); background: var(--gold-bg);
}
.nav-cta { margin-left: 14px; padding: 11px 24px; font-size: .85rem; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--brown); border-radius: 4px;
  transition: all var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: 76px; left: 0; right: 0;
  background: var(--ivory); padding: 24px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  flex-direction: column; gap: 8px; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-weight: 500; color: var(--brown);
}
.mobile-menu a:hover { background: var(--gold-bg); color: var(--gold-dark); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background:
    radial-gradient(ellipse at top left, rgba(201,169,97,.14) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(107,142,78,.09) 0%, transparent 55%),
    linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
  padding-top: 76px; overflow: hidden; position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: 60px; right: -40px;
  width: 340px; height: 340px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='%236B8E4E' opacity='.18'><path d='M40 30 Q60 20 80 40 Q70 55 50 55 Q35 50 40 30Z'/><path d='M30 80 Q55 75 75 95 Q60 110 45 105 Q25 100 30 80Z'/><path d='M60 130 Q80 125 95 145 Q85 160 65 155 Q50 150 60 130Z'/></g></svg>") no-repeat center/contain;
  pointer-events: none; opacity: .7;
}
.hero::after {
  content: '';
  position: absolute; bottom: -20px; left: -60px;
  width: 260px; height: 260px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='%236B8E4E' opacity='.15'><path d='M120 40 Q140 30 160 50 Q150 65 130 65 Q115 60 120 40Z'/><path d='M140 100 Q160 90 175 110 Q165 125 150 125 Q135 120 140 100Z'/></g></svg>") no-repeat center/contain;
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px;
  align-items: center; padding: 64px 0 80px;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-bg); color: var(--gold-dark);
  padding: 8px 18px; border-radius: var(--radius-full);
  font-size: .8rem; font-weight: 700; margin-bottom: 24px;
  border: 1px solid var(--gold-light); letter-spacing: 1px; text-transform: uppercase;
}
.hero-badge::before { content: '✦'; color: var(--gold-dark); }
.hero-title { margin-bottom: 20px; font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: 1.08; }
.hero-title .gold-italic { color: var(--gold-dark); font-style: italic; }
.hero-tagline {
  font-size: 1.12rem; color: var(--muted); margin-bottom: 36px;
  max-width: 480px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 52px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.stat-item { text-align: left; }
.stat-num { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--gold-dark); }
.stat-label { font-size: .82rem; color: var(--muted); letter-spacing: .5px; }

/* Hero visual — giant tooth illustration in a cream card */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-tooth-card {
  width: 100%; max-width: 460px; aspect-ratio: 1 / 1.05;
  background: linear-gradient(155deg, var(--cream) 0%, var(--cream-deep) 100%);
  border-radius: 220px 220px 24px 24px;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--gold-light);
}
.hero-tooth-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.6), transparent 60%);
}
.hero-tooth-card svg.tooth { width: 62%; height: auto; position: relative; z-index: 2; filter: drop-shadow(0 18px 30px rgba(61,40,23,.18)); }
.hero-ring {
  position: absolute; z-index: 3; width: 78%; height: 16%;
  border: 3px solid var(--gold); border-radius: 50%;
  transform: rotate(-18deg);
  box-shadow: 0 0 40px rgba(201,169,97,.4);
}
.hero-sparkle {
  position: absolute; color: var(--gold); font-size: 1.4rem;
  z-index: 3; animation: twinkle 3s infinite;
}
.hero-sparkle.s1 { top: 14%; right: 14%; }
.hero-sparkle.s2 { bottom: 26%; left: 10%; font-size: 1rem; animation-delay: 1s; }
@keyframes twinkle { 0%,100% { opacity:.4; transform: scale(.8);} 50% { opacity:1; transform: scale(1.15);} }

.hero-feature-card {
  position: absolute; background: var(--white);
  border-radius: var(--radius-md); padding: 14px 18px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
}
.hero-feature-card.c1 { bottom: 10px; left: -10px; }
.hero-feature-card.c2 { top: 20px; right: -10px; }
.hero-feature-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--gold-bg); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.hero-feature-text strong { display: block; font-size: .88rem; color: var(--brown); font-weight: 700; }
.hero-feature-text p { font-size: .72rem; color: var(--muted); margin: 0; }

/* ---------- WHAT WE DO / SERVICES GRID ---------- */
.what-we-do { background: var(--ivory); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  padding: 40px 30px; border-radius: var(--radius-md);
  border: 1px solid var(--border); background: var(--white);
  transition: all var(--transition); position: relative; overflow: hidden;
  text-align: center;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: var(--gold-light); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 68px; height: 68px;
  background: radial-gradient(circle, var(--gold-bg) 0%, var(--cream) 100%);
  border-radius: 50%; border: 1px solid var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; font-size: 1.7rem; color: var(--gold-dark);
}
.service-card h3 { margin-bottom: 12px; color: var(--brown); }
.service-card p { font-size: .93rem; }

/* ---------- WHERE WE CONDUCT ---------- */
.where-section { background: var(--cream-soft); position: relative; }
.locations-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.location-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 32px 20px; text-align: center;
  border: 1px solid var(--border); transition: all var(--transition);
}
.location-card:hover {
  border-color: var(--gold); box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.location-icon {
  width: 56px; height: 56px; margin: 0 auto 14px;
  border-radius: 50%; background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--gold-dark);
}
.location-card p { font-size: .9rem; font-weight: 600; color: var(--brown); line-height: 1.4; }

/* ---------- WHY SMIORAA (dark brown section) ---------- */
.why-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(201,169,97,.12) 0%, transparent 55%),
    linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 55%, var(--brown-mid) 100%);
  color: var(--cream); position: relative; overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; bottom: -100px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201,169,97,.18) 0%, transparent 70%);
  pointer-events: none;
}
.why-section .tag { background: rgba(201,169,97,.16); color: var(--gold); border-color: rgba(201,169,97,.3); }
.why-section h2 { color: var(--cream); }
.why-section .section-sub { color: rgba(247,238,213,.72); }
.why-section .divider::before, .why-section .divider::after { background: var(--gold); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 24px; background: rgba(247,238,213,.06);
  border-radius: var(--radius-md); border: 1px solid rgba(201,169,97,.22);
  transition: all var(--transition);
}
.why-item:hover { background: rgba(247,238,213,.10); border-color: var(--gold); transform: translateX(6px); }
.why-check {
  width: 36px; height: 36px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  font-size: 1rem; color: var(--brown-dark); font-weight: 800;
}
.why-item-text h4 { color: var(--cream); font-size: 1.02rem; margin-bottom: 4px; }
.why-item-text p { color: rgba(247,238,213,.72); font-size: .88rem; line-height: 1.6; }

.why-visual {
  background:
    radial-gradient(circle at center, rgba(201,169,97,.22) 0%, transparent 70%);
  border-radius: var(--radius-lg); padding: 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid rgba(201,169,97,.26);
}
.why-visual-stat {
  text-align: center; margin-bottom: 20px;
}
.why-visual-stat .big {
  font-family: var(--serif); font-size: 4.4rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.why-visual-stat .lbl {
  color: var(--cream); font-size: .95rem; letter-spacing: 2px;
  text-transform: uppercase; margin-top: 6px;
}
.why-visual-quote {
  font-family: var(--serif); font-style: italic; font-size: 1.15rem;
  color: var(--cream); text-align: center; line-height: 1.5;
  border-top: 1px solid rgba(201,169,97,.3); padding-top: 24px; margin-top: 12px;
}

/* ---------- CONFUSION / PROBLEM ---------- */
.confusion-section { background: var(--ivory); }
.confusion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.confusion-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(145deg, var(--cream) 0%, var(--cream-deep) 100%);
  padding: 56px 40px; box-shadow: var(--shadow-md);
  border: 1px solid var(--gold-light);
  position: relative;
}
.confusion-img-wrap::before {
  content: '?'; font-family: var(--serif); font-size: 14rem; font-weight: 700;
  color: rgba(201,169,97,.22); position: absolute; top: 10px; right: 30px; line-height: 1;
}
.confusion-bubble {
  position: relative; background: var(--white); padding: 22px 26px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  margin-bottom: 16px; border-left: 4px solid var(--gold);
  font-style: italic; color: var(--brown-mid);
}
.problem-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.problem-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; background: var(--cream-soft);
  border-radius: var(--radius-sm); border-left: 4px solid var(--gold-dark);
  color: var(--brown); font-weight: 500;
}
.problem-item::before { content: '•'; color: var(--gold-dark); font-size: 1.4rem; font-weight: 700; }

/* ---------- CTA SECTION ---------- */
.cta-section {
  background:
    linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--brown-dark); text-align: center; position: relative; overflow: hidden;
}
.cta-section::before, .cta-section::after {
  content: ''; position: absolute; width: 300px; height: 300px;
  border-radius: 50%; background: rgba(255,255,255,.12); pointer-events: none;
}
.cta-section::before { top: -120px; left: -80px; }
.cta-section::after { bottom: -140px; right: -100px; }
.cta-section h2 { color: var(--brown-dark); position: relative; z-index: 2; }
.cta-section p { color: var(--brown); max-width: 620px; margin: 16px auto 32px; position: relative; z-index: 2; }
.cta-section .btn { position: relative; z-index: 2; }

/* ---------- FOR CLINICS TEASER ---------- */
.clinics-teaser {
  background: var(--cream); position: relative; overflow: hidden;
}
.clinics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.clinics-card {
  background: var(--white); padding: 48px 44px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); border: 1px solid var(--gold-light);
  position: relative;
}
.clinics-card::before {
  content: ''; position: absolute; top: -1px; left: 24px; right: 24px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 0 0 4px 4px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--brown-dark); color: var(--cream); padding: 72px 0 28px;
  position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-text { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--cream); margin-bottom: 4px; }
.footer-logo-text .gold { color: var(--gold); font-style: italic; }
.footer-brand p { color: rgba(247,238,213,.62); font-size: .92rem; line-height: 1.8; margin-top: 12px; }
.footer h4 {
  font-family: var(--sans); color: var(--cream); font-size: .78rem;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(247,238,213,.72); font-size: .92rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(201,169,97,.2);
  color: rgba(247,238,213,.5); font-size: .85rem;
}

/* ---------- PAGE HEADER (inner pages) ---------- */
.page-header {
  padding: 140px 0 72px;
  background:
    radial-gradient(ellipse at top right, rgba(201,169,97,.18) 0%, transparent 55%),
    linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
  text-align: center; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-header h1 { margin-bottom: 14px; }
.page-header .breadcrumb {
  font-size: .85rem; color: var(--muted); margin-bottom: 16px;
  letter-spacing: 1px; text-transform: uppercase;
}
.page-header .breadcrumb a { color: var(--gold-dark); font-weight: 600; }

/* ---------- ABOUT PAGE ---------- */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-card {
  padding: 40px 36px; background: var(--white);
  border-radius: var(--radius-md); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  height: 100%;
}
.about-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.about-card .icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--gold-bg); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.about-card h3 { margin-bottom: 10px; }
.mvg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvg-card {
  padding: 44px 32px; border-radius: var(--radius-md); text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--white) 0%, var(--ivory) 100%);
  border: 1px solid var(--gold-light);
}
.mvg-card .icon {
  width: 72px; height: 72px; margin: 0 auto 22px;
  background: var(--brown); color: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.mvg-card h3 { color: var(--brown); margin-bottom: 12px; font-size: 1.3rem; }

/* ---------- PROCESS / STEPS ---------- */
.steps-wrap { display: flex; flex-direction: column; gap: 20px; }
.step {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 32px;
  align-items: center; padding: 32px; background: var(--white);
  border-radius: var(--radius-md); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.step:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateX(8px); }
.step-number {
  font-family: var(--serif); font-size: 4rem; font-weight: 700;
  color: var(--gold-dark); line-height: 1;
  -webkit-text-stroke: 1.5px var(--gold-dark); color: transparent;
  text-align: center;
}
.step-icon { font-size: 2.4rem; color: var(--gold-dark); }
.step h3 { margin-bottom: 6px; }

/* ---------- PARTNER PAGE ---------- */
.partner-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(201,169,97,.2) 0%, transparent 50%),
    linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
  color: var(--cream); padding: 140px 0 100px; text-align: center;
  position: relative; overflow: hidden;
}
.partner-hero h1 { color: var(--cream); }
.partner-hero h1 .gold { color: var(--gold); font-style: italic; }
.partner-hero p { color: rgba(247,238,213,.8); max-width: 640px; margin: 16px auto 36px; font-size: 1.1rem; }

.gap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.gap-card {
  background: var(--white); padding: 40px; border-radius: var(--radius-md);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.gap-card ul { display: flex; flex-direction: column; gap: 12px; }
.gap-card li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: var(--cream-soft); border-radius: var(--radius-sm);
  color: var(--brown); font-weight: 500;
}
.gap-card li::before { content: '⚠'; color: var(--gold-dark); font-size: 1.1rem; }

.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.principle {
  padding: 32px 24px; border-radius: var(--radius-md); text-align: center;
  background: var(--white); border: 1px solid var(--gold-light);
  transition: all var(--transition);
}
.principle:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.principle .num {
  font-family: var(--serif); font-size: 2.5rem; font-weight: 700;
  color: var(--gold-dark); margin-bottom: 8px;
}

.transparency {
  background: var(--brown-dark); color: var(--cream);
  padding: 64px 48px; border-radius: var(--radius-lg);
  text-align: center; position: relative; overflow: hidden;
  border: 2px solid var(--gold);
}
.transparency::before {
  content: '"'; font-family: var(--serif); font-size: 14rem; color: rgba(201,169,97,.18);
  position: absolute; top: -40px; left: 30px; line-height: 1;
}
.transparency-quote {
  font-family: var(--serif); font-size: 1.7rem; font-style: italic;
  color: var(--cream); line-height: 1.5; max-width: 760px; margin: 0 auto;
  position: relative; z-index: 2;
}
.transparency-quote span { color: var(--gold); font-weight: 700; font-style: normal; }

/* ---------- CONTACT PAGE ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.contact-card {
  background: var(--white); padding: 36px; border-radius: var(--radius-md);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.contact-info-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--gold-bg); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-info-text strong { display: block; font-size: .8rem; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.contact-info-text p { color: var(--brown); font-size: 1rem; font-weight: 600; margin: 0; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .82rem; color: var(--muted);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; font-weight: 600;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--ivory); color: var(--brown);
  font-family: var(--sans); font-size: .95rem;
  transition: all var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,169,97,.18);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---------- UTILITIES ---------- */
.fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp .8s ease forwards; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero-inner, .confusion-grid, .why-grid, .clinics-grid,
  .about-intro-grid, .gap-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .mvg-grid, .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .step { grid-template-columns: 80px 1fr; }
  .step-icon { display: none; }
  .section { padding: 72px 0; }
  .hero-feature-card.c1, .hero-feature-card.c2 { display: none; }
}
@media (max-width: 560px) {
  .services-grid, .mvg-grid, .principles-grid, .locations-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-num { font-size: 1.6rem; }
  .transparency { padding: 40px 24px; }
  .transparency-quote { font-size: 1.25rem; }
}
