:root {
  /* Premium European Dental Palette */
  --ink: #0f1f2a;
  --ink-soft: #334755;
  --muted: #64788a;
  --line: #e8f0f4;
  --line-soft: rgba(232, 240, 244, 0.7);
  --soft: #f7fbfc;
  --soft-blue: #ecf5fa;
  --light-blue: #d8eaf5;
  --accent: #0d9ba3;
  --accent-2: #3eb8c7;
  --accent-dark: #087a82;
  --accent-deep: #055a60;
  --accent-soft: #e3f5f6;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da855;
  --white: #ffffff;
  --gold: #e8b923;

  /* Premium Gradients */
  --grad-hero:
          radial-gradient(ellipse 1400px 900px at -5% -5%, rgba(13, 155, 163, 0.08), transparent 60%),
          radial-gradient(ellipse 1000px 700px at 105% 5%, rgba(62, 184, 199, 0.06), transparent 50%),
          linear-gradient(180deg, #fcfeff 0%, #ffffff 40%, #f9fcfd 100%);
  --grad-accent: linear-gradient(135deg, #0d9ba3 0%, #3eb8c7 100%);
  --grad-deep: linear-gradient(135deg, #087a82 0%, #0d9ba3 50%, #3eb8c7 100%);
  --grad-whatsapp: linear-gradient(135deg, #25d366 0%, #1da855 100%);
  --grad-glass: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 100%);

  /* Refined Radii */
  --radius-xl: 24px;
  --radius: 18px;
  --radius-sm: 14px;
  --radius-xs: 8px;

  /* Sophisticated Shadows */
  --shadow-xs: 0 1px 3px rgba(15, 31, 42, 0.04), 0 1px 2px rgba(15, 31, 42, 0.02);
  --shadow-sm: 0 4px 16px rgba(15, 31, 42, 0.05), 0 2px 4px rgba(15, 31, 42, 0.03);
  --shadow: 0 16px 48px -12px rgba(15, 31, 42, 0.12), 0 8px 20px -6px rgba(15, 31, 42, 0.06);
  --shadow-lg: 0 32px 80px -20px rgba(15, 31, 42, 0.18), 0 16px 36px -12px rgba(15, 31, 42, 0.08);
  --shadow-accent: 0 12px 32px -8px rgba(13, 155, 163, 0.35), 0 6px 14px -4px rgba(13, 155, 163, 0.18);
  --shadow-whatsapp: 0 12px 32px -8px rgba(37, 211, 102, 0.4), 0 6px 14px -4px rgba(29, 168, 85, 0.22);
  --shadow-header: 0 4px 24px -4px rgba(15, 31, 42, 0.08);
  --shadow-header-scrolled: 0 8px 32px -6px rgba(15, 31, 42, 0.12);

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Animation durations */
  --duration-fast: 200ms;
  --duration-normal: 320ms;
  --duration-slow: 500ms;
  --duration-reveal: 1200ms;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Manrope", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "cv11";
  background: var(--grad-hero);
  background-attachment: fixed;
  letter-spacing: -0.01em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { color: var(--ink); background: var(--accent-soft); }

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

/* ============== SCROLL REVEAL ANIMATIONS ============== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
          opacity var(--duration-reveal) cubic-bezier(0.25, 0.46, 0.45, 0.94),
          transform var(--duration-reveal) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(32px);
  transition:
          opacity var(--duration-reveal) cubic-bezier(0.25, 0.46, 0.45, 0.94),
          transform var(--duration-reveal) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 500ms; }

/* ============== PREMIUM HEADER ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 32px);
  min-height: 88px;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(232, 240, 244, 0.5);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  transition:
          min-height var(--duration-normal) var(--ease),
          background var(--duration-normal) var(--ease),
          box-shadow var(--duration-normal) var(--ease),
          border-color var(--duration-normal) var(--ease);
}

.site-header.scrolled {
  min-height: 72px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(232, 240, 244, 0.8);
  box-shadow: var(--shadow-header-scrolled);
}

.brand, .header-actions, .nav {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.brand {
  gap: 14px;
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -0.015em;
}

.brand-logo {
  width: 120px;
  height: 56px;
  object-fit: contain;
  transition: transform var(--duration-normal) var(--ease), opacity var(--duration-normal) var(--ease);
}

.site-header.scrolled .brand-logo {
  width: 100px;
  height: 48px;
}

.brand:hover .brand-logo {
  transform: scale(1.02);
  opacity: 0.9;
}

.brand > span:last-child {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.nav {
  gap: 6px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding: 12px 18px;
  border-radius: 999px;
  transition:
          color var(--duration-fast) var(--ease),
          background var(--duration-fast) var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--duration-normal) var(--ease);
}

.nav a:hover {
  color: var(--accent-dark);
  background: rgba(13, 155, 163, 0.06);
}

.nav a:hover::after {
  width: 20px;
}

.header-actions { gap: 12px; }

.lang-toggle {
  min-width: 52px;
  height: 44px;
  padding: 0 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
          all var(--duration-fast) var(--ease),
          transform var(--duration-normal) var(--ease);
}

.lang-toggle:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* ============== BUTTONS ============== */
.button, .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition:
          transform var(--duration-normal) var(--ease),
          box-shadow var(--duration-normal) var(--ease),
          background var(--duration-normal) var(--ease);
  will-change: transform;
}

.button {
  position: relative;
  padding: 0 28px;
  color: var(--white);
  background: var(--grad-whatsapp);
  box-shadow: var(--shadow-whatsapp);
  overflow: hidden;
  isolation: isolate;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0) 60%);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease);
  z-index: -1;
}

.button::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20.5 3.5A11 11 0 0 0 3.4 17.2L2 22l4.9-1.3a11 11 0 0 0 5.1 1.3 11 11 0 0 0 8.5-18.5zM12 20a9 9 0 0 1-4.6-1.3l-.3-.2-2.9.8.8-2.8-.2-.3A9 9 0 1 1 12 20zm5-6.7c-.3-.1-1.6-.8-1.9-.9-.2-.1-.4-.1-.6.1-.2.3-.7.9-.8 1-.2.2-.3.2-.6.1-.3-.1-1.2-.4-2.3-1.4-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6l.4-.5c.1-.1.2-.3.3-.4.1-.2 0-.3 0-.5s-.6-1.5-.9-2c-.2-.5-.5-.5-.6-.5h-.5c-.2 0-.5.1-.7.3-.3.3-1 1-1 2.4s1 2.8 1.2 3c.1.2 2 3.1 4.9 4.4.7.3 1.2.5 1.6.6.7.2 1.3.2 1.8.1.5-.1 1.6-.7 1.9-1.3.2-.6.2-1.2.2-1.3-.1-.1-.3-.2-.6-.3z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20.5 3.5A11 11 0 0 0 3.4 17.2L2 22l4.9-1.3a11 11 0 0 0 5.1 1.3 11 11 0 0 0 8.5-18.5zM12 20a9 9 0 0 1-4.6-1.3l-.3-.2-2.9.8.8-2.8-.2-.3A9 9 0 1 1 12 20zm5-6.7c-.3-.1-1.6-.8-1.9-.9-.2-.1-.4-.1-.6.1-.2.3-.7.9-.8 1-.2.2-.3.2-.6.1-.3-.1-1.2-.4-2.3-1.4-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6l.4-.5c.1-.1.2-.3.3-.4.1-.2 0-.3 0-.5s-.6-1.5-.9-2c-.2-.5-.5-.5-.6-.5h-.5c-.2 0-.5.1-.7.3-.3.3-1 1-1 2.4s1 2.8 1.2 3c.1.2 2 3.1 4.9 4.4.7.3 1.2.5 1.6.6.7.2 1.3.2 1.8.1.5-.1 1.6-.7 1.9-1.3.2-.6.2-1.2.2-1.3-.1-.1-.3-.2-.6-.3z'/></svg>") center / contain no-repeat;
}

.button:hover {
  box-shadow: 0 16px 40px -8px rgba(37, 211, 102, 0.5), 0 8px 20px -4px rgba(29, 168, 85, 0.28);
  transform: translateY(-2px);
}

.button:hover::after { opacity: 1; }

.button:active { transform: translateY(0); }

.button:focus-visible, .text-link:focus-visible,
.lang-toggle:focus-visible, .nav a:focus-visible {
  outline: 3px solid rgba(13, 155, 163, 0.3);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
  box-shadow: 0 8px 20px -4px rgba(37, 211, 102, 0.35);
}

.button-small::before {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.text-link {
  padding: 0 26px;
  color: var(--accent-dark);
  background: var(--white);
  border: 1.5px solid rgba(13, 155, 163, 0.18);
  box-shadow: var(--shadow-sm);
}

.text-link::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(13, 155, 163, 0.12);
  animation: pulse-soft 2.5s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 0 0 4px rgba(13, 155, 163, 0.12); }
  50% { box-shadow: 0 0 0 8px rgba(13, 155, 163, 0.06); }
}

.text-link:hover {
  border-color: var(--accent);
  background: var(--soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.full-width { width: 100%; }

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 800;
  background: linear-gradient(145deg, #0f1f2a 10%, #087a82 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  max-width: 800px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  font-weight: 700;
}

.lead {
  max-width: 640px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.sublead, .section p, blockquote, dd {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 450;
}

.sublead { max-width: 560px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 9px 18px 9px 15px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid rgba(13, 155, 163, 0.15);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  max-width: var(--container);
  min-height: calc(100svh - 88px);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 100px) 24px clamp(56px, 7vw, 90px);
}

.hero::before {
  content: "";
  position: absolute;
  top: 5%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(62, 184, 199, 0.12), transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  animation: float-slow 20s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 155, 163, 0.08), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
  animation: float-slow 15s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.hero-content {
  max-width: 680px;
}

.hero-actions, .hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions { margin-top: 32px; }
.hero-stats { margin-top: 32px; }

.hero-stats span, .chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--duration-normal) var(--ease);
}

.hero-stats span::before, .chips span::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-stats span:hover {
  border-color: rgba(13, 155, 163, 0.3);
  background: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-xs);
}

.hero-image, .image-panel, .doctor-photo {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-image {
  background-image: url("https://images.unsplash.com/photo-1629909613654-28e377c37b09?auto=format&fit=crop&w=1100&q=80");
  border: 5px solid rgba(255, 255, 255, 0.95);
}

.hero-image::before, .image-panel::before, .doctor-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(180deg, transparent 55%, rgba(15, 31, 42, 0.28) 100%),
          linear-gradient(135deg, rgba(13, 155, 163, 0.08), transparent 45%);
  pointer-events: none;
}

/* Premium Glass Badges */
.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px -8px rgba(15, 31, 42, 0.25);
  font-size: 13px;
  color: var(--ink);
  z-index: 2;
  animation: floatY 5s ease-in-out infinite;
}

.hero-badge-top {
  top: 28px;
  left: -24px;
}

.hero-badge-bottom {
  bottom: 32px;
  right: -20px;
  animation-delay: 2s;
}

.hero-badge-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--grad-accent);
  color: var(--white);
  border-radius: var(--radius-xs);
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 6px 16px -4px rgba(13, 155, 163, 0.35);
}

.hero-badge-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: var(--radius-xs);
  font-size: 22px;
  font-weight: 800;
}

.hero-badge-label {
  line-height: 1.35;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.hero-badge-label small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-badge-bottom .hero-badge-label {
  color: var(--ink);
}

.hero-badge-bottom .hero-badge-label strong {
  font-size: 15px;
  display: block;
  margin-bottom: 2px;
  font-weight: 700;
}

/* ============== SECTIONS ============== */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) 24px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

/* ============== SERVICES ============== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 26px 22px 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition:
          transform var(--duration-slow) var(--ease),
          box-shadow var(--duration-slow) var(--ease),
          border-color var(--duration-slow) var(--ease);
}

.service-grid article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease);
}

.service-grid article::before {
  content: "";
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--white) 100%);
  border: 1px solid rgba(13, 155, 163, 0.15);
  border-radius: var(--radius-sm);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23087a82' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M12 7v10M7 12h10'/><circle cx='12' cy='12' r='9'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 26px, 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-slow) var(--ease);
}

/* Service-specific icons */
.service-grid article:nth-child(1)::before {
  background-image:
          url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23087a82' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2c3 0 5 2 5 5 0 2-1 3-1 5 0 3 1 6-2 10-1 1-2 0-2-2v-3c0-1-1-1-1 0v3c0 2-1 3-2 2-3-4-2-7-2-10 0-2-1-3-1-5 0-3 2-5 5-5z'/></svg>"),
          linear-gradient(135deg, var(--accent-soft) 0%, var(--white) 100%);
}
.service-grid article:nth-child(2)::before {
  background-image:
          url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23087a82' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M3 12c4-7 14-7 18 0M3 12c4 7 14 7 18 0'/><circle cx='12' cy='12' r='3'/></svg>"),
          linear-gradient(135deg, var(--accent-soft) 0%, var(--white) 100%);
}
.service-grid article:nth-child(3)::before {
  background-image:
          url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23087a82' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2l2 6 6 1-4.5 4.5L17 20l-5-3-5 3 1.5-6.5L4 9l6-1z'/></svg>"),
          linear-gradient(135deg, var(--accent-soft) 0%, var(--white) 100%);
}
.service-grid article:nth-child(4)::before {
  background-image:
          url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23087a82' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='8' r='3'/><path d='M12 11v10M9 14h6M9 17h6'/></svg>"),
          linear-gradient(135deg, var(--accent-soft) 0%, var(--white) 100%);
}
.service-grid article:nth-child(5)::before {
  background-image:
          url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23087a82' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M4 8h16v3H4zM6 11v8M18 11v8M9 11v4M15 11v4M12 11v6'/></svg>"),
          linear-gradient(135deg, var(--accent-soft) 0%, var(--white) 100%);
}

.service-grid article:hover {
  border-color: rgba(13, 155, 163, 0.25);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-grid article:hover::after { transform: scaleX(1); }
.service-grid article:hover::before { transform: scale(1.05) rotate(-2deg); }

.service-grid article h3 { margin-bottom: 8px; }
.service-grid article p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* ============== ADVANTAGES (split-section) ============== */
.split-section, .doctor-section, .contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
}

.split-section {
  background:
          radial-gradient(ellipse 700px 450px at 0% 100%, rgba(216, 234, 245, 0.35), transparent 55%),
          linear-gradient(135deg, rgba(236, 245, 250, 0.5), rgba(255, 255, 255, 0.3)),
          var(--soft);
}

.image-panel {
  background-image: url("https://images.unsplash.com/photo-1606811971618-4486d14f3f99?auto=format&fit=crop&w=1000&q=80");
  border: 5px solid var(--white);
}

.advantages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.advantages div {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 160px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(13, 155, 163, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xs);
  transition:
          transform var(--duration-normal) var(--ease),
          box-shadow var(--duration-normal) var(--ease),
          border-color var(--duration-normal) var(--ease);
}

.advantages div::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  background: var(--grad-accent);
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-accent);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 12l2 2 4-4'/><circle cx='12' cy='12' r='9'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
}

.advantages div:nth-child(1)::before {
  background-image:
          url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='6' width='16' height='12' rx='2'/><path d='M9 10v4M15 10v4M12 8v8'/></svg>"),
          var(--grad-accent);
}
.advantages div:nth-child(2)::before {
  background-image:
          url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 7l-7 8-4-4M5 7v12'/></svg>"),
          var(--grad-accent);
}
.advantages div:nth-child(3)::before {
  background-image:
          url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2v20M17 5H9.5a3.5 3.5 0 000 7h5a3.5 3.5 0 010 7H6'/></svg>"),
          var(--grad-accent);
}
.advantages div:nth-child(4)::before {
  background-image:
          url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><path d='M3 12h18M12 3a14 14 0 010 18M12 3a14 14 0 000 18'/></svg>"),
          var(--grad-accent);
}

.advantages div:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 155, 163, 0.25);
  box-shadow: var(--shadow);
}

.advantages strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.advantages p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* ============== DOCTOR SECTION ============== */
.doctor-section {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  background:
          radial-gradient(ellipse 600px 350px at 100% 0%, rgba(13, 155, 163, 0.05), transparent 55%),
          var(--white);
}

.doctor-photo {
  min-height: 540px;
  background-image: url("https://images.unsplash.com/photo-1559839734-2b71ea197ec2?auto=format&fit=crop&w=900&q=80");
  background-position: center top;
  border: 5px solid var(--white);
  outline: 1px solid var(--line);
}

.doctor-photo::after {
  content: "Dr. Beridze";
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.doctor-section > div:last-child {
  position: relative;
  max-width: 700px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.doctor-section > div:last-child::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: var(--grad-accent);
  border-radius: var(--radius-sm);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M7 21v-2a4 4 0 014-4h2a4 4 0 014 4v2'/><circle cx='12' cy='8' r='4'/><path d='M19 11l1.5 1.5L23 10'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
  box-shadow: var(--shadow-accent);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

/* ============== PRICES ============== */
.prices-section {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  background: linear-gradient(180deg, var(--soft) 0%, var(--white) 100%);
}

.price-list {
  display: grid;
  max-width: 920px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  transition: background var(--duration-fast) var(--ease);
}

.price-list div:last-child { border-bottom: 0; }
.price-list div:hover { background: var(--soft); }

.price-list strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* ============== REVIEWS ============== */
.reviews-section { max-width: var(--container); }

.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

blockquote {
  position: relative;
  margin: 0;
  min-height: 240px;
  padding: 26px 26px 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  font-style: normal;
  transition:
          transform var(--duration-normal) var(--ease),
          box-shadow var(--duration-normal) var(--ease);
}

blockquote::before {
  content: "★★★★★";
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.12em;
  line-height: 1;
}

blockquote::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: 22px;
  width: 40px;
  height: 40px;
  background: var(--grad-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--white), var(--shadow-accent);
}

blockquote:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ============== CONTACT ============== */
.contact-section {
  grid-template-columns: minmax(300px, 460px) minmax(0, 1fr);
  align-items: stretch;
  background:
          radial-gradient(circle at top right, rgba(62, 184, 199, 0.22), transparent 30rem),
          radial-gradient(circle at bottom left, rgba(13, 155, 163, 0.15), transparent 26rem),
          linear-gradient(145deg, #0f1f2a 0%, #153644 50%, #1a4555 100%);
}

.contact-card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.contact-card .eyebrow {
  background: var(--accent-soft);
}

.contact-card h2 { font-size: clamp(26px, 3.2vw, 38px); }

dl {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

dl div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft);
  transition: border-color var(--duration-fast) var(--ease);
}

dl div:hover {
  border-color: rgba(13, 155, 163, 0.3);
}

dl div::before {
  content: "";
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: var(--accent-soft);
  border-radius: var(--radius-xs);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

dl div:nth-child(1)::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23087a82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 22s7-7 7-12a7 7 0 10-14 0c0 5 7 12 7 12z'/><circle cx='12' cy='10' r='3'/></svg>");
}
dl div:nth-child(2)::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23087a82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1A17 17 0 013 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.5.1.4 0 .7-.2 1l-2.3 2.3z'/></svg>");
}
dl div:nth-child(3)::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23087a82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><path d='M12 7v5l3 2'/></svg>");
}

dl div > * { display: block; }

dt {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
}

dd a {
  color: var(--accent-dark);
  font-weight: 600;
  transition: color var(--duration-fast) var(--ease);
}

dd a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.map {
  width: 100%;
  min-height: 540px;
  border: 5px solid var(--white);
  border-radius: var(--radius-xl);
  background: var(--soft);
  box-shadow: var(--shadow-lg);
  filter: saturate(0.92);
}

/* ============== FOOTER ============== */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 36px 24px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--line);
}

.footer span:first-child {
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}

/* ============== FLOATING WHATSAPP ============== */
.float-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: var(--white);
  background: var(--grad-whatsapp);
  border-radius: 50%;
  box-shadow: var(--shadow-whatsapp);
  transition:
          transform var(--duration-normal) var(--ease),
          box-shadow var(--duration-normal) var(--ease);
  animation: pulseGlow 2.8s ease-in-out infinite;
}

.float-whatsapp:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 18px 48px -8px rgba(37, 211, 102, 0.55);
}

.float-whatsapp:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.35);
  outline-offset: 4px;
}

/* Language switch animation */
main,
.site-header .nav,
.site-header .button-small {
  transition: opacity 0.3s var(--ease);
}

main.fade-out,
.site-header.fade-out .nav,
.site-header.fade-out .button-small {
  opacity: 0;
}

/* ============== STICKY MOBILE CTA ============== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 55;
  align-items: center;
  gap: 10px;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 28px -8px rgba(15, 31, 42, 0.1);
}

.mobile-cta-call {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--white);
  color: var(--accent-dark);
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0;
  overflow: hidden;
}

.mobile-cta-call svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.mobile-cta-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 50px;
  padding: 0 20px;
  color: var(--white);
  background: var(--grad-whatsapp);
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-whatsapp);
}

/* ============== ANIMATIONS ============== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: var(--shadow-whatsapp), 0 0 0 0 rgba(37, 211, 102, 0.35); }
  50% { box-shadow: var(--shadow-whatsapp), 0 0 0 12px rgba(37, 211, 102, 0); }
}

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

  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1240px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .split-section,
  .doctor-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }

  .hero-image, .image-panel, .doctor-photo {
    min-height: 420px;
  }

  .hero-badge-top { left: 18px; }
  .hero-badge-bottom { right: 18px; }

  .contact-card { max-width: 680px; }

  .reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html {
    overflow-x: hidden;
  }

  body {
    padding-bottom: 82px;
    min-width: 100%;
    width: 100%;
  }

  .site-header {
    min-height: 64px;
    padding: 0 16px;
    width: 100%;
  }

  .site-header.scrolled {
    min-height: 60px;
  }

  .brand-logo {
    width: 96px;
    height: 46px;
  }

  .site-header.scrolled .brand-logo {
    width: 88px;
    height: 42px;
  }

  .nav { display: none; }

  .button-small {
    min-width: 44px;
    padding: 0 16px;
  }

  .hero {
    padding: 32px 16px 48px;
    gap: 36px;
    max-width: 100%;
  }

  h1 { font-size: clamp(38px, 11vw, 52px); }
  h2 { font-size: clamp(26px, 6.5vw, 38px); }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 26px;
    gap: 12px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .hero-image, .image-panel, .doctor-photo, .map {
    min-height: 320px;
    border-radius: 20px;
    border-width: 4px;
  }

  .hero-badge {
    padding: 10px 14px;
    font-size: 12px;
    border-radius: var(--radius-sm);
  }

  .hero-badge-num, .hero-badge-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .hero-badge-top { top: 14px; left: 14px; }
  .hero-badge-bottom { bottom: 14px; right: 14px; }

  .section {
    padding: 60px 16px;
    width: 100%;
    max-width: 100%;
  }

  .section-heading { margin-bottom: 36px; }

  .service-grid, .advantages, .reviews {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .service-grid article {
    min-height: 0;
    padding: 22px 20px;
    width: 100%;
  }

  blockquote {
    min-height: 0;
    padding: 22px 22px 66px;
  }

  .split-section, .doctor-section,
  .prices-section, .contact-section {
    padding: 60px 16px;
    width: 100%;
    max-width: 100%;
  }

  .doctor-section > div:last-child { padding: 24px 22px; }
  .doctor-section > div:last-child::before {
    width: 46px; height: 46px;
    top: 18px; right: 18px;
    background-size: 24px;
    border-radius: var(--radius-xs);
  }

  .price-list {
    width: 100%;
  }

  .price-list div {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 22px;
    font-size: 16px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 28px 16px;
    width: 100%;
    max-width: 100%;
  }

  /* Скрываем плавающую кнопку WhatsApp на мобильных,
     так как есть нижняя панель mobile-cta */
  .float-whatsapp {
    display: none;
  }

  .mobile-cta { display: flex; }
}

@media (max-width: 430px) {
  .site-header { gap: 8px; }
  .header-actions { gap: 8px; }
  .lang-toggle {
    min-width: 46px;
    padding: 0 14px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats span {
    justify-content: center;
  }

  .contact-card { padding: 24px 20px; }
}