/* ============================================================
   Oftalmo Visión Ugarte — Landing Page v2.0
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:      #4ABFAF;
  --teal-d:    #369E8F;
  --teal-l:    #6DD4C6;
  --olive:     #7A7A58;
  --yellow:    #B8CC60;
  --yellow-d:  #96AA40;

  --bg:        #FFFFFF;
  --bg-alt:    #F4F7F4;
  --bg-card:   #FFFFFF;
  --border:    #E2EAE2;

  --text:      #1A2B1E;
  --text-2:    #4A6050;
  --text-3:    #7A9080;

  --wa-green:  #25D366;
  --grad:      linear-gradient(135deg, #4ABFAF 0%, #8DB840 100%);
  --grad-btn:  linear-gradient(135deg, #4ABFAF 0%, #8DB840 100%);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg); color: var(--text);
  overflow-x: hidden; line-height: 1.6;
}

/* ─── NAVIGATION ────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.site-nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 72px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo-wrap { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo { height: 46px; width: auto; display: block; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1;
}
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px; border-radius: 8px;
  color: var(--text-2); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: all 0.15s; white-space: nowrap;
}
.nav-link:hover { color: var(--teal-d); background: rgba(74,191,175,0.07); }
.nav-link i { font-size: 10px; opacity: 0.6; }

/* Dropdown */
.nav-drop-wrap { position: relative; }
.nav-drop-wrap:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 8px;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 300;
}
.nav-drop-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  color: var(--text-2); text-decoration: none;
  font-size: 13px; font-weight: 500;
  transition: all 0.15s;
}
.nav-drop-item:hover { background: var(--bg-alt); color: var(--teal-d); }
.nav-drop-item i { width: 18px; text-align: center; color: var(--teal); }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-cta-nav {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-btn); color: #fff;
  padding: 10px 22px; border-radius: 10px;
  font-weight: 700; font-size: 13px; text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(74,191,175,0.3);
  transition: all 0.2s;
}
.btn-cta-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(74,191,175,0.45); }
.btn-cta-login {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 10px; border: 1.5px solid var(--border);
  color: var(--text-2); text-decoration: none;
  font-size: 13px; font-weight: 500;
  transition: all 0.2s;
}
.btn-cta-login:hover { border-color: var(--teal); color: var(--teal-d); }
.btn-cta-agenda {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 10px; border: 1.5px solid rgba(74,191,175,0.35);
  color: var(--teal-d); text-decoration: none; background: rgba(74,191,175,0.07);
  font-size: 13px; font-weight: 700; transition: all 0.2s; white-space: nowrap;
}
.btn-cta-agenda:hover { background: rgba(74,191,175,0.14); border-color: var(--teal); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 8px;
  transition: background 0.15s;
}
.nav-hamburger:hover { background: var(--bg-alt); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-2); border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
  background: url('../img/hero-bg.webp') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,0.98) 0%,
    rgba(255,255,255,0.92) 45%,
    rgba(255,255,255,0.20) 100%
  );
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 440px;
  gap: 64px; align-items: center;
  width: 100%;
}
.hero-left {}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,191,175,0.10); border: 1px solid rgba(74,191,175,0.3);
  color: var(--teal-d); padding: 7px 16px; border-radius: 99px;
  font-size: 11px; font-weight: 700; margin-bottom: 22px;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.hero h1 {
  font-size: clamp(34px,4.5vw,60px); font-weight: 900;
  line-height: 1.08; margin-bottom: 18px; color: var(--text);
}
.h1-accent { color: var(--teal); }
.hero-subtitle {
  font-size: clamp(15px,1.6vw,18px); color: var(--text-2);
  line-height: 1.75; margin-bottom: 32px; max-width: 500px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: inline-flex; align-items: center;
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 22px;
  box-shadow: var(--shadow-sm); gap: 0;
}
.hstat { text-align: center; padding: 0 20px; }
.hstat-n { display: block; font-size: 22px; font-weight: 900; color: var(--teal-d); }
.hstat-l { display: block; font-size: 11px; color: var(--text-3); margin-top: 2px; font-weight: 500; }
.hstat-div { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }

/* Booking Widget */
.hero-right { position: relative; }
.booking-widget {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px; padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.8);
}
.bw-header { margin-bottom: 20px; }
.bw-header h3 { font-size: 18px; font-weight: 800; color: var(--text); }
.bw-header p  { font-size: 13px; color: var(--text-3); margin-top: 3px; }
.bw-field { margin-bottom: 13px; }
.bw-label { display: block; font-size: 11px; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
.bw-select, .bw-input {
  width: 100%; padding: 10px 12px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 13px; font-family: inherit; color: var(--text);
  background: #fff; appearance: none;
  transition: border-color 0.2s;
}
.bw-select:focus, .bw-input:focus { outline: none; border-color: var(--teal); }
.bw-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-buscar {
  width: 100%; padding: 13px; border: none; border-radius: 12px;
  background: var(--grad-btn); color: #fff;
  font-size: 14px; font-weight: 700; font-family: inherit;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s; box-shadow: 0 4px 16px rgba(74,191,175,0.3);
  margin-top: 4px;
}
.btn-buscar:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,191,175,0.45); }
.btn-buscar:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.slots-wrap { margin-top: 14px; display: none; }
.slots-label { font-size: 12px; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.slot-btn {
  padding: 8px 6px; border: 1.5px solid var(--border); border-radius: 8px;
  background: #fff; font-size: 12px; font-weight: 600; color: var(--text-2);
  cursor: pointer; transition: all 0.15s; text-align: center;
}
.slot-btn:hover, .slot-btn.selected {
  border-color: var(--teal); background: rgba(74,191,175,0.08); color: var(--teal-d);
}
.no-slots { font-size: 13px; color: var(--text-3); text-align: center; padding: 12px; }
.btn-reservar {
  display: none; width: 100%; padding: 13px; border: none; border-radius: 12px;
  background: #1A2B1E; color: #fff;
  font-size: 14px; font-weight: 700; font-family: inherit;
  cursor: pointer; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s; margin-top: 10px; text-decoration: none;
  text-align: center;
}
.btn-reservar:hover { background: var(--teal-d); }
.bw-trust {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 16px; font-size: 11px; color: var(--text-3);
}
.bw-trust i { color: var(--teal); }

/* ─── TRUST BAR ─────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 20px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
}
.trust-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--grad-btn);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
  box-shadow: 0 4px 12px rgba(74,191,175,0.25);
}
.trust-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); }
.trust-text span   { display: block; font-size: 11px; color: var(--text-3); margin-top: 1px; }

/* ─── SECTION COMMON ────────────────────────────────────── */
.section-wrap { padding: 90px 24px; }
.section-wrap-sm { padding: 64px 24px; }
.section-container { max-width: 1100px; margin: 0 auto; }
.section-label {
  text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 3px;
  color: var(--teal); text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  text-align: center; font-size: clamp(24px, 3.5vw, 38px); font-weight: 800;
  color: var(--text); margin-bottom: 10px; line-height: 1.15;
}
.section-sub {
  text-align: center; color: var(--text-3); font-size: 15px; margin-bottom: 48px;
}

/* ─── SERVICES GRID ─────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(74,191,175,0.18);
  border-color: rgba(74,191,175,0.35);
}
.svc-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.svc-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.4s; }
.service-card:hover .svc-img img { transform: scale(1.05); }
.svc-img-icon {
  font-size: 42px; color: rgba(255,255,255,0.9);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}
.svc-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.92); border: 1px solid rgba(74,191,175,0.4);
  color: var(--teal-d); padding: 3px 10px; border-radius: 99px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.svc-body { padding: 20px 22px 22px; }
.svc-body h3 { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 7px; }
.svc-body p  { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 12px; }
.svc-price { font-size: 17px; font-weight: 900; color: var(--teal-d); margin-bottom: 14px; }
.svc-price span { font-size: 12px; font-weight: 500; color: var(--text-3); }
.svc-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--wa-green); font-size: 13px; font-weight: 700;
  text-decoration: none; transition: color 0.2s;
}
.svc-link:hover { color: #1a9e4a; }

/* ─── PRODUCTS GRID ─────────────────────────────────────── */
.products-section { background: var(--bg-alt); }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(74,191,175,0.3); }
.prod-img {
  height: 150px; display: flex; align-items: center; justify-content: center;
  font-size: 44px; color: rgba(255,255,255,0.9);
}
.prod-body { padding: 16px 18px 18px; }
.prod-body h3  { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 5px; }
.prod-body p   { font-size: 12px; color: var(--text-2); line-height: 1.6; margin-bottom: 10px; }
.prod-price    { font-size: 18px; font-weight: 900; color: var(--teal-d); margin-bottom: 12px; }
.btn-comprar {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--grad-btn); color: #fff;
  padding: 9px 18px; border-radius: 8px; text-decoration: none;
  font-size: 12px; font-weight: 700; transition: all 0.2s;
  box-shadow: 0 3px 10px rgba(74,191,175,0.25);
}
.btn-comprar:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(74,191,175,0.4); }

/* ─── PAYMENT BAR ───────────────────────────────────────── */
.payment-bar { background: var(--grad-btn); }
.payment-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 28px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pay-item {
  display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.95);
}
.pay-item i { font-size: 22px; opacity: 0.9; flex-shrink: 0; }
.pay-item strong { display: block; font-size: 13px; font-weight: 700; }
.pay-item span   { display: block; font-size: 11px; opacity: 0.75; margin-top: 2px; }

/* ─── SPECIALISTS ───────────────────────────────────────── */
.specialists-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.specialist-card {
  text-align: center; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 18px;
  padding: 28px 20px; transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.specialist-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(74,191,175,0.3); }
.specialist-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 900; color: #fff;
  background: var(--grad-btn);
  overflow: hidden;
}
.specialist-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.specialist-card h3 { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.specialist-card .spec-rol { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--teal-d); margin-bottom: 8px; }
.specialist-card p { font-size: 12px; color: var(--text-2); line-height: 1.6; margin-bottom: 12px; }
.spec-cmp { font-size: 11px; background: rgba(74,191,175,0.08); color: var(--teal-d); padding: 3px 10px; border-radius: 99px; display: inline-block; font-weight: 700; }

/* ─── STATS ─────────────────────────────────────────────── */
.stats-section {
  padding: 64px 24px;
  background: var(--text);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px; max-width: 800px; margin: 0 auto; text-align: center;
}
.stat-num   { font-size: 40px; font-weight: 900; color: var(--teal); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; font-weight: 500; }

/* ─── CTA ───────────────────────────────────────────────── */
.cta-section {
  padding: 90px 24px; text-align: center;
  background: var(--bg-alt);
}
.cta-section h2 { font-size: clamp(26px,4vw,42px); font-weight: 800; color: var(--text); margin-bottom: 14px; }
.cta-section p  { color: var(--text-2); font-size: 16px; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ─── FOOTER ────────────────────────────────────────────── */
.site-footer { background: var(--text); }
.footer-top {
  max-width: 1100px; margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo-wrap { margin-bottom: 16px; }
.footer-logo { height: 48px; width: auto; display: block; opacity: 0.9; }
.footer-brand { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-brand span { color: var(--teal); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 14px; transition: all 0.2s;
}
.social-btn:hover { background: var(--teal); color: #fff; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; transition: color 0.15s; display: flex; align-items: center; gap: 7px; }
.footer-links a:hover { color: var(--teal); }
.footer-links i { width: 14px; text-align: center; color: var(--teal-d); font-size: 11px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: 1100px; margin: 0 auto;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-copy a { color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-copy a:hover { color: rgba(255,255,255,0.5); }

/* ─── SHARED BUTTONS ────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad-btn); color: #fff;
  padding: 14px 30px; border-radius: 12px;
  font-weight: 800; font-size: 15px; text-decoration: none;
  box-shadow: 0 6px 22px rgba(74,191,175,0.38);
  transition: all 0.25s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(74,191,175,0.55); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 2px solid var(--border);
  color: var(--text-2); padding: 12px 26px; border-radius: 12px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa-green); color: #fff;
  padding: 14px 30px; border-radius: 12px;
  font-weight: 800; font-size: 15px; text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
  transition: all 0.25s;
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }

/* ─── WHATSAPP FLOAT ────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  animation: waPulse 2.5s infinite; transition: transform 0.25s;
}
.whatsapp-float:hover { transform: scale(1.12); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,0.75); }
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 380px; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trust-inner  { grid-template-columns: repeat(2, 1fr); }
  .payment-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; }
  .hero-right { max-width: 480px; margin: 0 auto; width: 100%; }
  .hero h1 { font-size: 38px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
    padding: 16px; border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 199;
  }
  .nav-links.open .nav-link { width: 100%; padding: 12px 16px; font-size: 15px; }
  .nav-links.open .nav-drop-wrap { width: 100%; }
  .nav-links.open .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; margin-bottom: 4px; }
  .nav-hamburger { display: flex; }
  .btn-cta-login { display: none; }
  .specialists-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .site-nav-inner { padding: 0 16px; height: 64px; }
  .hero-inner { padding: 30px 16px 50px; }
  .hero-stats { flex-direction: column; gap: 16px; width: 100%; }
  .hstat-div { width: 80%; height: 1px; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-wa { width: 100%; max-width: 320px; justify-content: center; }
  .trust-inner   { grid-template-columns: 1fr; }
  .payment-inner { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr; gap: 28px; }
  .specialists-grid { grid-template-columns: 1fr; }
  .bw-row { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(3,1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-wrap { padding: 60px 16px; }
}

/* ─── SERVICE / PRODUCT MEDIA BADGES ────────────────────── */
.svc-img  { position: relative; }
.prod-img { position: relative; }

.svc-media-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  pointer-events: none;
}
.svc-media-badge.badge360 {
  right: auto;
  left: 10px;
}
.prod-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
  pointer-events: none;
}
.svc-img img,
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
