/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #f4f8ff;
  --bg-deep:   #0b3d91;
  --paper:     #ffffff;
  --ink:       #0c1e3d;
  --ink-soft:  #3c4c6b;
  --ink-mute:  #7183a3;

  --accent:    #2563eb;
  --accent-2:  #38bdf8;
  --accent-ink:#1d4ed8;
  --sun:       #ffd166;

  --line:      rgba(12, 30, 61, 0.1);
  --shadow-blue: rgba(37, 99, 235, .28);

  --sans:      "Inter", system-ui, sans-serif;
  --display:   "Outfit", "Inter", system-ui, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;

  --nav-h: 78px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; min-width: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; overflow-wrap: break-word; }
h1, h2, h3, h4 {
  text-wrap: balance; line-height: 1.1; letter-spacing: -0.02em;
  font-family: var(--display); font-weight: 700;
  overflow-wrap: break-word; word-break: break-word; hyphens: auto;
}
span, a, li, dd, dt { overflow-wrap: break-word; }
ul { list-style: none; padding: 0; }
label { font-weight: 600; font-size: .88rem; }
input, select, textarea {
  font: inherit; color: inherit;
  width: 100%;
  padding: .8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: #fff;
  transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(37,99,235,.14);
}
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: min(1200px, 100% - 2.5rem); margin-inline: auto; }
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--ink); color: #fff;
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .8rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-ink);
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(37,99,235,.16);
}
.section { padding: clamp(3.5rem, 8vw, 7.5rem) 0; position: relative; }
.section-head { max-width: 660px; margin-inline: auto; margin-bottom: clamp(2.2rem, 5vw, 3.8rem); text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); margin-top: .7rem; }
.section-head p { color: var(--ink-soft); margin-top: 1.1rem; font-size: 1.06rem; }
.demo-note {
  display: inline-block;
  margin-top: .9rem;
  font-size: .78rem;
  color: var(--ink-mute);
  font-style: italic;
}

/* =============================================================
   4. Buttons & components
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  font-weight: 700; font-size: .96rem; text-align: center;
  position: relative; overflow: clip;
  transition: transform .35s var(--ease-bounce), box-shadow .35s var(--ease-out), background .3s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 16px 30px -12px var(--shadow-blue);
}
.btn-primary::before {
  content: "";
  position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg);
  transition: left .65s var(--ease-out);
}
.btn-primary:hover::before { left: 130%; }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 36px -12px var(--shadow-blue); }
.btn-outline { border: 1.75px solid var(--line); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }
.btn-block { width: 100%; }

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -40px rgba(12,30,61,.25);
}

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 1rem 0;
  transition: background .3s var(--ease-out), box-shadow .3s var(--ease-out), padding .3s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(244,248,255,.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 8px 30px -20px rgba(12,30,61,.35);
  padding: .7rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--ink); overflow: hidden; }
.nav-brand span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-brand .logo-mark {
  width: 38px; height: 38px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  box-shadow: 0 10px 20px -10px var(--shadow-blue);
}
.nav-brand .logo-mark svg { width: 20px; height: 20px; }
.nav-links { display: flex; align-items: center; gap: 2rem; flex-shrink: 0; }
.nav-links a { font-size: .93rem; font-weight: 600; color: var(--ink-soft); position: relative; padding: .2rem 0; white-space: nowrap; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -3px;
  height: 2px; background: var(--accent); transition: right .35s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  align-items: center; justify-content: center; background: rgba(12,30,61,.06);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 19px; height: 2px; background: var(--ink);
  border-radius: 2px; position: relative; transition: transform .3s var(--ease-out), opacity .3s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(340px, 86vw); z-index: 499;
  padding: 6.5rem 1.8rem 2rem;
  background: #fff;
  box-shadow: -20px 0 50px -20px rgba(12,30,61,.35);
  display: flex; flex-direction: column; gap: .3rem;
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a { padding: 1rem .7rem; font-weight: 600; font-size: 1.05rem; border-radius: var(--radius-sm); }
.mobile-menu a:hover { background: rgba(37,99,235,.07); }
.menu-scrim {
  position: fixed; inset: 0; z-index: 498;
  background: rgba(12,30,61,.35);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease-out);
}
.menu-scrim.is-open { opacity: 1; pointer-events: auto; }

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 2rem);
  overflow: clip;
}
.hero-waves { position: absolute; inset: 0; z-index: -3; }
.hero-dotgrid {
  position: absolute; inset: 0; z-index: -2;
  background-image: radial-gradient(rgba(37,99,235,.16) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 20%, #000 40%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 55% at 50% 20%, #000 40%, transparent 75%);
}
.hero-blob {
  position: absolute;
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  filter: blur(2px);
  animation: blobMorph 12s ease-in-out infinite, blobDrift 16s ease-in-out infinite;
}
.hero-blob.b1 { width: 460px; height: 460px; top: -12%; right: -10%; background: radial-gradient(circle at 30% 30%, rgba(56,189,248,.4), rgba(37,99,235,.08)); }
.hero-blob.b2 { width: 300px; height: 300px; bottom: 2%; left: -8%; background: radial-gradient(circle at 60% 40%, rgba(37,99,235,.26), rgba(56,189,248,.05)); animation-delay: 1.4s; }
.hero-blob.b3 { width: 200px; height: 200px; top: 38%; left: 42%; background: radial-gradient(circle at 50% 50%, rgba(255,209,102,.28), transparent 70%); animation-delay: .7s; opacity: .8; }
@keyframes blobMorph {
  0%, 100% { border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; }
  50%      { border-radius: 58% 42% 39% 61% / 52% 60% 40% 48%; }
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-12px, 14px) scale(1.06); }
}

.hero-grid { display: flex; flex-direction: column; align-items: center; text-align: center; gap: clamp(2.4rem, 6vw, 3.6rem); width: 100%; }
.hero-content { max-width: 780px; display: flex; flex-direction: column; align-items: center; }
.hero-title { margin-top: 1.1rem; font-size: clamp(2.3rem, 6vw, 4.4rem); }
.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent), var(--accent-2), var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shineText 5s linear infinite;
}
@keyframes shineText { to { background-position: -200% center; } }
.hero-sub { margin-top: 1.3rem; font-size: 1.18rem; color: var(--ink-soft); max-width: 52ch; }
.hero-actions { margin-top: 2.1rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.hero-trust { margin-top: 2.6rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem 2.4rem; }
.hero-trust-item { display: flex; align-items: center; gap: .7rem; text-align: left; }
.hero-trust-item svg { width: 20px; height: 20px; color: var(--accent-ink); flex-shrink: 0; }
.hero-trust-item strong { display: block; font-size: .95rem; }
.hero-trust-item span { display: block; font-size: .82rem; color: var(--ink-mute); }

.hero-visual { position: relative; width: min(360px, 78vw); aspect-ratio: 1/1; display: grid; place-items: center; }
.hero-visual .ring {
  position: absolute; inset: -6%;
  border-radius: 50%;
  border: 1.5px dashed rgba(37,99,235,.28);
  animation: spinSlow 40s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.hero-emblem { position: relative; width: 68%; animation: floatY 6.5s ease-in-out infinite; filter: drop-shadow(0 40px 60px rgba(12,30,61,.28)); }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
.hero-card-float {
  position: absolute;
  display: flex; align-items: center; gap: .7rem;
  padding: .9rem 1.15rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 20px 40px -20px rgba(12,30,61,.3);
  font-size: .85rem; font-weight: 700; white-space: nowrap;
  animation: floatY 7s ease-in-out infinite;
}
.hero-card-float svg { width: 19px; height: 19px; color: var(--accent-ink); flex-shrink: 0; }
.hero-card-float.fc-1 { top: 2%; left: -2%; animation-delay: .4s; }
.hero-card-float.fc-2 { bottom: 4%; right: -2%; animation-delay: 1s; }

/* =============================================================
   7. Wave divider
   ============================================================= */
.wave-divider { position: relative; height: 90px; margin-top: -1px; }
.wave-divider svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* =============================================================
   8. Statistici (count-up)
   ============================================================= */
.stats-strip { padding: 0 0 clamp(2rem, 5vw, 3.5rem); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  padding: clamp(1.6rem, 4vw, 2.2rem);
  text-align: center;
}
.stat-item { padding: .6rem; }
.stat-num {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block;
}
.stat-label { font-size: .88rem; color: var(--ink-soft); margin-top: .3rem; }

/* =============================================================
   9. Tratamente
   ============================================================= */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.5rem; }
.service-card {
  padding: 2.1rem 1.8rem;
  position: relative;
  overflow: clip;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
}
.service-card::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s var(--ease-out);
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 40px 70px -40px rgba(12,30,61,.4); }
.service-card .service-blob {
  position: absolute; top: -30px; right: -30px; width: 120px; height: 120px;
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(56,189,248,.14));
  animation: blobMorph 10s ease-in-out infinite;
}
.service-icon {
  width: 56px; height: 56px; border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-bottom: 1.4rem; position: relative;
  box-shadow: 0 14px 24px -12px var(--shadow-blue);
}
.service-icon svg { width: 27px; height: 27px; color: #fff; }
.service-card h3 { font-size: 1.18rem; margin-bottom: .65rem; position: relative; }
.service-card p { color: var(--ink-soft); font-size: .96rem; position: relative; }

/* =============================================================
   10. De ce noi
   ============================================================= */
.why-section { background: linear-gradient(180deg, var(--bg) 0%, #eaf2ff 100%); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.3rem; }
.why-card { padding: 2rem 1.7rem; text-align: center; transition: transform .35s var(--ease-out); }
.why-card:hover { transform: translateY(-6px); }
.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 1.2rem;
  background: #fff; border: 1.5px solid var(--line);
  box-shadow: 0 16px 30px -18px rgba(12,30,61,.25);
}
.why-icon svg { width: 28px; height: 28px; color: var(--accent-ink); }
.why-card h3 { font-size: 1.08rem; margin-bottom: .55rem; }
.why-card p { color: var(--ink-soft); font-size: .93rem; }

/* =============================================================
   10b. Galerie
   ============================================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.3rem; }
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: clip;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 50px -30px rgba(12,30,61,.35);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -30px rgba(12,30,61,.45); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem .9rem .8rem;
  background: linear-gradient(0deg, rgba(12,30,61,.72), transparent);
  color: #fff; font-size: .84rem; font-weight: 700;
}

/* =============================================================
   11. Recenzii
   ============================================================= */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testi-card { padding: 2rem 1.8rem; position: relative; overflow: clip; }
.testi-quote-mark {
  position: absolute; top: .6rem; left: 1.2rem;
  font-family: var(--display); font-size: 4.2rem; font-weight: 800;
  color: rgba(37,99,235,.08); line-height: 1; pointer-events: none;
}
.testi-badge {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--accent-ink);
  background: rgba(37,99,235,.1);
  padding: .3rem .6rem; border-radius: 999px;
}
.testi-stars { display: flex; gap: .2rem; margin-bottom: 1rem; position: relative; }
.testi-stars svg { width: 16px; height: 16px; color: var(--sun); flex-shrink: 0; }
.testi-quote { font-size: .98rem; color: var(--ink-soft); margin-bottom: 1.4rem; position: relative; }
.testi-person { display: flex; align-items: center; gap: .8rem; position: relative; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-weight: 700; font-family: var(--display); font-size: .95rem;
}
.testi-person strong { display: block; font-size: .92rem; }
.testi-person span { display: block; font-size: .8rem; color: var(--ink-mute); }

/* =============================================================
   12. FAQ
   ============================================================= */
.faq-list { display: flex; flex-direction: column; gap: .9rem; max-width: 800px; margin-inline: auto; }
.faq-item { overflow: clip; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.35rem 1.7rem; text-align: left; font-weight: 700; font-size: 1.02rem;
}
.faq-q span:first-child { text-align: left; }
.faq-q .faq-plus {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(37,99,235,.1);
  color: var(--accent-ink); font-size: 1.15rem; line-height: 1;
  transition: transform .35s var(--ease-out), background .3s;
}
.faq-item.is-open .faq-plus { transform: rotate(45deg); background: rgba(37,99,235,.22); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.faq-a p { padding: 0 1.7rem 1.5rem; color: var(--ink-soft); font-size: .97rem; }
.faq-item.is-open .faq-a { max-height: 320px; }

/* =============================================================
   13. Contact / programare
   ============================================================= */
.contact-section { position: relative; background: linear-gradient(180deg, #eaf2ff 0%, var(--bg) 100%); }
.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(1.8rem, 4vw, 3.2rem); align-items: start; }
.contact-info { padding-top: .5rem; }
.contact-info h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 1rem; }
.contact-info p { color: var(--ink-soft); margin-bottom: 2rem; }
.contact-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.3rem; }
.contact-row svg { width: 22px; height: 22px; color: var(--accent-ink); flex-shrink: 0; margin-top: .15rem; }
.contact-row strong { display: block; font-size: .96rem; margin-bottom: .15rem; }
.contact-row span, .contact-row a { color: var(--ink-soft); font-size: .95rem; }

.appt-form { padding: clamp(1.9rem, 4vw, 2.6rem); }
.form-row { display: grid; gap: .4rem; margin-bottom: 1.15rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.15rem; }
.form-success {
  display: none;
  align-items: center; gap: .8rem;
  padding: 1.3rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(37,99,235,.08);
  color: var(--accent-ink);
  font-weight: 600;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 24px; height: 24px; flex-shrink: 0; }
.appt-form.is-sent form { display: none; }
.appt-form .form-note { font-size: .8rem; color: var(--ink-mute); margin-top: .9rem; }

/* =============================================================
   14. Footer
   ============================================================= */
.footer { padding: 3rem 0 2rem; border-top: 1px solid var(--line); background: var(--paper); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 800; }
.footer-brand .logo-mark { width: 32px; height: 32px; border-radius: 10px; flex-shrink: 0; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: grid; place-items: center; }
.footer-brand .logo-mark svg { width: 17px; height: 17px; }
.footer-note { font-size: .84rem; color: var(--ink-mute); }

/* =============================================================
   15. Reveals
   ============================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   16. Responsive
   ============================================================= */
@media (max-width: 959px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 539px) {
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-trust { flex-direction: column; align-items: center; gap: .9rem; }
  .hero-card-float { display: none; }
  .nav-brand span:last-child { max-width: 42vw; }
}

@media (min-width: 640px)  { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 720px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .services-grid { grid-template-columns: repeat(4, 1fr); } .why-grid { grid-template-columns: repeat(4, 1fr); } .testi-grid { grid-template-columns: repeat(3, 1fr); } .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* =============================================================
   17. Buton flotant WhatsApp
   ============================================================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 600;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  box-shadow: 0 16px 32px -12px rgba(12,30,61,.45);
  transition: transform .3s var(--ease-bounce), box-shadow .3s var(--ease-out);
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 20px 38px -12px rgba(12,30,61,.55);
}
.whatsapp-float svg { width: 31px; height: 31px; }
.whatsapp-float .wa-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2.4s var(--ease-out) infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (max-width: 539px) {
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* =============================================================
   18. Reduced motion — doar cele intruzive
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-blob, .hero-emblem, .hero-card-float, .hero-visual .ring, .hero-title em { animation: none; }
  .service-card .service-blob { animation: none; }
  .whatsapp-float .wa-ring { animation: none; }
  html { scroll-behavior: auto; }
}
