/* =========================================================
   Unicare Clinic — Design tokens
   ========================================================= */
:root {
  --teal-bright: #00aebb;
  --teal-deep: #00808e;
  --teal-ink: #012f35;
  --teal-text: #006672;   /* WCAG AA-compliant teal for small text on light bg */
  --teal-text-lg: #007883; /* WCAG-compliant teal for large text (headings) on light bg */
  --sand: #f7f3ec;
  --sand-dim: #efe9dd;
  --ink: #1b2b2e;
  --ink-soft: #4a5c5f;
  --coral: #e8503a;
  --amber: #e8a33d;
  --white: #ffffff;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 40px -20px rgba(1, 47, 53, 0.25);
  --shadow-card: 0 10px 30px -15px rgba(1, 47, 53, 0.2);
  --container-w: 1180px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-text);
  margin: 0 0 12px;
}
.eyebrow.center { text-align: center; }

.section-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--teal-ink);
}
.section-h2.center { text-align: center; max-width: 620px; margin-left: auto; margin-right: auto; }
.center { text-align: center; }

.service-body { font-size: 1.05rem; color: var(--ink-soft); max-width: 52ch; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal-deep); color: var(--white); box-shadow: var(--shadow-card); }
.btn-primary:hover { background: var(--teal-ink); }
.btn-outline { border-color: var(--teal-deep); color: var(--teal-text); background: transparent; }
.btn-outline:hover { background: var(--teal-deep); color: var(--white); }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.icon-whatsapp { width: 18px; height: 18px; fill: currentColor; }
.icon-sm { width: 18px; height: 18px; fill: none; stroke: var(--teal-deep); stroke-width: 1.6; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 243, 236, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(1, 47, 53, 0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; gap: 20px; }
.brand-logo { height: 64px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.nav-link { font-weight: 600; font-size: 0.95rem; color: var(--ink); background: none; border: none; padding: 0; }
.nav-link:hover { color: var(--teal-deep); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-toggle::after { content: "▾"; font-size: 0.7em; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-8px);
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-soft);
  padding: 10px; min-width: 240px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 600; }
.nav-dropdown-menu a:hover { background: var(--sand); color: var(--teal-deep); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  background: var(--white); border: 1px solid rgba(1,47,53,0.15); border-radius: 999px;
  padding: 8px 14px; font-weight: 700; font-size: 0.82rem; color: var(--ink-soft);
}
.lang-option { padding: 0 2px; }
.lang-option.is-active { color: var(--teal-deep); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.25s ease; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0; z-index: 99;
  background: var(--sand); padding: 20px 24px; overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { padding: 16px 4px; font-weight: 700; font-size: 1.05rem; border-bottom: 1px solid rgba(1,47,53,0.08); }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; padding: 64px 0 0; overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
  padding-bottom: 72px;
}
.hero-h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.3rem, 5vw, 3.6rem); line-height: 1.08; margin: 0 0 20px; color: var(--teal-ink);
}
.accent-text { color: var(--teal-text-lg); }
.hero-sub { font-size: 1.1rem; color: var(--ink-soft); max-width: 46ch; margin: 0 0 28px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-trust { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 22px; }
.hero-trust li { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; color: var(--ink-soft); }

.hero-visual { display: flex; justify-content: center; }
.scan-device {
  width: 100%; max-width: 420px; background: var(--teal-ink); border-radius: var(--radius-lg);
  padding: 18px; box-shadow: var(--shadow-soft);
}
.scan-device-header { display: flex; align-items: center; gap: 10px; padding: 4px 6px 14px; }
.scan-dot { width: 9px; height: 9px; border-radius: 50%; background: #ff6b57; box-shadow: 16px 0 0 #ffce5c, 32px 0 0 #6ee0a8; }
.scan-device-label { font-size: 0.72rem; color: #9fd8de; font-weight: 600; letter-spacing: 0.02em; margin-left: 8px; }
.scan-screen { border-radius: 14px; overflow: hidden; position: relative; aspect-ratio: 5 / 4; background: #012026; }
.scan-video { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.15) contrast(1.05); }
.scan-sweep-overlay {
  position: absolute; left: 0; width: 100%; height: 30%; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(186,247,255,0.28), transparent);
  animation: sweep 3.6s ease-in-out infinite;
}
@keyframes sweep {
  0% { top: -30%; }
  55% { top: 100%; }
  100% { top: 100%; }
}
.scan-readout { display: flex; justify-content: space-between; padding: 14px 6px 4px; font-size: 0.72rem; color: #9fd8de; letter-spacing: 0.04em; }
.scan-readout strong { color: var(--white); }

.scan-divider { position: relative; height: 3px; background: rgba(1, 47, 53, 0.08); overflow: hidden; }
.scan-divider-line {
  position: absolute; top: 0; left: -20%; width: 20%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--teal-bright), transparent);
  animation: divider-sweep 5s ease-in-out infinite;
}
@keyframes divider-sweep {
  0% { left: -20%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* =========================================================
   Pillars
   ========================================================= */
.pillars { padding: 84px 0; }
.pillar-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 44px; }
.pillar-card {
  background: var(--white); border-radius: var(--radius-md); padding: 26px 20px;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(1,47,53,0.06);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.pillar-num { font-family: var(--font-display); font-size: 1.4rem; color: #5a6f71; font-weight: 600; }
.pillar-card h3 { font-size: 1.02rem; margin: 4px 0 2px; color: var(--teal-ink); }
.pillar-card p { font-size: 0.85rem; color: var(--ink-soft); margin: 0; }
.pillar-flagship { background: linear-gradient(160deg, var(--teal-deep), var(--teal-ink)); color: var(--white); }
.pillar-flagship .pillar-num { color: rgba(255,255,255,0.35); }
.pillar-flagship h3 { color: var(--white); }
.pillar-flagship p { color: rgba(255,255,255,0.8); }
.pillar-tag {
  align-self: flex-start; background: rgba(255,255,255,0.18); color: var(--white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}

/* =========================================================
   Service sections
   ========================================================= */
.service-section { padding: 84px 0; }
.service-section.alt-bg { background: var(--sand-dim); }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.service-grid.reverse .service-copy { order: 2; }
.service-grid.reverse .service-visual { order: 1; }
.service-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.pretreat-row { margin: 26px 0; }
.pretreat-title { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); margin-bottom: 10px; }
.pretreat-items { display: flex; flex-wrap: wrap; gap: 14px; }
.pretreat-items.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pretreat-item {
  background: var(--white); border-radius: var(--radius-sm); padding: 14px 18px;
  display: flex; flex-direction: column; gap: 4px; min-width: 160px; box-shadow: var(--shadow-card);
}
.pretreat-item span { font-size: 0.82rem; color: var(--ink-soft); font-weight: 600; }
.pretreat-item strong { font-size: 1.3rem; color: var(--teal-deep); font-family: var(--font-display); }
.pretreat-item em { font-style: normal; font-size: 0.72rem; color: var(--amber); font-weight: 700; }
.price-free { color: var(--amber) !important; }

.tiers-title { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-soft); margin: 8px 0 24px; }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.tier-card { background: var(--white); border-radius: var(--radius-md); padding: 28px 24px; box-shadow: var(--shadow-card); position: relative; }
.tier-name { font-weight: 700; text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.06em; color: var(--ink-soft); margin: 0 0 10px; }
.tier-item { font-size: 1.05rem; font-weight: 600; color: var(--teal-ink); margin: 0 0 14px; }
.tier-price { font-family: var(--font-display); font-size: 2rem; color: var(--teal-deep); margin: 0; }
.tier-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 8px; }
.tier-recommended { border: 2px solid var(--teal-bright); transform: scale(1.03); }
.tier-badge {
  position: absolute; top: -14px; left: 24px; background: var(--coral); color: var(--white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.fine-print { font-size: 0.82rem; color: var(--ink-soft); max-width: 70ch; }

.process-strip { margin: 32px 0 0; }
.process-strip img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-card); display: block; }
.process-strip figcaption { text-align: center; font-size: 0.82rem; color: var(--ink-soft); margin-top: 12px; font-style: italic; }

.why-ultrasound { margin-top: 56px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.why-ultrasound img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.why-ultrasound-copy h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--teal-ink); margin: 0 0 12px; }
.why-ultrasound-copy p { color: var(--ink-soft); margin: 0; max-width: 46ch; }

.visual-stack { display: flex; flex-direction: column; gap: 20px; }
.visual-stack .wide-photo { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); display: block; aspect-ratio: 16/10; object-fit: cover; }
.visual-stack .portrait-photo { width: 100%; max-width: 300px; margin: 0 auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); display: block; aspect-ratio: 4/5; object-fit: cover; object-position: top center; }

.gout-box {
  margin-top: 56px; background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow-card);
}
.gout-copy h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--teal-ink); margin: 0 0 12px; }
.gout-copy p { color: var(--ink-soft); margin: 0 0 20px; }
.mini-price-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed rgba(1,47,53,0.12); font-size: 0.92rem; }
.mini-price-row strong { color: var(--teal-deep); }

.check-list, .caution-list { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li, .caution-list li { padding-left: 28px; position: relative; font-size: 0.95rem; color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-deep); font-weight: 700; }
.caution-list li::before { content: "!"; position: absolute; left: 2px; color: var(--coral); font-weight: 800; }

.quote-card { background: var(--teal-ink); color: var(--white); border-radius: var(--radius-lg); padding: 48px 36px; box-shadow: var(--shadow-soft); }
.quote-mark { width: 40px; height: 40px; fill: var(--teal-bright); opacity: 0.6; margin-bottom: 18px; }
.quote-card p { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.4; margin: 0; }

.info-card { background: var(--white); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-card); }
.info-card h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--teal-deep); margin: 0 0 14px; }
.info-card h4:not(:first-child) { margin-top: 20px; }

.question-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.question-list li {
  background: var(--white); border-radius: var(--radius-md); padding: 22px 26px; font-family: var(--font-display);
  font-size: 1.2rem; color: var(--teal-ink); box-shadow: var(--shadow-card); border-left: 4px solid var(--teal-bright);
}
.package-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin: 20px 0 28px; }
.package-label { font-weight: 700; color: var(--ink-soft); font-size: 0.9rem; }
.package-pill { background: var(--white); border-radius: 999px; padding: 8px 16px; font-size: 0.85rem; font-weight: 600; box-shadow: var(--shadow-card); }

.allergy-panels { display: flex; flex-direction: column; gap: 16px; }
.allergy-panel { background: var(--white); border-radius: var(--radius-md); padding: 22px 26px; box-shadow: var(--shadow-card); }
.allergy-panel-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.allergy-panel-head h3 { font-family: var(--font-display); font-size: 1.15rem; margin: 0; color: var(--teal-ink); }
.allergy-panel-head strong { font-size: 1.3rem; color: var(--teal-deep); }
.allergy-panel p { margin: 0; color: var(--ink-soft); font-size: 0.9rem; }
.allergy-combo { border: 2px solid var(--amber); }

/* =========================================================
   Other services strip
   ========================================================= */
.other-services { padding: 64px 0; background: var(--teal-ink); color: var(--white); }
.other-services .eyebrow { color: var(--teal-bright); }
.other-services .section-h2 { color: var(--white); }
.other-body { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 20px; }
.other-list { text-align: center; max-width: 780px; margin: 0 auto; color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.9; }

/* =========================================================
   Doctors
   ========================================================= */
.doctors { padding: 90px 0; }
.doctor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.doctor-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card); text-align: center; }
.doctor-card img { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; object-position: top center; margin: 0 auto 20px; border: 4px solid var(--sand-dim); }
.doctor-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin: 0 0 4px; color: var(--teal-ink); }
.doctor-title { font-size: 0.78rem; font-weight: 700; color: var(--teal-deep); text-transform: uppercase; letter-spacing: 0.03em; margin: 0 0 14px; }
.doctor-bio { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }

/* =========================================================
   Gallery
   ========================================================= */
.gallery { padding: 20px 0 90px; }
.gallery-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 18px; margin-top: 44px; }
.gallery-grid img { border-radius: var(--radius-md); box-shadow: var(--shadow-card); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.gallery-grid img:first-child { grid-row: span 2; aspect-ratio: auto; height: 100%; }

/* =========================================================
   Photo badges (per-service icon accent)
   ========================================================= */
.photo-badge-wrap { position: relative; }
.photo-badge {
  position: absolute; bottom: -14px; left: 20px; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  box-shadow: var(--shadow-card); border: 3px solid var(--sand);
}
.badge-teal { background: var(--teal-bright); }
.badge-indigo { background: #6c63d1; }
.badge-amber { background: var(--amber); }
.badge-coral { background: var(--coral); }

.visual-stack .figure-photo { width: 100%; max-width: 340px; margin: 0 auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); display: block; aspect-ratio: 3/4; object-fit: cover; object-position: top center; }

.tier-visual { margin-bottom: 28px; }
.tier-visual img { width: 100%; max-width: 480px; border-radius: var(--radius-md); box-shadow: var(--shadow-card); display: block; }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials { padding: 90px 0; }
.rating-badge {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  background: var(--white); border-radius: 999px; padding: 12px 26px; box-shadow: var(--shadow-card);
  width: fit-content; margin: 32px auto 44px;
}
.google-g { width: 26px; height: 26px; }
.rating-badge-text { display: flex; flex-direction: column; line-height: 1.3; }
.rating-badge-text strong { font-size: 1.1rem; color: var(--teal-ink); font-family: var(--font-display); }
.rating-badge-text .stars { color: #f5a623; font-size: 0.85rem; letter-spacing: 1px; margin-left: 6px; }
.rating-badge-text span:last-child { font-size: 0.8rem; color: var(--ink-soft); }

.testimonial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 12px; }
.testimonial-card .stars { color: #f5a623; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; flex-grow: 1; line-height: 1.6; }
.testimonial-author { display: flex; flex-direction: column; border-top: 1px solid rgba(1,47,53,0.08); padding-top: 10px; }
.testimonial-author strong { font-size: 0.9rem; color: var(--teal-ink); }
.testimonial-author span { font-size: 0.75rem; color: var(--ink-soft); }

/* =========================================================
   Why Us + Panels
   ========================================================= */
.why-us { padding: 90px 0; background: var(--sand-dim); }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-us-list { list-style: none; margin: 24px 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.why-us-list li { display: flex; align-items: center; gap: 14px; font-weight: 600; color: var(--teal-ink); }
.why-us-icon { font-size: 1.4rem; width: 44px; height: 44px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-card); flex-shrink: 0; }
.open-status { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.9rem; color: var(--teal-deep); }
.open-status::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: #2ecc71; }
.open-status.is-closed { color: var(--ink-soft); }
.open-status.is-closed::before { background: var(--coral); }

.panels-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-soft); }
.panels-card h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--teal-deep); margin: 0 0 20px; }
.panel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.panel-badge {
  background: var(--sand); border-radius: var(--radius-sm); padding: 14px 10px; text-align: center;
  font-weight: 700; font-size: 0.85rem; color: var(--ink-soft); border: 1px solid rgba(1,47,53,0.08);
}

/* =========================================================
   Closing CTA
   ========================================================= */
.closing-cta { background: linear-gradient(160deg, var(--teal-deep), var(--teal-ink)); padding: 80px 0; text-align: center; }
.closing-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.closing-cta-logo { height: 102px; margin-bottom: 18px; padding: 18px 28px; background: var(--white); border-radius: 16px; box-shadow: var(--shadow-card); }
.closing-cta-eyebrow { color: rgba(255,255,255,0.7); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.8rem; margin: 0; }
.closing-cta-h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); margin: 0 0 20px; }
.btn-white { background: var(--white); color: var(--teal-deep); box-shadow: var(--shadow-soft); }
.btn-white:hover { background: var(--sand); }
.closing-cta-social { display: flex; gap: 16px; margin-top: 28px; }
.closing-cta-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; }
.closing-cta-social svg { width: 18px; height: 18px; fill: var(--white); }
.closing-cta-social a:hover { background: rgba(255,255,255,0.25); }

/* =========================================================
   Contact
   ========================================================= */
.contact { padding: 90px 0; background: var(--sand-dim); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-block { margin-bottom: 22px; }
.contact-block h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--teal-deep); margin: 0 0 8px; }
.contact-block p { margin: 0; color: var(--ink-soft); }
.contact-block a { color: var(--teal-deep); font-weight: 700; }
.map-embed { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); margin-top: 10px; }
.map-iframe { border: 0; display: block; }

/* =========================================================
   Privacy policy page
   ========================================================= */
.policy-wrap { max-width: 760px; margin: 0 auto; padding: 64px 24px 100px; }
.policy-wrap h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--teal-ink); margin: 0 0 8px; }
.policy-updated { color: var(--ink-soft); font-size: 0.85rem; margin: 0 0 40px; }
.policy-wrap h2 { font-family: var(--font-display); font-size: 1.3rem; color: var(--teal-deep); margin: 40px 0 12px; }
.policy-wrap p, .policy-wrap li { color: var(--ink-soft); line-height: 1.7; }
.policy-wrap ul { padding-left: 20px; }
.policy-wrap a { color: var(--teal-deep); font-weight: 600; }
.policy-note { background: var(--sand-dim); border-left: 4px solid var(--amber); border-radius: var(--radius-sm); padding: 18px 20px; margin: 32px 0; font-size: 0.92rem; }
.back-link { display: inline-block; margin-bottom: 24px; font-weight: 700; }

/* =========================================================
   404 page
   ========================================================= */
.notfound { min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 24px; }
.notfound img { height: 56px; margin-bottom: 32px; }
.notfound-code { font-family: var(--font-display); font-size: clamp(3rem, 10vw, 6rem); color: var(--teal-bright); margin: 0; line-height: 1; }
.notfound h1 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--teal-ink); margin: 12px 0 16px; }
.notfound p { color: var(--ink-soft); max-width: 46ch; margin: 0 0 32px; }
.notfound-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-soft); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); }
.contact-form input, .contact-form select, .contact-form textarea {
  font-family: inherit; font-size: 0.95rem; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(1,47,53,0.15); background: var(--sand); color: var(--ink); resize: vertical;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--teal-bright); }
.form-divider { text-align: center; font-size: 0.82rem; color: var(--ink-soft); margin: 4px 0 0; }
.contact-form .btn-outline { justify-content: center; }

/* =========================================================
   Disclaimer bar / footer
   ========================================================= */
.disclaimer-bar { background: var(--teal-deep); padding: 14px 24px; }
.disclaimer-bar p { max-width: var(--container-w); margin: 0 auto; text-align: center; color: var(--white); font-size: 0.78rem; }

.site-footer { background: var(--teal-ink); color: rgba(255,255,255,0.8); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { height: 102px; margin-bottom: 18px; padding: 18px 28px; background: var(--white); border-radius: 16px; box-shadow: var(--shadow-card); display: inline-block; }
.footer-tagline { font-family: var(--font-display); font-style: italic; color: var(--teal-bright); }
.footer-links h3, .footer-social h3 { color: var(--white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 16px; }
.footer-links a, .footer-social a { display: block; margin-bottom: 10px; font-size: 0.9rem; }
.footer-links a:hover, .footer-social a:hover { color: var(--teal-bright); }
.footer-bottom { padding-top: 24px; font-size: 0.78rem; text-align: center; color: #93aaad; }
.footer-bottom p { margin: 4px 0; }
.footer-bottom a:hover { text-decoration: underline; }

/* =========================================================
   Sticky WhatsApp
   ========================================================= */
.sticky-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  animation: pulse-whatsapp 2.6s ease-in-out infinite;
}
.sticky-whatsapp svg { width: 28px; height: 28px; fill: var(--white); }
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 10px 34px rgba(37, 211, 102, 0.7); }
}

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-visual { order: -1; margin-bottom: 20px; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .service-grid.reverse { grid-template-columns: 1fr; }
  .service-grid.reverse .service-copy, .service-grid.reverse .service-visual { order: initial; }
  .tier-grid { grid-template-columns: 1fr; }
  .tier-recommended { transform: none; }
  .gout-box { grid-template-columns: 1fr; }
  .why-ultrasound { grid-template-columns: 1fr; }
  .doctor-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img:first-child { grid-row: span 1; aspect-ratio: 4/3; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .pretreat-items.three-col { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .panel-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .header-inner { padding: 10px 16px; }
  .container { padding: 0 18px; }
  .hero { padding-top: 40px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .pillar-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .header-actions .nav-cta span { display: none; }
  .header-actions .nav-cta { padding: 12px; }
}
