/* ═══════════════════════════════════════════════════
   DR. TATU — Complete Stylesheet
   Dental implant clinic, Sector 6 București
   ═══════════════════════════════════════════════════ */

/* ── Reset & Variables ──────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #0067d5;
  --blue-hover: #0055b3;
  --navy: #1a1a2e;
  --green: #25D366;
  --green-bright: #4df260;
  --warm-bg: #f3efe9;
  --warm-bg-alt: #f0ede8;
  --white: #ffffff;
  --black: #000000;
  --text: #252525;
  --text-70: rgba(0,0,0,0.7);
  --text-50: rgba(0,0,0,0.5);
  --text-40: rgba(0,0,0,0.4);
  --border: rgba(0,0,0,0.08);
  --border-light: rgba(0,0,0,0.15);
  /* Typography — matching Webflow Lumos system */
  --font-primary: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --font-heavy: var(--font-primary);
  --font-body: var(--font-primary);
  --weight-bold: 800;
  --weight-medium: 500;
  --weight-regular: 400;
  /* Fluid font sizes — clamp(mobile, fluid, desktop) */
  --site-vw-min: 20;
  --site-vw-max: 90;
  --fs-display: clamp(3.06rem, calc(3.06rem + (5.355 - 3.06) * ((100vw - 20rem) / (90 - 20))), 5.355rem);
  --fs-h1: clamp(2.295rem, calc(2.295rem + (3.825 - 2.295) * ((100vw - 20rem) / (90 - 20))), 3.825rem);
  --fs-h2: clamp(1.9125rem, calc(1.9125rem + (3.06 - 1.9125) * ((100vw - 20rem) / (90 - 20))), 3.06rem);
  --fs-h3: clamp(1.72rem, calc(1.72rem + (2.295 - 1.72) * ((100vw - 20rem) / (90 - 20))), 2.295rem);
  --fs-h4: clamp(1.34rem, calc(1.34rem + (1.53 - 1.34) * ((100vw - 20rem) / (90 - 20))), 1.53rem);
  --fs-h5: clamp(1.05rem, calc(1.05rem + (1.1475 - 1.05) * ((100vw - 20rem) / (90 - 20))), 1.1475rem);
  --fs-h6: clamp(0.765rem, calc(0.765rem + (0.86 - 0.765) * ((100vw - 20rem) / (90 - 20))), 0.86rem);
  --fs-text-lg: clamp(1.125rem, calc(1.125rem + (1.25 - 1.125) * ((100vw - 20rem) / (90 - 20))), 1.25rem);
  --fs-text: clamp(1rem, calc(1rem + (1.125 - 1) * ((100vw - 20rem) / (90 - 20))), 1.125rem);
  --fs-text-sm: clamp(0.875rem, calc(0.875rem + (1 - 0.875) * ((100vw - 20rem) / (90 - 20))), 1rem);
  /* Letter spacing & line height */
  --ls-tight: -0.03em;
  --ls-normal: 0em;
  --lh-small: 1;
  --lh-medium: 1.1;
  --lh-large: 1.3;
  --lh-huge: 1.5;
  /* Layout — matching Webflow container */
  --container: 90rem;
  --container-small: 50rem;
  --site-margin: clamp(1rem, calc(1rem + (3 - 1) * ((100vw - 20rem) / (90 - 20))), 3rem);
  --gutter: 24px;
  --section-gap: clamp(4rem, calc(4rem + (7 - 4) * ((100vw - 20rem) / (90 - 20))), 7rem);
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 16px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { overflow-x: hidden; }
h1, h2, h3, h4, h5, h6, .eyebrow, .h1-display, .h1-mega, .h2-section, .h3-card, .h4-sub { text-wrap: balance; }
p, .body-lg, .body-md, .body-sm, .desc, blockquote, label, .subtitle, .quote, .faq-answer-inner { text-wrap: pretty; }
a, button, [role="button"], input, select, textarea { touch-action: manipulation; }
/* ── Entrance Animations ───────────────────────── */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.service-card.animate-in:nth-child(2) { transition-delay: 0.08s; }
.pricing-card.animate-in:nth-child(2) { transition-delay: 0.1s; }
.pricing-card.animate-in:nth-child(3) { transition-delay: 0.2s; }
.faq-item.animate-in:nth-child(2) { transition-delay: 0.05s; }
.faq-item.animate-in:nth-child(3) { transition-delay: 0.1s; }
.faq-item.animate-in:nth-child(4) { transition-delay: 0.15s; }
.timeline-step.animate-in:nth-child(2) { transition-delay: 0.1s; }
.timeline-step.animate-in:nth-child(3) { transition-delay: 0.2s; }
.timeline-step.animate-in:nth-child(4) { transition-delay: 0.3s; }
.timeline-step.animate-in:nth-child(5) { transition-delay: 0.4s; }
.diaspora-card.animate-in:nth-child(2) { transition-delay: 0.1s; }
.diaspora-card.animate-in:nth-child(3) { transition-delay: 0.2s; }
.guarantee-item.animate-in:nth-child(2) { transition-delay: 0.1s; }
.guarantee-item.animate-in:nth-child(3) { transition-delay: 0.2s; }
/* Gallery cards — subtle scale */
.gallery-card { opacity: 0; animation: fadeScale 0.5s ease forwards; }
.gallery-card:nth-child(1) { animation-delay: 0s; }
.gallery-card:nth-child(2) { animation-delay: 0.05s; }
.gallery-card:nth-child(3) { animation-delay: 0.1s; }
.gallery-card:nth-child(4) { animation-delay: 0.15s; }
.gallery-card:nth-child(5) { animation-delay: 0.2s; }
.gallery-card:nth-child(6) { animation-delay: 0.25s; }
@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
/* Trust badges — fade in stagger */
.trust-badge { opacity: 0; animation: fadeUp 0.4s ease forwards; }
.trust-badge:nth-child(1) { animation-delay: 0.1s; }
.trust-badge:nth-child(2) { animation-delay: 0.2s; }
.trust-badge:nth-child(3) { animation-delay: 0.3s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@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; }
}
body { font-family: var(--font-primary); font-weight: var(--weight-regular); color: var(--black); background: var(--white); line-height: var(--lh-huge); font-size: var(--fs-text); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; }
ul, ol { list-style: none; }

/* ── Typography ─────────────────────────────────── */
.eyebrow {
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
  font-size: var(--fs-text-sm);
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: var(--ls-tight);
}
.h1-display {
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
  font-size: var(--fs-h1);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-small);
  color: var(--black);
}
.h1-mega {
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
  font-size: var(--fs-display);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-small);
}
.h2-section {
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
  font-size: var(--fs-h2);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-small);
}
.h3-card {
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
  font-size: var(--fs-h3);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-medium);
}
.h4-sub {
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
  font-size: var(--fs-h4);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-medium);
}
.body-lg { font-size: var(--fs-text-lg); letter-spacing: var(--ls-normal); line-height: var(--lh-huge); }
.body-md { font-size: var(--fs-text); letter-spacing: var(--ls-normal); line-height: var(--lh-huge); }
.body-sm { font-size: var(--fs-text-sm); letter-spacing: var(--ls-normal); line-height: var(--lh-huge); }
.muted { opacity: 0.7; }
.muted-50 { opacity: 0.5; }
.muted-40 { opacity: 0.4; }
.text-blue { color: var(--blue); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.label-upper {
  font-family: var(--font-primary);
  font-weight: var(--weight-medium);
  font-size: var(--fs-text-sm);
  letter-spacing: var(--ls-normal);
  color: var(--text-50);
}
.label-sm {
  font-family: var(--font-primary);
  font-weight: var(--weight-medium);
  font-size: var(--fs-text-sm);
  text-transform: uppercase;
  color: var(--text-50);
}
.price-value {
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
  font-size: var(--fs-text-lg);
  color: var(--blue);
  letter-spacing: var(--ls-tight);
}

/* ── Screen Reader Only ─────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Layout ─────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--site-margin); width: calc(100% - var(--site-margin) * 2); }
.section { padding: var(--section-gap) 0; }
.container-small { max-width: var(--container-small); margin: 0 auto; padding: 0 var(--site-margin); width: calc(100% - var(--site-margin) * 2); }
.section-header { text-align: center; max-width: 800px; margin: 0 auto; }
.section-header .eyebrow { margin-bottom: 20px; }
.section-header .h1-display,
.section-header .h2-section { margin-bottom: 32px; }
.section-header .body-lg { margin-bottom: 0; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: -0.32px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-1px); }
.btn-outline { border: 1px solid rgba(0,0,0,0.2); color: var(--black); opacity: 0.7; }
.btn-outline:hover { border-color: rgba(0,0,0,0.4); opacity: 1; }

/* Responsive CTA pair — call = primary on mobile, form = primary on desktop.
   Rationale: mobile users tap-to-call; desktop users prefer forms. */
.btn-call-cta {
  background: var(--blue);
  color: var(--white);
  border: 1px solid transparent;
}
.btn-call-cta:hover { background: var(--blue-hover); transform: translateY(-1px); }
.btn-form-cta {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.2);
  opacity: 0.7;
}
.btn-form-cta:hover { border-color: rgba(0,0,0,0.4); opacity: 1; }
@media (min-width: 768px) {
  .btn-call-cta {
    background: transparent;
    color: var(--black);
    border: 1px solid rgba(0,0,0,0.2);
    opacity: 0.7;
  }
  .btn-call-cta:hover {
    background: transparent;
    border-color: rgba(0,0,0,0.4);
    opacity: 1;
    transform: none;
  }
  .btn-form-cta {
    background: var(--blue);
    color: var(--white);
    border: 1px solid transparent;
    opacity: 1;
    /* Blue/primary always renders first on desktop, regardless of HTML order */
    order: -1;
  }
  .btn-form-cta:hover {
    background: var(--blue-hover);
    border-color: transparent;
    transform: translateY(-1px);
  }
}
.btn-white { background: var(--white); color: var(--text); }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.btn-whatsapp { background: var(--green-bright); color: var(--blue); }
.btn-whatsapp:hover { background: var(--green); color: var(--white); }
.btn-lg { height: 56px; padding: 0 32px; font-size: 18px; border-radius: var(--radius-lg); }
.btn-full { width: 100%; }
.btn-group { display: flex; gap: 12px; align-items: center; }

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: var(--container);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; }
.logo-text {
  font-family: var(--font-heavy);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.96px;
}
.nav { display: flex; align-items: center; gap: 20px; }
.nav a {
  font-size: 15px;
  letter-spacing: -0.3px;
  opacity: 0.5;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav a:hover { opacity: 1; }
.header-cta { display: flex; gap: 12px; flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
  cursor: pointer;
}
.hamburger span {
  height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: transform 0.3s, width 0.3s;
}
.hamburger span:first-child { width: 24px; }
.hamburger span:last-child { width: 18px; }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 80px 20px 20px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-nav { flex: 1; display: flex; flex-direction: column; }
.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 24px;
  letter-spacing: -1px;
}
.mobile-menu-nav a::after { content: '→'; opacity: 0.3; font-size: 16px; font-weight: 400; }
.mobile-menu-cta { display: flex; flex-direction: column; gap: 12px; padding-top: 20px; }
.mobile-menu-cta .btn { height: 56px; font-size: 18px; font-family: var(--font-heavy); font-weight: var(--weight-bold); }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero-wrap {
  background: var(--warm-bg-alt);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero {
  padding: 0;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero .eyebrow { margin-bottom: 20px; }
.hero h1 { margin-bottom: 32px; }
.hero .h1-display { margin-bottom: 32px; }
.hero .subtitle {
  font-size: 16px;
  opacity: 0.7;
  letter-spacing: -0.32px;
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto 48px;
}
.hero .btn-group { justify-content: center; margin-bottom: 60px; }

/* ═══════════════════════════════════════════════════
   GALLERY (Before/After)
   ═══════════════════════════════════════════════════ */
.gallery {
  padding: 140px 0 40px;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  padding: 0 0 24px;
  width: max-content;
  animation: gallery-marquee 60s linear infinite;
}
/* gallery marquee runs continuously, no pause on hover */
@keyframes gallery-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}
.gallery-card {
  flex-shrink: 0;
  width: 240px;
  margin-right: 24px;
}
.gallery-card:nth-child(odd) { margin-top: 48px; }
.gallery-card img,
.gallery-card .gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--warm-bg, #f0ede6);
  transition: opacity 0.45s ease;
}
/* Fade-in when browser signals image is painted */
.gallery-img {
  animation: gallery-img-fade 0.6s ease both;
}
@keyframes gallery-img-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.gallery-card h4 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 15px;
  margin-top: 8px;
}
.gallery-card p {
  font-size: 13px;
  opacity: 0.5;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════
   TRUST BAR (Marquee)
   ═══════════════════════════════════════════════════ */
.trust-bar {
  padding: 18px 0;
  overflow: hidden;
  background: var(--white);
}
.trust-track {
  display: flex;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.trust-track span {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: -0.28px;
  opacity: 0.4;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 32px;
}
.trust-track .dot {
  opacity: 1;
  display: flex;
  align-items: center;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ═══════════════════════════════════════════════════
   RECOGNITION CARDS
   ═══════════════════════════════════════════════════ */
.recognition .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.recognition .card-img {
  width: 100%;
  height: 380px;
  background: var(--warm-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recognition .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recognition .card h3 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 24px;
  letter-spacing: -0.96px;
  margin-top: 20px;
}
.recognition .card p {
  font-size: 16px;
  opacity: 0.7;
  line-height: 1.4;
  margin-top: 8px;
}
.recognition .btn-group { justify-content: center; margin-top: 48px; }

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.testimonial-card {
  min-width: 0;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
}
.testimonial-card img,
.testimonial-card video {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.testimonial-card:hover img,
.testimonial-card:hover video {
  transform: scale(1.03);
  filter: brightness(1.05);
}
@media (max-width: 768px) {
  .testimonials-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    margin: 64px calc(var(--site-margin) * -1) 0;
    padding: 0 var(--site-margin);
  }
  .testimonials-track::-webkit-scrollbar { display: none; }
  .testimonial-card { flex-shrink: 0; width: 260px; scroll-snap-align: start; }
}
.testimonial-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: clip;
}
.testimonial-thumb img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #ddd;
  display: block;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: #ffffff99;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
}
.testimonial-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9000; /* deasupra mobile-phone-bar (1000) și a oricărui alt overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer; /* indică clicabilitate pe backdrop */
  z-index: 1;
}
.video-modal-content {
  position: relative;
  width: 90vw;
  max-width: 480px;
  max-height: 90vh;
  z-index: 2; /* peste backdrop */
}
.video-modal-content video {
  width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
  background: #000;
  display: block;
}
.video-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.65);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: white;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  z-index: 10; /* deasupra video-ului */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.25);
  transition: background 0.15s, transform 0.15s;
}
.video-modal-close:hover,
.video-modal-close:focus {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.08);
  outline: none;
}
.video-modal-close:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .video-modal-close {
    width: 48px;
    height: 48px;
    font-size: 24px;
    top: 12px;
    right: 12px;
  }
}
.testimonial-card .name {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 16px;
  margin-top: 12px;
}
.testimonial-card .procedure { font-size: 14px; opacity: 0.4; margin-top: 2px; }
.testimonial-card .quote {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.4;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════
   PROCESS (4 Steps)
   ═══════════════════════════════════════════════════ */
.process .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--warm-bg);
  border-radius: var(--radius-xl);
  padding: 48px 24px;
  text-align: center;
}
.step-dots {
  display: flex;
  gap: 6px;
}
.step-dots span {
  width: 20px;
  height: 20px;
  background: var(--blue);
  border-radius: 4px;
  transform: rotate(45deg);
}
.step-dots span.empty { background: #d0dce8; }
.step h3 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 28px;
  letter-spacing: -1.12px;
  line-height: 1;
}
.step p { font-size: 16px; opacity: 0.7; line-height: 1.4; }

/* ═══════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════ */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.pricing-card {
  background: var(--warm-bg);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured { border: 2px solid var(--blue); position: relative; }
.pricing-badge {
  display: inline-flex;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 14px;
  padding: 8px 18px;
  border-radius: var(--radius);
  margin-bottom: 12px;
  align-self: flex-start;
}
.pricing-card .label {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 20px;
  letter-spacing: -0.6px;
}
.pricing-card .label span { font-weight: 500; }
.pricing-card .price {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 56px;
  letter-spacing: -2.24px;
  line-height: 1;
  margin: 8px 0;
  color: var(--text);
}
.pricing-card .desc { font-size: 16px; opacity: 0.7; line-height: 1.4; margin-bottom: 32px; }
.pricing-divider { height: 1px; background: rgba(0,0,0,0.1); margin-bottom: 32px; }
.pricing-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; flex: 1; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  opacity: 0.7;
}
.pricing-feature .check {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
}
.pricing-card .btn { margin-top: auto; }

/* ═══════════════════════════════════════════════════
   COMPARISON (All-on-4 vs All-on-6)
   ═══════════════════════════════════════════════════ */
.comparison { background: var(--warm-bg); }
.comparison-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.comparison-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
}
.comparison-card.recommended { border: 2px solid var(--blue); }
.comparison-card .card-title { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.comparison-card h3 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 48px;
  letter-spacing: -1.92px;
}
.comparison-card .card-price { margin-bottom: 24px; }
.comparison-card .card-desc { font-size: 18px; opacity: 0.7; line-height: 1.4; margin-bottom: 32px; }
.comparison-prices {
  background: var(--warm-bg);
  border-radius: var(--radius);
  padding: 4px 0;
  margin-bottom: 32px;
}
.comparison-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.comparison-price-row:last-child { border-bottom: none; }
.comparison-price-label { font-size: 15px; opacity: 0.6; }
.comparison-price-value { font-family: var(--font-heavy); font-weight: var(--weight-bold); font-size: 15px; color: var(--blue); }
.comparison-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; flex: 1; }

/* Standard vs Premium Pricing Grid */
.sp-grid { margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
.sp-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sp-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: clip;
}
.sp-card-header {
  padding: 24px 32px;
}
.sp-card-header h3 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 24px;
  letter-spacing: -0.5px;
  line-height: 1;
}
.sp-price {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 18px;
  color: var(--blue);
  margin-top: 8px;
}
.sp-card-body {
  padding: 0 32px 32px;
}
.sp-card-body p {
  font-size: 15px;
  opacity: 0.7;
  line-height: 1.5;
  margin-bottom: 24px;
}
.sp-card-body small {
  opacity: 0.6;
  font-size: 13px;
}
.sp-details {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.sp-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sp-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.5;
}
.sp-value {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 15px;
}
.sp-value.blue { color: var(--blue); }

@media (max-width: 768px) {
  .sp-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 64px;
}
.service-card {
  background: var(--warm-bg);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.service-card h3 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 48px;
  letter-spacing: -1.92px;
  line-height: 1;
}
.service-card .desc { font-size: 20px; opacity: 0.7; line-height: 1.4; }
.service-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.service-details.single-row {
  grid-template-columns: 1fr 1fr 1fr;
}
.detail-item .detail-label { display: block; margin-bottom: 4px; }
.detail-item .detail-value {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 20px;
  letter-spacing: -0.6px;
  line-height: 1;
}
.detail-item .detail-value.blue { color: var(--blue); }
.pain-teeth {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}
.pain-teeth svg {
  width: 16px;
  height: 15px;
}
.pain-teeth svg.active { fill: var(--blue); }
.pain-teeth svg.inactive { fill: #d0d0d0; }

/* ═══════════════════════════════════════════════════
   ABOUT DR. TATU
   ═══════════════════════════════════════════════════ */
.about .about-content { max-width: 900px; margin: 0 auto; text-align: center; }
.about .about-content h2 { margin: 20px 0 24px; }
.about .about-content .desc { font-size: var(--fs-text); opacity: 0.7; line-height: 1.4; }
.about .about-content .eyebrow { display: block; }
.about .video-placeholder {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 16 / 9;
  height: auto;
  background: var(--warm-bg);
  border-radius: 100vw;
  position: relative;
  overflow: clip;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px 0;
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  border-radius: inherit;
}
.video-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: inherit;
}
.video-placeholder.playing .video-overlay { display: none; }
.video-placeholder img { transition: transform 0.4s ease; }
.video-placeholder:hover img { transform: scale(1.05); }
.video-placeholder:hover .play-btn { transform: translate(-50%, -50%) scale(1.15); }
.trust-badges {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  opacity: 1;
}

/* ═══════════════════════════════════════════════════
   DIASPORA SECTION
   ═══════════════════════════════════════════════════ */
.diaspora-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 64px;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.timeline-step:last-child { border-right: none; }
.timeline-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 20px;
}
.timeline-step:last-child .timeline-number { background: var(--navy); }
.timeline-step .step-label {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 14px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.timeline-step:last-child .step-label { color: var(--navy); }
.timeline-step h4 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 22px;
  letter-spacing: -0.88px;
  line-height: var(--lh-small);
}
.timeline-step p { font-size: 15px; opacity: 0.6; line-height: 1.4; }

/* Price Comparison */
.price-compare {
  background: var(--warm-bg);
  padding: 80px 0;
}
.price-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--site-margin);
  width: calc(100% - var(--site-margin) * 2);
}
.compare-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.compare-card.faded { opacity: 0.6; }
.compare-card.highlight { border: 2px solid var(--blue); }
.compare-card .compare-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  min-height: 48px;
}
@media (max-width: 768px) {
  .compare-card.highlight .compare-header { flex-direction: column; align-items: flex-start; }
}
.compare-card .compare-header h4 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0;
}
.compare-card.highlight .compare-header h4 { color: var(--blue); }
.compare-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: none; }
.compare-row .service-name { font-size: 18px; opacity: 0.7; }
.compare-row .service-price {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 20px;
}
.compare-card.faded .service-price { text-decoration: line-through; opacity: 0.5; }
.compare-card.highlight .service-price { color: var(--blue); }
.compare-note { font-size: 14px; opacity: 0.5; margin-top: 16px; line-height: 1.4; }

/* Social Proof Bar */
.social-proof-bar {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 48px 0;
  gap: 24px;
}
.social-proof-bar .social-link:first-child { justify-self: start; }
.social-proof-bar .stat-group { justify-content: center; }
.social-proof-bar .social-link:last-child { justify-self: end; }
.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.social-link:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}
.social-link:hover .social-icon {
  transform: scale(1.1);
}
.social-icon {
  transition: transform 0.2s ease;
}
.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon.tiktok { background: var(--black); }
.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link h4 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 22px;
  letter-spacing: -0.88px;
}
.social-link p { font-size: 14px; opacity: 0.5; }
.stat-group { display: flex; gap: 40px; }
.stat { text-align: center; }
.stat .stat-value {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 28px;
  letter-spacing: -1.12px;
}
.stat .stat-label { font-size: 14px; opacity: 0.4; margin-top: 4px; }

/* Diaspora Testimonials */
.diaspora-testimonials {
  background: var(--warm-bg);
  padding: 80px 0;
}
.diaspora-testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}
.diaspora-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diaspora-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stars { color: var(--blue); font-size: 16px; font-family: var(--font-heavy); font-weight: var(--weight-bold); }
.diaspora-card blockquote {
  font-size: 18px;
  opacity: 0.8;
  line-height: 1.5;
  flex: 1;
}
.diaspora-card .author-group { display: flex; flex-direction: column; gap: 0; margin-top: auto; }
.diaspora-card .author { font-family: var(--font-heavy); font-weight: var(--weight-bold); font-size: 16px; }
.diaspora-card .origin { font-size: 14px; opacity: 0.5; margin-top: 4px; }

/* Guarantee */
.guarantee {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.guarantee-list { display: flex; flex-direction: column; gap: 20px; }
.guarantee-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--warm-bg);
  border-radius: 12px;
}
.guarantee-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.guarantee-item h4 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 18px;
  letter-spacing: -0.36px;
  margin-bottom: 4px;
}
.guarantee-item p { font-size: 15px; opacity: 0.6; line-height: 1.4; }

/* Diaspora CTA */
.diaspora-cta {
  background: var(--navy);
  padding: 80px 0;
}
.diaspora-cta-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.diaspora-cta h2 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 40px;
  color: var(--white);
  letter-spacing: -1.6px;
  line-height: 1.1;
}
.diaspora-cta .desc { font-size: 18px; color: var(--white); opacity: 0.6; line-height: 1.4; margin-top: 24px; text-wrap: balance; }
.diaspora-cta-buttons { display: flex; flex-direction: column; gap: 16px; width: 400px; flex-shrink: 0; }
.btn-whatsapp-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 22px;
  letter-spacing: -0.44px;
  transition: all 0.2s;
}
.btn-whatsapp-lg:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.btn-whatsapp-lg svg { flex-shrink: 0; }
.diaspora-cta .note { font-size: 14px; color: var(--white); opacity: 0.35; text-align: center; margin-top: 8px; }

/* ═══════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════ */
.faq .section-header { margin-bottom: 64px; }
.faq-list {
  max-width: 827px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.faq-item {
  background: var(--warm-bg);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  /* Button reset — <button> primește default styles native (mai ales pe iOS Safari) */
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
}
.faq-question:focus { outline: none; }
.faq-question:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 8px; }
.faq-question h3 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 32px;
  letter-spacing: -1.28px;
  line-height: 1.1;
  flex: 1;
  padding-right: 16px;
}
.faq-arrow {
  font-size: 14px;
  opacity: 0.3;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 20px;
  opacity: 0.7;
  line-height: 1.4;
  letter-spacing: -0.4px;
}
.faq-item.open .faq-answer { max-height: 500px; transition: max-height 0.35s ease; }

/* ═══════════════════════════════════════════════════
   FINAL CTA + FORM
   ═══════════════════════════════════════════════════ */
.final-cta {
  background: var(--blue);
  padding: 80px 0;
  overflow: clip;
}
.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.final-cta-content .eyebrow { color: var(--white); opacity: 0.7; margin-bottom: 20px; }
.final-cta-content h2 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 56px;
  color: var(--white);
  letter-spacing: -2.24px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.final-cta-content .desc { font-size: 20px; color: var(--white); opacity: 0.7; line-height: 1.4; margin-bottom: 40px; }
.final-cta-footer {
  display: flex;
  gap: 40px;
  margin-top: 80px;
  color: var(--white);
  flex-wrap: wrap;
  overflow: hidden;
}
.final-cta-footer .footer-col h5 {
  font-family: var(--font-heavy);
  font-weight: 500;
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 8px;
}
.final-cta-footer .footer-col p {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 16px;
}

/* Form */
.form-card { display: flex; flex-direction: column; gap: 24px; }
.form-card h3 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 28px;
  color: var(--white);
  letter-spacing: -1.12px;
}
.form-card .form-sub { font-size: 15px; color: var(--white); opacity: 0.8; }
.form-card form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-group label {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 16px;
  color: var(--white);
}
.form-input {
  height: 48px;
  padding: 0 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
}
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus { outline: 2px solid rgba(255,255,255,0.5); outline-offset: 2px; border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.15); }
.form-input:focus:not(:focus-visible) { outline: none; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
textarea.form-input { height: 100px; padding: 16px 20px; resize: none; }
.form-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 8px 0; }

/* Chip selectors */
.chip-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 14px;
  opacity: 1;
  cursor: pointer;
  transition: all 0.2s;
}
.chip:hover { background: rgba(255,255,255,0.12); opacity: 1; }
.chip.selected {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue);
  opacity: 1;
}
.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
  margin-bottom: 32px;
}
.form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  appearance: none;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.form-check input[type="checkbox"]:checked {
  background: var(--white);
  border-color: var(--white);
}
.form-check span { font-size: 14px; color: var(--white); opacity: 0.8; line-height: 1.4; }
.form-submit-note {
  font-size: 13px;
  color: var(--white);
  opacity: 0.7;
  text-align: center;
  line-height: 1.4;
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════════
   INNER PAGES — SHARED STYLES
   ═══════════════════════════════════════════════════ */

/* Page Hero (inner pages) */
.page-hero {
  background: var(--warm-bg-alt);
  padding: 160px 0 80px;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { margin-bottom: 24px; }
.page-hero .subtitle {
  font-size: var(--fs-text-lg);
  opacity: 0.7;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 40px;
}
.page-hero .btn-group { justify-content: center; }

/* Emotional Hero (landing pages) */
.emotional-hero {
  background: var(--warm-bg-alt);
  padding: 160px 0 80px;
}
.emotional-hero .container { max-width: 900px; }
.emotional-hero h1 { margin-bottom: 24px; }
.emotional-hero .subtitle {
  font-size: var(--fs-text-lg);
  opacity: 0.7;
  line-height: 1.5;
  margin-bottom: 40px;
}

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0;
  font-size: 14px;
  opacity: 0.5;
}
.breadcrumb a { text-decoration: underline; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { margin: 0 8px; }

/* Content Block (storytelling sections) */
.content-block {
  max-width: 800px;
  margin: 0 auto;
}
.content-block p {
  font-size: var(--fs-text-lg);
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.8;
}
.content-block p:last-child { margin-bottom: 0; }
.content-block p.highlight {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: var(--fs-h4);
  opacity: 1;
  letter-spacing: var(--ls-tight);
  line-height: 1.4;
}
.content-block .single-line {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: var(--fs-h3);
  letter-spacing: var(--ls-tight);
  line-height: 1.2;
  margin: 48px 0 32px;
  opacity: 1;
}

/* Empathy List (bullet-free, emotional) */
.empathy-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
  padding-left: 0;
}
.empathy-list li {
  font-size: var(--fs-text-lg);
  line-height: 1.5;
  padding-left: 32px;
  position: relative;
  opacity: 0.8;
}
.empathy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 16px;
  height: 2px;
  background: var(--blue);
}

/* Option Cards (treatment options) */
.option-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.option-card {
  background: var(--warm-bg);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.option-card.popular { border: 2px solid var(--blue); }
.option-card h3 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: var(--fs-h4);
  letter-spacing: var(--ls-tight);
}
.option-card .option-price {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: var(--fs-h3);
  color: var(--blue);
  letter-spacing: var(--ls-tight);
}
.option-card p { font-size: 16px; opacity: 0.7; line-height: 1.5; }
.option-card .btn { margin-top: auto; }

/* Inline CTA (mid-page call to action) */
.inline-cta {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  margin: 64px 0;
}
.inline-cta h2 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: var(--fs-h2);
  color: var(--white);
  letter-spacing: var(--ls-tight);
  line-height: 1.1;
  margin-bottom: 16px;
}
.inline-cta p {
  font-size: var(--fs-text-lg);
  color: var(--white);
  opacity: 0.7;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.inline-cta .btn-group { justify-content: center; }

/* Comparison Visual (prosthesis vs implants etc) */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 48px 0;
}
.vs-card {
  border-radius: var(--radius-xl);
  padding: 40px;
}
.vs-card.negative {
  background: var(--warm-bg);
  opacity: 0.7;
}
.vs-card.positive {
  background: var(--white);
  border: 2px solid var(--blue);
}
.vs-card h3 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: var(--fs-h4);
  letter-spacing: var(--ls-tight);
  margin-bottom: 24px;
}
.vs-card.positive h3 { color: var(--blue); }
.vs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vs-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  line-height: 1.4;
}
.vs-list li svg { flex-shrink: 0; margin-top: 3px; }

/* Testimonial Inline */
.testimonial-inline {
  background: var(--warm-bg);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin: 48px 0;
}
.testimonial-inline blockquote {
  font-size: var(--fs-text-lg);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-inline .author-name {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 16px;
}
.testimonial-inline .author-detail {
  font-size: 14px;
  opacity: 0.5;
}

/* Related Links (internal linking) */
.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.related-link {
  background: var(--warm-bg);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all 0.2s;
}
.related-link:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.related-link span {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 16px;
  letter-spacing: -0.32px;
}
.related-link::after { content: '→'; opacity: 0.3; }
.related-link:hover::after { opacity: 1; color: var(--white); }

/* Price Table */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 48px 0;
}
.price-table thead th {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 16px 24px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  color: var(--text-50);
}
.price-table tbody td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table .price-cell {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  color: var(--blue);
  white-space: nowrap;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item h4 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-50);
  margin-bottom: 8px;
}
.contact-item p {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 20px;
  letter-spacing: -0.4px;
}
.contact-item a { color: var(--blue); }

/* Map embed */
.map-embed {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: clip;
  background: var(--warm-bg);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* Results Gallery */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.result-card {
  background: var(--warm-bg);
  border-radius: var(--radius-xl);
  overflow: clip;
  transition: transform 0.2s, box-shadow 0.2s;
}
.result-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.result-card .result-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 280px;
}
.result-card .result-images img { width: 100%; height: 100%; object-fit: cover; }
.result-card .result-content { padding: 24px; }
.result-card h3 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 20px;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.result-card p { font-size: 15px; opacity: 0.7; line-height: 1.4; }
.result-card .result-tag {
  display: inline-flex;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 12px;
}

/* Checklist (benefits) */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}
.check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-item p { font-size: var(--fs-text); line-height: 1.5; }
.check-item strong { font-family: var(--font-heavy); font-weight: var(--weight-bold); }

/* Number highlight */
.number-highlight {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0;
}
.number-highlight .big {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: var(--fs-h1);
  color: var(--blue);
  letter-spacing: var(--ls-tight);
  line-height: 1;
}
.number-highlight .unit {
  font-size: var(--fs-text);
  opacity: 0.5;
}

/* Page footer nav */
.page-footer {
  background: var(--warm-bg);
  padding: 80px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-col h5,
.footer-col .h5-sub {
  font-family: var(--font-heavy);
  font-weight: var(--weight-medium);
  font-size: var(--fs-text-sm);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.5);
  margin: 0 0 8px 0;
}
.final-cta .final-cta-footer { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px 48px; margin-top: 32px; }
.final-cta .footer-col .h5-sub { color: rgba(255,255,255,0.5); }
.final-cta .footer-col p { color: rgba(255,255,255,0.9); margin: 0; font-weight: var(--weight-bold); }
@media (max-width: 768px) {
  .final-cta .final-cta-footer { grid-template-columns: 1fr; gap: 16px; }
}
.footer-col a {
  display: block;
  font-size: 15px;
  opacity: 0.6;
  padding: 6px 0;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 15px; opacity: 0.6; line-height: 1.5; max-width: 300px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  opacity: 0.4;
}

/* Service page inner nav tabs */
.service-nav {
  display: flex;
  gap: 8px;
  padding: 16px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.service-nav::-webkit-scrollbar { display: none; }
.service-nav a {
  display: inline-flex;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  background: var(--warm-bg);
  transition: all 0.2s;
}
.service-nav a:hover, .service-nav a.active {
  background: var(--blue);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════
   FLOATING MOBILE CTA
   ═══════════════════════════════════════════════════ */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0));
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--border);
}
.floating-cta-btn {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 56px;
  padding: 8px 6px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.floating-cta-btn:active {
  transform: scale(0.96);
}
.floating-cta-btn svg {
  flex-shrink: 0;
}
.floating-cta-label {
  font-family: var(--font-heavy);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.floating-cta-call {
  background: var(--navy);
  color: var(--white);
}
.floating-cta-form {
  background: var(--blue);
  color: var(--white);
}
.floating-cta-wa {
  background: #25d366;
  color: var(--white);
}

/* ═══════════════════════════════════════════════════
   FORM SUCCESS / ERROR STATES
   ═══════════════════════════════════════════════════ */
.form-message {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-top: 16px;
  font-size: 15px;
  display: none;
}
.form-message.success { background: rgba(45,125,70,0.2); color: #2d7d46; display: block; }
.form-message.error { background: rgba(194,59,34,0.2); color: #c23b22; display: block; }
.form-input.invalid { border-color: #c23b22; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card h3 { font-size: 32px; }
  .comparison-cards { grid-template-columns: 1fr; }
  .comparison-card { padding: 28px 24px; }
  .comparison-card h3 { font-size: 36px; }
  .comparison-card .card-title { flex-direction: column-reverse; align-items: flex-start; gap: 10px; }
  .diaspora-timeline { grid-template-columns: repeat(3, 1fr); }
  .diaspora-timeline .timeline-step:nth-child(4),
  .diaspora-timeline .timeline-step:nth-child(5) { grid-column: span 1; }
  .price-compare { padding: 60px 0; }
  .diaspora-cards { grid-template-columns: 1fr; }
  .guarantee { grid-template-columns: 1fr; gap: 48px; }
  .final-cta-inner { grid-template-columns: 1fr; }
  .final-cta-content h2 { font-size: 40px; }
  .diaspora-cta-inner { flex-direction: column; gap: 48px; }
  .diaspora-cta-buttons { width: 100%; }
}

@media (max-width: 1430px) {
  .nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .floating-cta { display: flex; }
}

/* Mobile-only sticky phone bar — TOP of page, deasupra header-ului
   Pentru audiența 50-65 ani care preferă să sune. Inject-at via JS din main.js. */
.mobile-phone-bar { display: none; }

@media (max-width: 768px) {
  .mobile-phone-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 52px;
    padding: 0 16px;
    background: linear-gradient(135deg, #0067d5 0%, #0055b3 100%);
    color: #fff !important;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,103,213,0.35);
    -webkit-tap-highlight-color: rgba(255,255,255,0.2);
  }
  .mobile-phone-bar svg { flex-shrink: 0; }
  .mobile-phone-bar-label {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.95;
  }
  .mobile-phone-bar-number {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-variant-numeric: tabular-nums;
  }
  .mobile-phone-bar:active {
    background: linear-gradient(135deg, #0055b3 0%, #003d80 100%);
  }
  /* Când există mobile-phone-bar, push restul conținutului în jos */
  body.has-mobile-phone-bar .header { top: 52px !important; }
  body.has-mobile-phone-bar { padding-top: 52px; }

  .header { top: 0; width: 100%; left: 0; transform: none; }
  .header-inner { border-radius: 0; box-shadow: 0 2px 20px rgba(0,0,0,0.06); margin: 0; padding: 12px 20px; }
  .logo-text { font-size: 20px; }

  .hero-wrap .gallery { order: 2; padding-top: 0; }
  .hero-wrap .hero { order: 1; padding-top: 80px; }
  .hero .container { padding: 0; }
  .hero .btn-group { flex-direction: column; width: 100%; padding: 0; }
  .hero .btn-group .btn { width: 100%; font-size: 16px; }

  .gallery-card { width: 200px; }
  .gallery-card:nth-child(odd) { margin-top: 32px; }
  .gallery-card img { height: 220px; }

  .recognition .cards { grid-template-columns: 1fr; }
  .recognition .card { padding-bottom: 24px; border-bottom: 1px solid var(--border); }
  .recognition .card:last-child { padding-bottom: 0; border-bottom: none; }
  .recognition .card-img { height: 240px; }

  .process .steps { grid-template-columns: 1fr 1fr; }
  .btn-group { flex-direction: column; width: 100%; }
  .btn-group .btn { width: 100%; }
  .step { padding: 28px 16px; }
  .step h3 { font-size: 22px; }

  .pricing-cards { grid-template-columns: 1fr !important; }
  .pricing-card { padding: 28px 20px; }
  .pricing-card .price { font-size: 40px; }

  .service-card { padding: 24px; gap: 16px; }
  .service-card h3 { font-size: 24px; letter-spacing: -0.96px; }
  .service-card .desc { font-size: 15px; }
  .detail-item .detail-value { font-size: 16px; }

  .faq-question h3 { font-size: 18px; letter-spacing: -0.36px; }
  .faq-answer-inner { font-size: 15px; }

  .diaspora-timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline-step { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 16px; }
  .timeline-step:last-child { border-bottom: none; }
  .timeline-step h4 { font-size: var(--fs-h3); }
  .timeline-step p { font-size: 14px; }
  .price-compare { padding: 40px 0; }
  .price-compare-grid { grid-template-columns: 1fr; }
  .social-proof-bar { display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; padding: 32px 20px; overflow: hidden; }
  .stat-group { gap: 24px; }

  .final-cta-inner { grid-template-columns: 1fr; gap: 24px; }
  .final-cta .container { padding: 0 20px; box-sizing: border-box; width: 100%; }
  .final-cta-content h2 { font-size: 32px; letter-spacing: -1.28px; }
  .final-cta-content .btn-group { flex-direction: column; }
  .final-cta-content .btn-group .btn { width: 100%; }
  .form-card { max-width: 100%; box-sizing: border-box; }
  .final-cta-footer { gap: 24px; }
  .final-cta-footer .footer-col { flex: none; width: 100%; }
  .form-row { grid-template-columns: 1fr; }

  .floating-cta { display: flex; }
  .final-cta { padding-bottom: 100px; }

  .trust-badges { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  .hero .btn-group { flex-direction: column; }
  .hero .btn-group .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .process .steps { grid-template-columns: 1fr; }
}
/* Desktop/mobile visibility for footer info */
.desktop-only { display: block; }
.mobile-only { display: none; }
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
}

/* No-video state for about photo */
.video-placeholder.no-video { cursor: default; }
.video-placeholder.no-video:hover img { transform: none; }

/* ═══════════════════════════════════════════════════
   THANK YOU PAGE (/multumim)
   ═══════════════════════════════════════════════════ */
.thank-you-page { min-height: calc(100vh - 80px); background: var(--bg); }
.thank-you-card {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--site-margin);
}
.thank-you-check {
  width: 64px;
  height: 64px;
  margin: 0 auto 40px;
  animation: ty-check-in 0.6s ease-out both;
}
@keyframes ty-check-in {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}
.thank-you-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
.thank-you-next { text-align: left; margin-top: 64px; }
.thank-you-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.thank-you-steps li {
  counter-increment: step;
  padding: 20px 24px 20px 64px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  line-height: 1.5;
}
.thank-you-steps li::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}
.thank-you-back {
  display: inline-block;
  margin-top: 48px;
  color: var(--black);
  opacity: 0.6;
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.2s ease;
}
.thank-you-back:hover { opacity: 1; }
@media (max-width: 480px) {
  .thank-you-actions { flex-direction: column; }
  .thank-you-actions .btn { width: 100%; }
}

/* Thank-you page countdown */
.thank-you-countdown {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 32px;
  background: rgba(0, 103, 213, 0.08);
  border: 1px solid rgba(0, 103, 213, 0.2);
  border-radius: var(--radius-lg);
  margin: 8px auto 32px;
}
.thank-you-countdown-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted, #6b6b6b);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.thank-you-countdown-time {
  font-family: var(--font-heavy);
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.72px;
  line-height: 1;
}
@media (max-width: 480px) {
  .thank-you-countdown-time { font-size: 28px; }
  .thank-you-countdown { padding: 16px 24px; }
}

/* ANPC badges in footer */
.footer-anpc {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.footer-anpc a {
  display: block;
  line-height: 0;
  border-radius: 4px;
  overflow: clip;
  transition: opacity 0.2s ease;
  opacity: 0.9;
}
.footer-anpc a:hover { opacity: 1; }
.footer-anpc img {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 480px) {
  .footer-anpc { justify-content: center; }
  .footer-anpc img { height: 36px; }
}

/* ═══════════════════════════════════════════════════
   LOCATION SECTION (Google Maps)
   ═══════════════════════════════════════════════════ */
.location-section {
  padding: var(--section-gap) 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.location-map {
  border-radius: var(--radius-xl);
  overflow: clip;
  background: var(--warm-bg);
  min-height: 480px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.location-map iframe {
  display: block;
  min-height: 480px;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 8px 0;
}
.location-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.location-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 103, 213, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted, #6b6b6b);
  margin: 0 0 4px;
}
.location-item p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--black);
}
.location-item p a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  transition: border-color 0.2s ease;
}
.location-item p a:hover { border-color: var(--blue); }
.location-item .muted {
  color: var(--text-muted, #9b9b9b);
  font-size: 15px;
}
.location-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .location-map, .location-map iframe { min-height: 360px; }
}
@media (max-width: 480px) {
  .location-map, .location-map iframe { min-height: 280px; }
  .location-actions { flex-direction: column; }
  .location-actions .btn { width: 100%; }
  /* Text mai larg pe mobile — icon mai mic, gap mai mic, text-wrap pretty */
  .location-item { gap: 12px; }
  .location-icon { width: 36px; height: 36px; }
  .location-icon svg { width: 18px; height: 18px; }
  .location-item p { font-size: 16px; text-wrap: pretty; word-spacing: -0.5px; }
  .location-label { font-size: 12px; }
}

/* ═══════════════════════════════════════════════════
   HOVER VIDEO (recognition cards with TikTok clips)
   ═══════════════════════════════════════════════════ */
.hover-video {
  position: relative;
  aspect-ratio: 9 / 16;
  height: 100%;
  width: auto;
  max-width: 100%;
  cursor: pointer;
  overflow: clip;
  border-radius: var(--radius-lg);
  background: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.hover-video video,
.hover-video img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* container is already 9:16, so cover = no visible crop */
  display: block;
  border-radius: var(--radius-lg);
  background: #000;
}
.hover-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
  animation: hv-play-appear 0.4s ease 0.2s both;
}
@keyframes hv-play-appear {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}
.hover-video:hover .hover-video-play {
  transform: scale(1.08);
}
/* HoverVideo keeps native 9:16 aspect; card-img centers it with letterbox bg */
.recognition .card-img .hover-video {
  height: 380px; /* fills card-img height; width computed from aspect-ratio = ~214px */
}
@media (max-width: 768px) {
  .recognition .card-img {
    height: auto;
    aspect-ratio: 9 / 16;
    max-width: 320px;
    margin: 0 auto;
  }
  .recognition .card-img .hover-video { height: 100%; width: 100%; }
  .hover-video-play svg { width: 48px; height: 48px; }
}

/* ═══════════════════════════════════════════════════
   LANDING PAGE /reabilitare-dantura
   ═══════════════════════════════════════════════════ */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--black);
  font-weight: 700;
  font-size: 18px;
}
.lp-brand-name { letter-spacing: -0.02em; }
.lp-header-cta { display: flex; gap: 8px; }
@media (max-width: 640px) {
  .lp-header-cta .btn { padding: 8px 12px; font-size: 13px; }
  .lp-brand-name { display: none; }
}

.lp-hero {
  text-align: center;
  padding: 64px 0 80px;
}
.lp-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}
.lp-hero-title {
  margin: 16px 0 24px;
}
.lp-hero-subtitle {
  max-width: 540px;
  margin: 0 auto 40px;
}
.lp-hero-video {
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
  max-width: 360px;
}
.lp-hero-video .hover-video {
  aspect-ratio: 9 / 16;
  height: 600px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
@media (max-width: 768px) {
  .lp-hero { padding: 40px 0 56px; }
  .lp-hero-video .hover-video {
    height: auto;
    width: 100%;
    max-width: 320px;
  }
}
.lp-hero-ctas {
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .lp-hero-ctas { flex-direction: column; }
  .lp-hero-ctas .btn { width: 100%; }
}

/* LP trust row inside final CTA */
.lp-trust-row {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.lp-trust-row > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-trust-row strong {
  font-size: 24px;
  font-weight: 700;
  color: white;
}
.lp-trust-row span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Floating CTA secondary button (Formular) on LP */
.floating-cta-btn {
  padding: 12px 16px;
  background: var(--blue);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════
   LP /reabilitare-dantura — WAVE 1 CRO sections
   ═══════════════════════════════════════════════════ */

/* Hero mini trust row — imediat sub CTAs */
.lp-hero-trust {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted, #6b6b6b);
  flex-wrap: wrap;
}
.lp-hero-trust .sep { opacity: 0.4; }
@media (max-width: 600px) {
  .lp-hero-trust { font-size: 13px; gap: 8px; }
  .lp-hero-trust .sep { display: none; }
  .lp-hero-trust span { display: block; width: 100%; text-align: center; }
}

/* Before/After Gallery */
.ba-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ba-gallery-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: clip;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ba-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.ba-gallery-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--warm-bg);
  overflow: clip;
}
.ba-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-gallery-card h4 {
  font-family: var(--font-heavy);
  font-weight: var(--weight-bold);
  font-size: 20px;
  margin: 20px 24px 4px;
}
.ba-gallery-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 24px 24px;
}
@media (max-width: 900px) {
  .ba-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
  .ba-gallery-grid { grid-template-columns: 1fr; }
}

/* Despre Dr. Tatu (LP variant) */
.lp-about {
  background: var(--warm-bg, #f0ede6);
}
.lp-about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.lp-about-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: clip;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
.lp-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-about-content .eyebrow {
  margin-bottom: 16px;
}
.lp-about-content h2 {
  margin: 0 0 24px;
}
.lp-about-content .body-lg {
  margin-bottom: 32px;
}
.lp-about-stats {
  display: flex;
  gap: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.lp-about-stats > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-about-stats strong {
  font-family: var(--font-heavy);
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.lp-about-stats span {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .lp-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lp-about-photo {
    max-width: 400px;
    margin: 0 auto;
  }
  .lp-about-stats { gap: 24px; }
  .lp-about-stats strong { font-size: 24px; }
}

/* Obiecții Mit/Realitate */
.lp-myth-section {
  background: var(--bg, #fafaf7);
}
.myth-reality-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.myth-reality-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: clip;
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.myth-reality-card:hover {
  border-color: rgba(0, 103, 213, 0.3);
  transform: translateY(-2px);
}
.mr-side {
  padding: 24px 28px;
}
.mr-myth {
  background: #fef5f5;
  border-right: 1px solid var(--border);
}
.mr-reality {
  background: rgba(0, 103, 213, 0.04);
}
.mr-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.mr-myth .mr-label {
  background: #fde2e2;
  color: #c23b22;
}
.mr-reality .mr-label {
  background: rgba(0, 103, 213, 0.12);
  color: var(--blue);
}
.mr-myth .mr-text {
  font-family: var(--font-heavy);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--black);
  text-decoration: line-through;
  text-decoration-color: rgba(194, 59, 34, 0.35);
  text-decoration-thickness: 2px;
}
.mr-reality .mr-text {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: var(--text-primary, #2d2d2d);
}
@media (max-width: 768px) {
  .myth-reality-card {
    grid-template-columns: 1fr;
  }
  .mr-myth {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .mr-myth .mr-text { font-size: 18px; }
}

/* ═══════════════════════════════════════════════════
   LP /reabilitare-dantura — iterare post-Wave 1
   ═══════════════════════════════════════════════════ */

/* Hero video LANDSCAPE (16:9) — override HoverVideo default 9:16 */
.lp-hero-video-landscape {
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  width: 100% !important;
  max-width: 720px;
}
.lp-hero-video-landscape video,
.lp-hero-video-landscape img {
  object-fit: cover;
}
/* Override .lp-hero-video wrapper sizing since poster is landscape now */
.lp-hero-video {
  max-width: 720px;
  margin: 0 auto 40px;
}
/* Mobile: 3:4 portrait — arată mai mult din video-ul vertical al lui Dr. Tatu */
@media (max-width: 640px) {
  .lp-hero-video-landscape {
    aspect-ratio: 3 / 4 !important;
    max-width: 360px;
  }
  .lp-hero-video {
    max-width: 360px;
  }
}

/* Remove cream bg from .lp-about — let it inherit page bg */
.lp-about {
  background: transparent;
}

/* More spacing between section header and content on Before/After + Obiecții */
.ba-gallery-grid,
.myth-reality-grid {
  margin-top: 56px;
}

/* Before/After image — taller aspect to fit actual vertical before/after composition */
.ba-gallery-img {
  aspect-ratio: 3 / 4;
}

/* Google reviews CTA badge */
.google-reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  color: var(--black);
  font-size: 15px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.google-reviews-link:hover {
  border-color: rgba(0, 103, 213, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.google-g { flex-shrink: 0; }
.google-reviews-rating {
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
}
.google-reviews-stars {
  color: #fbbc04;
  letter-spacing: 1px;
  font-size: 14px;
}
.google-reviews-text {
  color: var(--text-muted, #6b6b6b);
}
.google-reviews-arrow {
  color: var(--blue);
  font-weight: 700;
}
@media (max-width: 560px) {
  .google-reviews-link {
    font-size: 14px;
    padding: 12px 18px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .google-reviews-text { width: 100%; order: 99; }
  .google-reviews-arrow { display: none; }
}

/* ═══════════════════════════════════════════════════
   Instagram Reels Section
   ═══════════════════════════════════════════════════ */
.ig-reels-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 16px;
  row-gap: 56px;
  margin-top: 48px;
}
.ig-reels-track-row {
  display: contents;
}
.ig-reel-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
/* Force every reel thumbnail to identical 9:16 aspect — overrides .hover-video defaults */
.ig-reel-card .hover-video {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  max-width: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.ig-reel-card .hover-video:hover {
  transform: translateY(-4px);
}
.ig-reel-card .hover-video img,
.ig-reel-card .hover-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #ddd;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.ig-reel-card .hover-video:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}
.ig-reel-caption {
  font-size: 17px;
  line-height: 1.35;
  color: var(--text);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  min-height: 46px; /* reserve space for 2 lines so the IG link aligns across cards */
}
.ig-reel-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted, #6b6b6b);
  text-decoration: none;
  margin-top: auto;
  -webkit-tap-highlight-color: transparent;
}
.ig-reel-link:hover {
  color: var(--blue);
}
.ig-reel-link svg {
  flex-shrink: 0;
}
/* Instagram handle — bold + brand gradient (text fill) */
.ig-handle {
  font-weight: 800;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
  .ig-reels-track {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile expand toggle — hidden by default (visible only on mobile when collapsed) */
.ig-reels-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.ig-reels-show-more {
  display: none;
}

@media (max-width: 768px) {
  .ig-reels-track {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 32px;
    margin-top: 32px;
  }
  /* Hide reels 6-10 until checkbox is checked */
  .ig-reels-toggle:not(:checked) ~ .ig-reels-track .ig-reel-card:nth-child(n+6) {
    display: none;
  }
  /* Show "Vezi încă 5 reels" button when collapsed */
  .ig-reels-toggle:not(:checked) ~ .ig-reels-show-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 32px auto 0;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    border: 2px solid var(--border, #e5e2db);
    border-radius: 999px;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }
  .ig-reels-toggle:not(:checked) ~ .ig-reels-show-more:active {
    transform: scale(0.97);
  }
  .ig-reels-toggle:not(:checked) ~ .ig-reels-show-more:hover {
    border-color: var(--blue);
    color: var(--blue);
  }
  /* Caption a touch smaller on mobile so 2 cards fit comfortably */
  .ig-reel-caption {
    font-size: 15px;
    min-height: 40px;
  }
}

/* ═══════════════════════════════════════════════════
   MINI FORM (variants B / C / D — short conversion form)
   ═══════════════════════════════════════════════════ */
.mini-form-section {
  background: var(--warm-bg, #faf7f2);
  padding: 48px 0;
}
.mini-form-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg, 16px);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border, #e5e2db);
}
.mini-form-header {
  text-align: center;
  margin-bottom: 24px;
}
.mini-form-header .eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mini-form-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-heavy);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}
.mini-form-sub {
  margin: 0;
  color: var(--text-muted, #6b6b6b);
  font-size: 15px;
  line-height: 1.45;
}
.mini-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mini-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mini-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.mini-form-field label {
  font-family: var(--font-heavy);
  font-weight: 700;
  font-size: 13px;
  color: var(--text, #1a1a1a);
  letter-spacing: -0.01em;
}
.mini-form-field label .optional {
  font-weight: 500;
  color: var(--text-muted, #9b9b9b);
  font-size: 12px;
}
.mini-form-textarea {
  min-height: 90px;
  resize: vertical;
  font-family: var(--font-body);
  line-height: 1.45;
}
.mini-form select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b6b6b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.mini-form select.form-input:invalid {
  color: var(--text-muted, #9b9b9b);
}
.mini-form .form-input {
  width: 100%;
  height: auto;
  font-size: 16px;
  padding: 14px 16px;
  border: 1.5px solid var(--border, #e5e2db);
  border-radius: var(--radius, 12px);
  background: var(--white);
  /* Override .form-input defaults that target the dark final-cta card
     (white text on white BG would be invisible here). */
  color: var(--text, #1a1a1a);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.mini-form .form-input::placeholder {
  color: var(--text-muted, #9b9b9b);
  opacity: 1;
}
.mini-form .form-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 103, 213, 0.15);
  background: var(--white);
}
.mini-form-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted, #6b6b6b);
  cursor: pointer;
}
.mini-form-gdpr input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.mini-form-gdpr a {
  color: var(--blue);
  text-decoration: underline;
}
.mini-form-error {
  color: var(--error, #c23b22);
  font-size: 14px;
  margin: 0;
  padding: 10px 14px;
  background: rgba(194, 59, 34, 0.08);
  border-radius: var(--radius, 12px);
}
.mini-form-trust {
  margin: 0;
  font-size: 12.5px;
  text-align: center;
  color: var(--text-muted, #6b6b6b);
  line-height: 1.4;
}
.mini-form-trust a { color: var(--blue); }

@media (max-width: 560px) {
  .mini-form-card {
    padding: 24px 20px;
    border-radius: var(--radius, 12px);
  }
  .mini-form-card h3 {
    font-size: 22px;
  }
  .mini-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ═══════════════════════════════════════════════════
   MINI FORM MODAL (variant D)
   ═══════════════════════════════════════════════════ */
.mini-form-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: miniFormModalIn 0.2s ease-out;
}
@keyframes miniFormModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.mini-form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mini-form-modal-content {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: miniFormModalCardIn 0.25s ease-out;
}
@keyframes miniFormModalCardIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.mini-form-modal-content .mini-form-card {
  margin: 0;
  max-width: none;
}
.mini-form-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.mini-form-modal-close:hover,
.mini-form-modal-close:focus {
  background: rgba(0, 0, 0, 0.12);
  outline: none;
}
