/* ─── VARIABLES ──────────────────────────────────────── */
:root {
  --dark:        #0F2E24;
  --dark-2:      #163d30;
  --teal:        #0D9E75;
  --teal-mid:    #0b8a65;
  --teal-light:  #9FE1CB;
  --teal-tint:   #f0faf7;
  --green:       #0A7A5A;
  --green-h:     #09674d;
  --white:       #ffffff;
  --ink:         #1a1a1a;
  --ink-2:       #444;
  --ink-3:       #777;
  --border:      #e5e5e5;
  --amber:       #F5A623;
  --r-sm:        6px;
  --r-md:        10px;
  --r-lg:        16px;
  --r-xl:        22px;
  --sh:          0 4px 24px rgba(0,0,0,0.09);
  --sh-teal:     0 6px 28px rgba(13,158,117,0.35);
  --sh-strong:   0 8px 40px rgba(0,0,0,0.14);
}

/* ─── RESET & BASE ───────────────────────────────────── */
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1,h2,h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; line-height: 1.15; }

.sec-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal); display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.sec-eyebrow::before {
  content: '';
  display: block; width: 24px; height: 2px;
  background: var(--teal); border-radius: 2px; flex-shrink: 0;
}
.sec-h2 { font-size: clamp(28px, 3.8vw, 42px); color: var(--ink); margin-bottom: 12px; }
.sec-h2 em { font-style: italic; color: var(--teal); }
.sec-sub  { font-size: 15px; color: var(--ink-3); margin-bottom: 44px; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--green) 100%);
  color: #fff;
  padding: 14px 28px; border-radius: 5px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  transition: transform .18s, box-shadow .2s;
  white-space: nowrap; border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(13,158,117,0.38);
  letter-spacing: 0.01em;
}
.btn-primary:hover  {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(13,158,117,0.5);
}
.btn-primary:active { transform: scale(0.98); }
.btn-primary:focus-visible { outline: 3px solid var(--teal-light); outline-offset: 3px; }
.btn-full { width: 100%; justify-content: center; }

.btn-ghost-hero {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: rgba(255,255,255,0.85);
  padding: 14px 28px; border-radius: 5px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: all .2s; white-space: nowrap;
}
.btn-ghost-hero:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.65); }
.btn-ghost-hero:focus-visible { outline: 3px solid var(--teal-light); outline-offset: 3px; }

/* Hero CTA pulse glow */
.hero-btns .btn-primary {
  animation: heroPulse 3.5s ease-in-out infinite;
}
@keyframes heroPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(13,158,117,0.38); }
  50%      { box-shadow: 0 4px 36px rgba(13,158,117,0.65), 0 0 0 8px rgba(13,158,117,0.08); }
}

/* ─── NAVBAR ─────────────────────────────────────────── */
.logo {
  display: flex; align-items: center;
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 400; color: var(--ink);
  text-decoration: none;
}
.logo b { font-weight: 700; color: var(--teal); }
.logo-img-wrap { gap: 0; }
.nav-brand {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}
.nav-logo-img {
  height: 42px; width: auto; object-fit: contain; display: block;
}
.nav-iso-badge {
  display: flex; align-items: center;
  padding-left: 14px;
  border-left: 1px solid rgba(0,0,0,0.12);
}
.nav-iso-img {
  height: 32px; width: auto; object-fit: contain; display: block;
}

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 2px; transition: width .25s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }
.nav-links a:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 2px; }

.nav-right { display: flex; align-items: center; gap: 10px; }

.nav-wa {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 16px; border: 1.5px solid var(--teal); border-radius: 5px;
  font-size: 13px; font-weight: 600; color: var(--teal); transition: all .2s;
}
.nav-wa:hover { background: var(--teal); color: #fff; box-shadow: 0 4px 14px rgba(13,158,117,0.3); }
.nav-book { padding: 9px 18px; font-size: 13px; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 2px; }
.hamburger span { display: block; width: 100%; height: 1.5px; background: var(--ink); border-radius: 2px; transition: all .3s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse 72% 72% at 65% 50%, rgba(13,158,117,0.14) 0%, transparent 68%),
    radial-gradient(ellipse 40% 55% at 15% 85%, rgba(13,158,117,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 90% 10%, rgba(13,158,117,0.06) 0%, transparent 50%),
    var(--dark);
  min-height: 100svh;
  padding: 80px 24px 60px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
/* subtle grain texture overlay */
.hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1fr 360px 280px;
  gap: 40px; align-items: center;
  position: relative; z-index: 1;
}

/* Hero copy */
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal-light);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
}
.hero-eyebrow::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--teal-light); }
.hero-h1 {
  font-size: clamp(34px, 4.5vw, 56px); font-weight: 600;
  line-height: 1.08; color: #fff; margin-bottom: 20px;
}
.hero-h1 em {
  font-style: italic; color: var(--teal-light);
  background: linear-gradient(95deg, #9FE1CB 0%, #52c9a1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.62);
  line-height: 1.8; margin-bottom: 30px; max-width: 400px;
}

.hero-stats {
  display: flex; align-items: center; gap: 0; margin-bottom: 34px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md);
  padding: 0; overflow: hidden;
}
.hs {
  text-align: center; flex: 1;
  padding: 14px 16px;
  transition: background .2s;
}
.hs:hover { background: rgba(255,255,255,0.06); }
.hs-n     {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
  background: linear-gradient(to bottom, #ffffff 20%, rgba(255,255,255,0.78) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hs-stars { display: block; font-size: 17px; color: var(--amber); line-height: 1; }
.hs-l     { display: block; font-size: 10px; color: rgba(255,255,255,0.38); margin-top: 4px; letter-spacing: 0.04em; }
.hs-sep   { width: 1px; height: 40px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.hs-link  { text-decoration: none; cursor: pointer; }
.hs-link:hover { background: rgba(255,255,255,0.09); }

.hero-btns  { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-micro { font-size: 12px; color: rgba(255,255,255,0.28); letter-spacing: 0.03em; display: flex; align-items: center; gap: 6px; }
.hero-micro::before {
  content: '';
  display: inline-block; width: 6px; height: 6px;
  background: var(--teal); border-radius: 50;
  animation: blink 2s infinite;
}

/* Doctor slideshow */
.hero-visual { position: relative; }

.doc-slider {
  position: relative; width: 100%; aspect-ratio: 3/4;
  max-height: 500px; border-radius: var(--r-xl);
  overflow: hidden; background: rgba(13,158,117,0.12);
  box-shadow:
    0 0 0 1px rgba(13,158,117,0.2),
    0 24px 60px rgba(0,0,0,0.4),
    0 0 40px rgba(13,158,117,0.08);
}
.doc-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; }
.doc-slide.active { opacity: 1; }
.doc-slide img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.doc-dots { display: flex; gap: 6px; margin-top: 14px; justify-content: center; }
.ddot {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2);
  transition: all .3s; cursor: pointer; border: none;
}
.ddot:hover { background: rgba(255,255,255,0.5); }
.ddot.active { background: var(--teal-light); width: 24px; border-radius: 3px; }

.hero-iso {
  position: absolute; bottom: 56px; right: 12px;
  background: rgba(255,255,255,0.96); border-radius: var(--r-sm);
  padding: 6px 10px; box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.6);
  display: flex; align-items: center;
}
.hero-iso img { height: 34px; width: auto; }
.hero-iso-name {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  color: #0F2E24; white-space: nowrap; letter-spacing: 0.01em;
}
.hero-iso-sep {
  width: 1px; height: 18px; background: rgba(15,46,36,0.18); flex-shrink: 0;
}

.hero-badge {
  position: absolute; top: 18px; left: -14px;
  background: linear-gradient(90deg, rgba(13,158,117,0.95), rgba(10,122,90,0.95));
  color: #fff; font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.03em;
  padding: 8px 16px 8px 12px; border-radius: 0 var(--r-sm) var(--r-sm) 0;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 4px 4px 20px rgba(0,0,0,0.25);
}
.badge-dot {
  width: 7px; height: 7px; background: #fff;
  border-radius: 50%; flex-shrink: 0; animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

/* Hero cards (right column) */
.hero-cards { display: flex; flex-direction: column; gap: 10px; }

.hcard {
  background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--teal); border-radius: var(--r-sm);
  padding: 12px 14px; display: flex; align-items: center; gap: 12px;
  transition: background .2s, transform .2s;
}
.hcard:hover { background: rgba(255,255,255,0.09); transform: translateX(3px); }
.hcard-icon {
  width: 36px; height: 36px; background: rgba(13,158,117,0.15);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.hcard-title { font-size: 13px; font-weight: 600; color: #fff; }
.hcard-desc  { font-size: 11px; color: rgba(255,255,255,0.42); margin-top: 2px; }

.hcard-stat {
  background: linear-gradient(135deg, var(--teal) 0%, var(--green) 100%);
  border-radius: var(--r-md);
  padding: 20px 14px; text-align: center; margin-top: 4px;
  box-shadow: 0 6px 24px rgba(13,158,117,0.35);
}
.hcard-stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 600; color: #fff; line-height: 1;
}
.hcard-stat-l { font-size: 11px; color: rgba(255,255,255,0.82); margin-top: 5px; letter-spacing: 0.04em; }

/* ─── CREDENTIALS STRIP ──────────────────────────────── */
.creds {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 24px;
  position: relative;
}
.creds::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--teal) 30%, var(--teal-light) 50%, var(--teal) 70%, transparent 100%);
}
.creds-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: stretch;
  height: 56px;
}
.cred {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
  padding: 0 8px;
  transition: background .2s;
}
.cred:hover { background: rgba(255,255,255,0.05); }
.cred-sep {
  width: 1px; background: rgba(255,255,255,0.1);
  flex-shrink: 0; margin: 10px 0;
}
.cred-div { display: none; }
.cred-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600; line-height: 1;
  color: #fff;
  display: block;
}
.cred-l {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px; color: var(--teal-light);
  letter-spacing: 0.04em; display: block;
  white-space: nowrap;
}

/* ─── OFFER SECTION ──────────────────────────────────── */
.offer {
  background:
    radial-gradient(ellipse 55% 60% at 15% 50%, rgba(13,158,117,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 85% 80%, rgba(13,158,117,0.07) 0%, transparent 60%),
    var(--dark);
  padding: 80px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.offer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}

.offer-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(245,166,35,0.12); color: var(--amber);
  border: 1px solid rgba(245,166,35,0.28); padding: 7px 14px;
  border-radius: 4px; font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 20px;
}
.offer-tag-dot {
  width: 7px; height: 7px; background: var(--amber);
  border-radius: 50%; animation: blink 1.5s infinite; flex-shrink: 0;
}
.offer-h2 {
  font-size: clamp(26px, 3.2vw, 40px); color: #fff;
  line-height: 1.12; margin-bottom: 24px;
}
.offer-h2 em { font-style: italic; color: var(--teal-light); }

.offer-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.offer-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: rgba(255,255,255,0.82); line-height: 1.5;
}
.offer-item-check {
  width: 20px; height: 20px; background: rgba(13,158,117,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.offer-item em { color: rgba(255,255,255,0.38); font-style: normal; margin-left: 5px; }

.offer-meta {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,0.4);
}
.offer-meta strong { color: var(--amber); }
.offer-count { color: var(--teal-light); display: flex; align-items: center; gap: 6px; }
.offer-count::before { content: ''; width: 6px; height: 6px; background: var(--teal-light); border-radius: 50%; animation: blink 2s infinite; }

/* Offer form card — premium glass */
.offer-right {
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  /* gradient border trick */
  background-clip: padding-box;
  border: 1px solid transparent;
  background-image: linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.05));
  box-shadow:
    0 0 0 1px rgba(13,158,117,0.25),
    0 20px 60px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.offer-right::before {
  content: ''; position: absolute; top: 0; left: 20px; right: 20px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--teal-light), var(--teal), transparent);
  border-radius: 2px; top: -1px;
}
.offer-form { display: flex; flex-direction: column; gap: 13px; }
.form-title {
  font-family: 'Inter', sans-serif; font-size: 17px;
  font-weight: 700; color: #fff; margin-bottom: 4px;
}
.form-subtitle {
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: rgba(255,255,255,0.35); margin-bottom: 4px;
}
.offer-form label {
  font-family: 'Inter', sans-serif; font-size: 11px;
  font-weight: 600; color: rgba(255,255,255,0.45); letter-spacing: 0.08em;
  text-transform: uppercase; display: block; margin-bottom: 5px;
}
.offer-form input {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm); padding: 13px 16px;
  font-size: 14px; color: #fff; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color .2s, background .2s; width: 100%;
}
.offer-form input::placeholder { color: rgba(255,255,255,0.24); }
.offer-form input:focus {
  border-color: var(--teal);
  background: rgba(13,158,117,0.07);
  box-shadow: 0 0 0 3px rgba(13,158,117,0.12);
}
.form-note {
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: rgba(255,255,255,0.28); display: flex; align-items: center; gap: 6px;
}
.form-note::before { content: '🔒'; font-size: 11px; }

/* ─── TRUST STRIP ────────────────────────────────────── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
}
.trust-strip-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.trust-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3);
  white-space: nowrap;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--ink-2);
  background: var(--teal-tint);
  border: 1px solid rgba(13,158,117,0.18);
  padding: 6px 12px; border-radius: 50px;
  transition: all .2s; white-space: nowrap;
}
.trust-badge svg { flex-shrink: 0; }
.trust-badge:hover { background: rgba(13,158,117,0.12); border-color: rgba(13,158,117,0.3); }
.trust-sep { width: 1px; height: 16px; background: var(--border); flex-shrink: 0; }

/* ─── BEFORE / AFTER ─────────────────────────────────── */
.ba-section { background: var(--white); padding: 84px 0; }
.ba-section .section-inner { text-align: center; }
.ba-section .sec-eyebrow { display: inline-flex; }
.ba-section .sec-sub { margin-bottom: 44px; }

.ba-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-bottom: 28px;
}
.ba-item { display: flex; flex-direction: column; gap: 12px; }

.ba-slider {
  position: relative; width: 100%; aspect-ratio: 1/1;
  border-radius: var(--r-lg); overflow: hidden;
  user-select: none; touch-action: pan-y;
  cursor: ew-resize;
  box-shadow: var(--sh-strong);
  border: 1px solid var(--border);
  -webkit-user-select: none;
}
.ba-slider:hover {
  box-shadow: 0 12px 50px rgba(0,0,0,0.16);
}

.ba-before-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
.ba-after-clip {
  position: absolute; top: 0; right: 0; height: 100%;
  width: 50%; overflow: hidden; pointer-events: none;
}
.ba-after-clip img {
  position: absolute; top: 0; right: 0;
  height: 100%; object-fit: cover;
  pointer-events: none;
}

.ba-lbl {
  position: absolute; top: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 10px;
  border-radius: 50px; color: #fff; pointer-events: none;
  z-index: 20;
}
.ba-lbl-before { left: 10px;  background: rgba(0,0,0,0.55); }
.ba-lbl-after  { right: 10px; background: rgba(13,158,117,0.9); }

.ba-handle {
  position: absolute; top: 0; height: 100%;
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  pointer-events: none; z-index: 5;
}
.ba-line { width: 2px; height: 100%; background: rgba(255,255,255,0.92); }
.ba-knob {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.28); gap: 0;
  border: 2px solid rgba(13,158,117,0.3);
}

.ba-cap { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--ink-3); text-align: center; }
.ba-note {
  font-family: 'Inter', sans-serif; font-size: 12px; color: var(--ink-2);
  max-width: 680px; margin: 0 auto; padding: 13px 18px;
  background: var(--teal-tint); border-radius: var(--r-sm);
  border: 1px solid rgba(13,158,117,0.15);
  display: flex; align-items: center; gap: 8px; justify-content: center;
}

/* ─── SERVICES ───────────────────────────────────────── */
.svc-section { background: var(--teal-tint); padding: 84px 0 0; overflow-x: hidden; }

.svc-heading {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px 36px;
  text-align: center;
}
.svc-heading .sec-eyebrow { display: inline-flex; margin-bottom: 10px; }
.svc-heading .sec-h2 { margin-bottom: 0; }

.svc-outer { position: relative; overflow: hidden; padding-bottom: 56px; max-width: 1200px; margin: 0 auto; }

.svc-track {
  display: flex; gap: 18px;
  padding: 4px 24px 8px;
  cursor: grab;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  user-select: none; -webkit-user-select: none;
}
.svc-track.dragging { cursor: grabbing; }

.svc-card {
  flex: 0 0 calc((100% - 36px) / 3);
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
  display: flex; flex-direction: column;
}
.svc-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); transform: translateY(-2px); }

.svc-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--teal-tint); flex-shrink: 0; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.svc-card:hover .svc-img img { transform: scale(1.06); }

.svc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.svc-body h3 { font-size: 19px; font-weight: 600; color: var(--ink); }
.svc-body p  { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--ink-2); line-height: 1.7; flex: 1; }
.svc-tag {
  display: inline-block; font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; color: var(--teal);
  background: rgba(13,158,117,0.08); padding: 4px 10px;
  border-radius: 50px; margin-top: 2px;
  border: 1px solid rgba(13,158,117,0.15);
}
.svc-link {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--teal); margin-top: 6px; display: inline-flex; align-items: center; gap: 5px;
  transition: gap .2s;
}
.svc-link:hover { gap: 8px; text-decoration: none; }

.svc-nav {
  display: flex; align-items: center; gap: 14px;
  justify-content: center; padding: 14px 24px 0;
}
.svc-arr {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 14px; color: var(--ink-2); display: flex;
  align-items: center; justify-content: center; transition: all .2s;
}
.svc-arr:hover:not(:disabled) { border-color: var(--teal); color: var(--teal); background: var(--teal-tint); }
.svc-arr:disabled { opacity: 0.35; cursor: not-allowed; }
.svc-dots { display: flex; gap: 6px; }
.sdot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--border);
  transition: all .3s; cursor: pointer; border: none;
}
.sdot.active { background: var(--teal); width: 20px; border-radius: 3px; }

/* ─── ABOUT ──────────────────────────────────────────── */
.about { background: var(--white); padding: 84px 24px; }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center;
}

.about-img-wrap {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px var(--border);
}
.about-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,46,36,0.25) 0%, transparent 50%);
  pointer-events: none;
}
.about-img-wrap img {
  width: 100%; display: block;
  height: auto; background: var(--teal-tint);
}
.about-badge {
  position: absolute; bottom: 16px; right: 16px; z-index: 2;
  background: var(--dark); border-radius: var(--r-md);
  padding: 14px 18px; text-align: center;
  border: 1px solid rgba(13,158,117,0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.ab-n { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--teal); line-height: 1; }
.ab-l { font-family: 'Inter', sans-serif; font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 5px; }

.about-copy .sec-eyebrow { display: inline-flex; }
.about-role { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 18px; letter-spacing: 0.01em; }
.about-p    { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--ink-2); line-height: 1.85; margin-bottom: 24px; }
.about-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.about-chips span {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: var(--teal);
  border: 1px solid rgba(13,158,117,0.22); padding: 6px 14px; border-radius: 50px;
  background: rgba(13,158,117,0.05); transition: all .2s;
}
.about-chips span:hover { background: rgba(13,158,117,0.1); border-color: var(--teal); }

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testi { background: var(--teal-tint); padding: 84px 0 0; overflow-x: hidden; }
.testi-heading { max-width: 1200px; margin: 0 auto; padding: 0 24px 36px; text-align: center; }
.testi-heading .sec-eyebrow { display: inline-flex; }
.testi-outer { position: relative; overflow: hidden; padding-bottom: 56px; max-width: 1200px; margin: 0 auto; }

.testi-track {
  display: flex; gap: 20px;
  padding: 4px 24px 8px;
  cursor: grab;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  user-select: none; -webkit-user-select: none;
}
.testi-track.dragging { cursor: grabbing; }

.testi-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: var(--white); border-radius: var(--r-lg);
  padding: 28px; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .25s, transform .25s;
  min-width: 0; position: relative; overflow: hidden;
}
/* Decorative quote mark */
.testi-card::before {
  content: '"';
  position: absolute; top: -6px; left: 18px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 100px; font-weight: 700; line-height: 1;
  color: rgba(13,158,117,0.08);
  pointer-events: none; user-select: none;
}
/* Top accent line on hover */
.testi-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.testi-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-2px); }
.testi-card:hover::after { transform: scaleX(1); }

.testi-stars { color: var(--amber); font-size: 15px; letter-spacing: 1px; }
.testi-text  {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; line-height: 1.72; color: var(--ink-2);
  font-style: italic; flex: 1; position: relative; z-index: 1;
}
.testi-auth { display: flex; align-items: center; gap: 11px; }
.testi-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(13,158,117,0.2), rgba(13,158,117,0.1));
  color: var(--teal); font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 1.5px solid rgba(13,158,117,0.2);
}
.testi-name { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; color: var(--ink); }
.testi-meta { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--ink-3); margin-top: 2px; }

.testi-nav { display: flex; align-items: center; gap: 14px; justify-content: center; padding: 14px 24px 0; }
.testi-arr {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 14px; color: var(--ink-2); display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.testi-arr:hover:not(:disabled) { border-color: var(--teal); color: var(--teal); background: var(--teal-tint); }
.testi-arr:disabled { opacity: 0.35; cursor: not-allowed; }
.testi-dots { display: flex; gap: 6px; }
.tdot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: all .3s; cursor: pointer; border: none; }
.tdot.active { background: var(--teal); width: 20px; border-radius: 3px; }

.google-row { text-align: center; padding: 22px 24px 36px; }
.google-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border); border-radius: 50px;
  padding: 11px 24px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--ink); background: var(--white); transition: all .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.google-btn:hover { border-color: #4285F4; color: #4285F4; box-shadow: 0 4px 18px rgba(66,133,244,0.15); }

/* ─── FAQ ────────────────────────────────────────────── */
.faq { background: var(--white); padding: 84px 24px; }
.faq .section-inner { text-align: center; }
.faq .sec-eyebrow { display: inline-flex; }
.faq-list {
  max-width: 720px; margin: 36px auto 0;
  border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; text-align: left;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 18px 22px; text-align: left; background: none;
  font-family: 'Inter', sans-serif; font-size: 14.5px; font-weight: 500; color: var(--ink);
  transition: background .15s, color .15s;
}
.faq-q:hover { background: var(--teal-tint); }
.faq-q[aria-expanded="true"] { color: var(--teal); background: rgba(13,158,117,0.04); }
.faq-ic {
  font-size: 20px; color: var(--teal); flex-shrink: 0;
  transition: transform .3s ease; font-weight: 300; line-height: 1;
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  background: rgba(13,158,117,0.08); border-radius: 50%;
}
.faq-q[aria-expanded="true"] .faq-ic { transform: rotate(45deg); background: rgba(13,158,117,0.15); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(0.4, 0, 0.2, 1), padding .3s;
  padding: 0 22px;
}
.faq-a.open { max-height: 260px; padding: 0 22px 18px; }
.faq-a p {
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--ink-2);
  line-height: 1.85;
  border-left: 3px solid rgba(13,158,117,0.25); padding-left: 14px;
}

/* ─── FINAL CTA ──────────────────────────────────────── */
.cta-section {
  background:
    radial-gradient(ellipse 60% 80% at 50% 30%, rgba(13,158,117,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 85% 75%, rgba(13,158,117,0.08) 0%, transparent 55%),
    linear-gradient(160deg, var(--dark) 0%, #0b2420 50%, var(--dark-2) 100%);
  padding: 88px 24px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--teal) 30%, var(--teal-light) 50%, var(--teal) 70%, transparent 95%);
}
.cta-inner { max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }

.cta-h2 {
  font-size: clamp(28px, 3.8vw, 44px); font-weight: 600; color: #fff; margin-bottom: 12px;
}
.cta-sub   { font-family: 'Inter', sans-serif; font-size: 16px; color: rgba(255,255,255,0.52); margin-bottom: 16px; }
.cta-offer { font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 36px; }
.cta-offer strong { color: var(--amber); }

.cta-contacts { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.cta-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 5px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  transition: all .2s; white-space: nowrap;
}
.cta-call { background: rgba(255,255,255,0.06); color: #fff; border: 1px solid rgba(255,255,255,0.14); }
.cta-call:hover { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.3); }
.cta-wa   { background: #25D366; color: #fff; border: 1px solid transparent; box-shadow: 0 4px 18px rgba(37,211,102,0.3); }
.cta-wa:hover { background: #1ebe5c; box-shadow: 0 6px 26px rgba(37,211,102,0.45); transform: translateY(-1px); }
.cta-web  { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.1); }
.cta-web:hover { color: #fff; background: rgba(255,255,255,0.09); }

.cta-divider {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
  font-family: 'Inter', sans-serif; font-size: 11px; color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}
.cta-divider::before,.cta-divider::after { content:''; flex:1; height:1px; background:rgba(255,255,255,0.07); }

.cta-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.cta-form label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.cta-form input {
  flex: 1; min-width: 170px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px; padding: 13px 16px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: #fff;
  outline: none; transition: border-color .2s, background .2s;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.26); }
.cta-form input:focus {
  border-color: var(--teal);
  background: rgba(13,158,117,0.08);
  box-shadow: 0 0 0 3px rgba(13,158,117,0.12);
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.6fr 1fr; gap: 40px;
  padding: 52px 24px 36px;
}

.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 15px; color: #fff; margin-bottom: 14px;
}
.footer-logo b { color: var(--teal); }
.footer-logo-img {
  height: 36px; width: auto; object-fit: contain;
  border-radius: 6px;
  background: #fff;
  padding: 3px 6px;
  display: block;
}
.footer-brand p { font-family: 'Inter', sans-serif; font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.75; margin-bottom: 16px; }

.footer-ext { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-ext a {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; color: var(--teal-light);
  border: 1px solid rgba(13,158,117,0.22); padding: 5px 12px; border-radius: 50px; transition: all .2s;
}
.footer-ext a:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

.footer-locs h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.13em; color: rgba(255,255,255,0.3); margin-bottom: 16px;
}
.floc { margin-bottom: 16px; display: flex; flex-direction: column; gap: 3px; }
.floc-label {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: rgba(255,255,255,0.78); font-weight: 600;
}
.floc-pin { color: var(--teal); flex-shrink: 0; }
.floc p { font-family: 'Inter', sans-serif; font-size: 11px; color: rgba(255,255,255,0.36); line-height: 1.65; padding-left: 19px; }
.floc a { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--teal-light); font-weight: 600; transition: color .2s; padding-left: 19px; }
.floc a:hover { color: var(--teal); }

.footer-contact a {
  display: block; font-family: 'Inter', sans-serif; font-size: 12px;
  color: rgba(255,255,255,0.52); margin-bottom: 8px; transition: color .2s;
}
.footer-contact a:hover { color: var(--teal-light); }
.footer-hours { font-family: 'Inter', sans-serif; font-size: 11px; color: rgba(255,255,255,0.28); line-height: 1.75; margin: 10px 0; }
.footer-map-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: var(--teal-light);
  border: 1px solid rgba(13,158,117,0.22); padding: 7px 12px; border-radius: 50px; transition: all .2s; margin-top: 4px;
}
.footer-map-cta:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

.footer-map {
  margin-top: 14px; border-radius: var(--r-md);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.08);
}
.footer-map iframe {
  display: block; width: 100%; height: 170px;
  border: none; filter: grayscale(35%) brightness(0.85);
}

.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-family: 'Inter', sans-serif; font-size: 11px; color: rgba(255,255,255,0.2);
}
.footer-legal { display: flex; gap: 14px; align-items: center; }
.footer-legal a, .flegal-btn {
  font-family: 'Inter', sans-serif; font-size: 11px; color: rgba(255,255,255,0.2);
  transition: color .2s; padding: 0; cursor: pointer;
}
.footer-legal a:hover, .flegal-btn:hover { color: rgba(255,255,255,0.6); }

/* ─── POPUPS ─────────────────────────────────────────── */
.popup-ov {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.65);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.popup-ov.active { opacity: 1; pointer-events: all; }

.popup-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 36px 32px; max-width: 420px; width: 100%;
  position: relative;
  transform: translateY(18px) scale(0.98);
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 28px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05);
}
.popup-ov.active .popup-card { transform: translateY(0) scale(1); }

.popup-x {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px; border-radius: 50%;
  background: #f1f1f1; color: var(--ink-2); font-size: 12px;
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.popup-x:hover { background: var(--ink); color: #fff; transform: rotate(90deg); }

.popup-tag {
  display: inline-block; font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber); background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.22); padding: 5px 12px; border-radius: 50px; margin-bottom: 14px;
}
.popup-h3 {
  font-size: 26px; font-weight: 600; color: var(--ink);
  margin-bottom: 10px; line-height: 1.2;
}
.popup-p { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--ink-2); line-height: 1.65; margin-bottom: 16px; }
.popup-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.popup-list li {
  font-family: 'Inter', sans-serif; font-size: 13px; color: var(--teal); font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.popup-list li::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0;
  background: rgba(13,158,117,0.12); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230D9E75' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.popup-deadline { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--amber); font-weight: 700; margin-bottom: 18px; }
.popup-note { font-family: 'Inter', sans-serif; text-align: center; font-size: 11px; color: var(--ink-3); margin-top: 11px; }

.popup-exit { max-width: 380px; }
.exit-tag { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.exit-sub { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--ink-3); margin-bottom: 0; line-height: 1.65; }
.exit-form { display: flex; flex-direction: column; gap: 11px; margin-top: 18px; }
.exit-form label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.exit-form input {
  background: var(--teal-tint); border: 1.5px solid rgba(13,158,117,0.15);
  border-radius: var(--r-sm); padding: 13px 15px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--ink);
  outline: none; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.exit-form input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,158,117,0.12); }
.exit-note { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--ink-3); text-align: center; margin-top: 10px; }

.privacy-card { max-width: 500px; max-height: 80vh; overflow-y: auto; }
.privacy-body { margin-top: 14px; }
.privacy-body h4 { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; color: var(--ink); margin: 15px 0 5px; }
.privacy-body p  { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--ink-2); line-height: 1.75; margin-bottom: 6px; }
.privacy-body a  { color: var(--teal); text-decoration: underline; }

/* ─── MOBILE STICKY BAR ──────────────────────────────── */
.mob-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--dark); padding: 10px 12px 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 8px;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.35);
}
.mob-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 6px; border-radius: 6px;
  font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.01em; min-height: 44px;
  transition: transform .15s, opacity .15s;
}
.mob-btn:active { transform: scale(0.97); opacity: 0.9; }
.mob-call { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.12); }
.mob-wa   { background: #25D366; color: #fff; box-shadow: 0 4px 14px rgba(37,211,102,0.3); }
.mob-book { background: linear-gradient(135deg, var(--teal), var(--green)); color: #fff; font-size: 11.5px; padding: 12px 6px; box-shadow: 0 4px 14px rgba(13,158,117,0.4); }

/* ─── FORM SUCCESS ───────────────────────────────────── */
.form-success { text-align: center; padding: 20px; }
.form-success-icon  { font-size: 28px; margin-bottom: 10px; }
.form-success-title { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; color: var(--teal); }
.form-success-sub   { font-family: 'Inter', sans-serif; font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 6px; }
.popup-card .form-success-sub { color: var(--ink-3); }

/* ─── SCROLL ANIMATIONS ──────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.fd1 { transition-delay: .1s; }
.fd2 { transition-delay: .2s; }
.fd3 { transition-delay: .3s; }

/* ─── WAVE DIVIDER ───────────────────────────────────── */
.wave-divider {
  display: block; width: 100%; overflow: hidden;
  line-height: 0; background: var(--dark);
  max-height: 24px;
}
.wave-divider svg { display: block; width: 100%; }

/* ─── REDUCED MOTION ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── RESPONSIVE: TABLET 1024px ─────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 320px; gap: 32px; }
  .hero-cards { display: none; }
  .about-inner { grid-template-columns: 1fr 1.1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .offer-inner { gap: 36px; }
  .svc-card   { flex: 0 0 calc((100% - 18px) / 2); }
  .testi-card { flex: 0 0 calc((100% - 20px) / 2); }
  .trust-strip-inner { gap: 8px; }
}

/* ─── RESPONSIVE: MOBILE 768px ──────────────────────── */
@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-book   { display: none; }
  .hamburger  { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: #fff; padding: 22px 24px; gap: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1); z-index: 998;
  }
  .nav-links.open a { font-size: 16px; }

  .hero { padding: 72px 16px 52px; min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    display: flex; flex-direction: column; gap: 0;
  }
  .hero-copy   { order: 2; padding-top: 24px; }
  .hero-visual { order: 1; width: 100%; }
  .hero-cards  { display: none; }

  .doc-slider {
    aspect-ratio: 3/4; width: 100%;
    max-height: 72vh; height: auto; border-radius: var(--r-lg);
  }

  .hero-stats {
    gap: 0; flex-wrap: nowrap; justify-content: stretch;
    margin-bottom: 24px; border-radius: var(--r-sm);
  }
  .hs { flex: 1; padding: 12px 8px; }
  .hs-sep { display: block; }
  .hs-n { font-size: 20px; }
  .hs-stars { font-size: 13px; }
  .hs-l { font-size: 10px; margin-top: 2px; }

  .hero-badge { display: none; }
  .hero-h1    { font-size: 36px; }
  .hero-btns  { flex-direction: column; }
  .btn-primary, .btn-ghost-hero { width: 100%; justify-content: center; }

  .creds { padding: 0 12px; }
  .creds-inner { height: 48px; }
  .cred { padding: 0 4px; }
  .cred-n { font-size: 14px; }
  .cred-l { font-size: 8px; }
  .cred-sep { margin: 8px 0; }

  .offer { padding: 52px 20px; }
  .offer-inner { grid-template-columns: 1fr; gap: 28px; }
  .offer-right { padding: 26px 20px; }

  .ba-section { padding: 60px 0; }
  .ba-grid {
    grid-template-columns: 1fr; gap: 20px;
    max-width: 420px; margin: 0 auto 24px; padding: 0 20px;
  }

  .svc-section { padding: 60px 0 0; }
  .svc-heading { padding: 0 20px 28px; }
  .svc-track { padding: 4px 20px 8px; }
  .svc-card { flex: 0 0 100%; }

  .about { padding: 60px 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 28px; }

  .testi { padding: 60px 0 0; }
  .testi-heading { padding: 0 20px 28px; }
  .testi-card { flex: 0 0 100%; }
  .testi-nav { display: flex; }

  .faq { padding: 60px 20px; }

  .cta-section { padding: 60px 20px; }
  .cta-contacts { flex-direction: column; align-items: stretch; }
  .cta-btn { justify-content: center; }
  .cta-form { flex-direction: column; }
  .cta-form input { min-width: auto; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 36px 20px 24px; }
  .footer-brand { grid-column: auto; }

  .mob-bar { display: flex; }
  body { padding-bottom: 70px; }

  /* Trust strip: wrap into 2 compact rows, all visible */
  .trust-strip { padding: 8px 12px; }
  .trust-strip-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }
  .trust-label { display: none; }
  .trust-sep { display: none; }
  .trust-badge { font-size: 10.5px; padding: 5px 9px; gap: 5px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 30px; }
  .ba-grid { padding: 0 16px; }
  .svc-card   { flex: 0 0 100%; }
  .testi-card { flex: 0 0 100%; }
  .popup-card { padding: 28px 22px; }
  .cred-n { font-size: 12px; }
  .cred-l { font-size: 7.5px; }
}

/* ─── NEW CLASSES (change instructions) ─────────────── */

/* Amber membership badge on service cards */
.svc-offer-note {
  font-size: 11px; font-weight: 500;
  color: #b45309; background: #fef3c7;
  border-radius: 4px; padding: 4px 8px;
  margin-top: 4px; display: inline-block;
}

/* Offer section intro paragraph */
.offer-intro {
  font-size: 14px; color: rgba(255,255,255,0.82);
  line-height: 1.7; margin-bottom: 20px;
  border-left: 2px solid var(--teal); padding-left: 12px;
}

/* Bonus offer item (Cold Laser) */
.offer-item-bonus { color: rgba(255,255,255,0.7); }
.offer-item-bonus em { color: rgba(255,255,255,0.4); font-style: normal; margin-left: 4px; }

/* Pill badge inside bonus item */
.offer-bonus-tag {
  display: inline-block; margin-top: 3px;
  font-size: 11px; color: #fbbf24;
  background: rgba(245,158,11,0.15);
  border-radius: 4px; padding: 2px 7px;
}

/* Amber info box below checklist */
.offer-membership-note {
  display: flex; align-items: flex-start; gap: 8px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 6px; padding: 10px 14px; margin-bottom: 20px;
  font-size: 12.5px; color: rgba(255,255,255,0.6); line-height: 1.55;
}
.offer-membership-note svg { flex-shrink: 0; margin-top: 2px; color: #f59e0b; }
.offer-membership-note strong { color: #fbbf24; }

/* Form subtitle */
.form-subtitle {
  font-size: 12px; color: rgba(255,255,255,0.4);
  line-height: 1.5; margin-top: -4px; margin-bottom: 12px;
}
/* ── ABOUT: Degree Cards ────────────────────────────── */
.about-degrees {
  display: flex; flex-direction: column; gap: 10px;
  margin: 16px 0 18px;
}
.about-degree-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: #f8fffe;
  border: 1px solid #d1fae5;
  border-left: 3px solid #0D9E75;
  border-radius: 8px; padding: 10px 14px;
}
.about-degree-icon { font-size: 18px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.about-degree-title {
  font-size: 13.5px; font-weight: 600; color: #0a3d2e;
}
.about-degree-sub {
  font-size: 12px; color: #4a7c6b; margin-top: 2px; line-height: 1.4;
}

/* ── OFFER: Access Banner ───────────────────────────── */
.offer-access-banner {
  display: flex; align-items: flex-start; gap: 8px;
  background: rgba(13,158,117,0.12);
  border: 1px solid rgba(13,158,117,0.3);
  border-radius: 6px; padding: 10px 14px;
  font-size: 12.5px; color: rgba(255,255,255,0.75);
  line-height: 1.55; margin-bottom: 16px;
}
.offer-access-banner svg { flex-shrink: 0; margin-top: 2px; color: #0D9E75; }
.offer-access-banner strong { color: #34d399; }

/* Form subtitle strong */
.form-subtitle strong { color: #fbbf24; }
