/* ============================================================
   CREȘĂ PITEȘTI — stylesheet
   ⭐ TEMA (culori) — schimbă valorile de mai jos ca să schimbi
   tot site-ul instant. Vezi paleta în :root.
   ============================================================ */

:root {
  /* --- PALETĂ (ușor de schimbat) --- */
  --cream:     #FBF7EF;   /* fundal cald */
  --cream-2:   #F3ECDF;   /* fundal secțiuni tint */
  --sky:       #2FA8CC;   /* dominant vesel (azur) */
  --sky-dark:  #1F84A4;   /* hover/contrast */
  --sky-soft:  #CFEDF6;   /* fundaluri blânde */
  --ink:       #243240;   /* text principal (slate cald) */
  --ink-soft:  #5b6b78;   /* text secundar */
  --sun:       #FFC94D;   /* accent: galben solar */
  --coral:     #FF8A6B;   /* accent: corai */
  --mint:      #7FCDA6;   /* accent: mint */
  --white:     #ffffff;

  /* --- UI --- */
  --radius:    20px;
  --radius-lg: 30px;
  --shadow:    0 18px 40px -22px rgba(31,84,110,.45);
  --shadow-sm: 0 8px 24px -16px rgba(31,84,110,.5);
  --maxw:      1180px;
  --ease:      cubic-bezier(.22,.61,.36,1);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; font-weight: 600; letter-spacing: -.01em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 5vw, 40px); }
.container--narrow { max-width: 820px; }

.eyebrow {
  display: inline-block; font-weight: 700; font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sky-dark);
  background: var(--sky-soft); padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.eyebrow--light { color: #fff; background: rgba(255,255,255,.18); backdrop-filter: blur(4px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  padding: 13px 24px; border-radius: 100px; cursor: pointer; border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn--primary { background: var(--sky); color: #fff; box-shadow: 0 14px 28px -12px rgba(47,168,204,.7); }
.btn--primary:hover { background: var(--sky-dark); transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(47,168,204,.8); }
.btn--ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--sky-dark); border-color: var(--sky); }
.btn--outline:hover { background: var(--sky); color: #fff; }
.btn--phone { background: var(--cream-2); color: var(--ink); }
.btn--phone:hover { background: var(--sun); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 14px 0;
}
.nav__inner { display: flex; align-items: center; gap: 22px; }
.nav.is-stuck { background: rgba(251,247,239,.82); backdrop-filter: blur(14px); box-shadow: 0 6px 24px -18px rgba(0,0,0,.4); padding: 9px 0; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); }
.brand__logo { height: 34px; width: auto; display: block; }
.nav.is-stuck .brand__logo { height: 30px; transition: height .3s; }
.footer .brand__logo { height: 32px; }
.brand__mark { color: var(--sky); display: inline-flex; }
.brand__text strong { color: var(--sky); font-weight: 700; }
.nav:not(.is-stuck) .brand, .nav:not(.is-stuck) .brand__text strong { color: #fff; }
.nav:not(.is-stuck) .brand__mark { color: #fff; }

.nav__links { display: flex; gap: 24px; margin-left: auto; font-weight: 600; font-size: .96rem; }
.nav__links a { color: #fff; opacity: .92; transition: opacity .2s, color .2s; }
.nav__links a:hover { opacity: 1; }
.nav.is-stuck .nav__links a { color: var(--ink); }
.nav.is-stuck .nav__links a:hover { color: var(--sky-dark); }

.nav__cta { margin-left: 4px; }
.nav:not(.is-stuck) .nav__cta { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.5); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav__burger span { width: 26px; height: 2.5px; border-radius: 3px; background: #fff; transition: .3s; }
.nav.is-stuck .nav__burger span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__media { position: absolute; left: 0; right: 0; top: -14%; height: 128%; z-index: -1; background: linear-gradient(135deg, #2a93b4, #1f6f8c 60%, #28506a); will-change: transform; }
.hero__video { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,40,55,.30) 0%, rgba(20,40,55,.18) 38%, rgba(20,40,55,.62) 100%),
    radial-gradient(120% 90% at 18% 50%, rgba(15,35,50,.55), transparent 60%);
}
.hero__content { position: relative; padding-top: 120px; padding-bottom: 96px; max-width: 720px; }
.hero__title { font-size: clamp(1.85rem, 4.4vw, 3.15rem); font-weight: 500; line-height: 1.12; letter-spacing: -.015em; margin-bottom: 18px; text-shadow: 0 2px 30px rgba(0,0,0,.22); }
.hero__title em { font-style: italic; font-weight: 500; color: rgba(255,255,255,.9); }
.hero__lead { font-size: clamp(1rem, 1.8vw, 1.15rem); font-weight: 400; max-width: 520px; opacity: .92; margin-bottom: 30px; text-shadow: 0 1px 16px rgba(0,0,0,.3); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 12px; }
.hero__trust li { font-weight: 600; font-size: .9rem; border-radius: 100px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(4px); overflow: hidden; }
.hero__trust a { display: block; padding: 7px 15px; color: inherit; text-decoration: none; transition: background .2s; }
.hero__trust a:hover { background: rgba(255,255,255,.22); }

.hero__scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.85); animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ---------- Stats strip ---------- */
.stats { background: var(--white); border-bottom: 1px solid rgba(31,84,110,.08); }
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 30px 0; text-align: center; }
.stat { position: relative; padding: 6px 10px; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 12px; bottom: 12px; width: 1px; background: rgba(31,84,110,.12); }
.stat__num { display: block; font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 600; color: var(--sky-dark); line-height: 1.1; }
.stat__label { display: block; font-size: .85rem; color: var(--ink-soft); margin-top: 6px; }

/* ---------- Showcase (scroll-scrub video) ---------- */
.showcase { position: relative; height: 220vh; background: #0e2330; }
.showcase__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; background: #0e2330 url("../assets/img/showcase-poster.jpg") center/cover no-repeat; }
.showcase__video { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; }
.showcase__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,30,42,.35), rgba(10,30,42,.25) 40%, rgba(10,30,42,.7)); }
.showcase__caption { position: absolute; left: 0; right: 0; bottom: clamp(40px, 8vh, 90px); text-align: center; color: #fff; padding-inline: 24px; }
.showcase__caption h2 { font-size: clamp(1.7rem, 4vw, 3rem); font-weight: 500; margin: 6px 0 10px; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.showcase__caption > p { opacity: .85; font-size: .95rem; letter-spacing: .02em; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding: 28px 0; margin: 40px 0 8px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: inline-flex; gap: 14px; white-space: nowrap; will-change: transform; animation: marquee 38s linear infinite; }
.marquee__track span { flex: 0 0 auto; font-weight: 600; font-size: 1rem; padding: 11px 20px; border-radius: 100px; background: var(--white); border: 1px solid rgba(31,84,110,.1); box-shadow: var(--shadow-sm); }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

.act__icon { font-size: 1.9rem; display: inline-block; margin-bottom: 10px; }

/* ---------- Gallery filters ---------- */
.gallery__filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.gfilter {
  font-family: var(--font-body); font-weight: 600; font-size: .92rem; padding: 9px 18px;
  border-radius: 100px; border: 1.5px solid rgba(31,84,110,.18); background: #fff; color: var(--ink-soft);
  cursor: pointer; transition: background .2s var(--ease), color .2s, border-color .2s, box-shadow .2s, transform .15s;
}
.gfilter:hover { border-color: var(--sky); color: var(--sky-dark); }
.gfilter.is-active { background: var(--sky); border-color: var(--sky); color: #fff; box-shadow: 0 8px 18px -10px rgba(47,168,204,.85); }
.gfilter:active { transform: scale(.97); }

/* ---------- Gallery (slider) ---------- */
.gallery { position: relative; margin-top: 10px; }
.gallery__track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 10px clamp(18px, 5vw, 40px) 22px;
  scroll-padding-left: clamp(18px, 5vw, 40px);
  -webkit-overflow-scrolling: touch; scrollbar-width: none; scroll-behavior: smooth;
}
.slide.is-hidden { display: none; }
.gallery__track::-webkit-scrollbar { display: none; }
.slide {
  position: relative; flex: 0 0 auto; width: min(80vw, 430px); aspect-ratio: 4 / 3;
  border-radius: var(--radius); overflow: hidden; scroll-snap-align: start;
  box-shadow: var(--shadow); background: var(--sky-soft); margin: 0;
}
.slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.slide:hover img { transform: scale(1.05); }
.slide figcaption {
  position: absolute; left: 12px; bottom: 12px; color: #fff; font-weight: 600; font-size: .85rem;
  padding: 6px 14px; border-radius: 100px; background: rgba(18,28,38,.5); backdrop-filter: blur(6px);
}
.gallery__nav {
  position: absolute; top: 44%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%;
  border: 0; background: #fff; color: var(--ink); box-shadow: var(--shadow); cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s, color .2s;
}
.gallery__nav:hover { background: var(--sky); color: #fff; transform: translateY(-50%) scale(1.08); }
.gallery__nav--prev { left: 12px; }
.gallery__nav--next { right: 12px; }
.gallery__dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; flex-wrap: wrap; padding-inline: 20px; }
.gallery__dots:empty { display: none; }
.gallery__dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: rgba(31,84,110,.25); cursor: pointer; padding: 0; transition: width .3s, background .3s; }
.gallery__dots button.is-active { width: 24px; border-radius: 100px; background: var(--sky); }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--tint { background: var(--cream-2); }
.section__head { max-width: 720px; margin-bottom: 48px; }
.section__head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 16px; }
.section__lead { color: var(--ink-soft); font-size: 1.08rem; }
.section__lead a { color: var(--sky-dark); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow); border: 1px solid rgba(31,84,110,.06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -24px rgba(31,84,110,.55); }
.card h3 { font-size: 1.32rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .98rem; }

.age__badge { display: inline-block; font-family: var(--font-body); font-weight: 700; font-size: .9rem; color: #fff; background: var(--sky); padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; }
.age-grid .age:nth-child(2) .age__badge { background: var(--coral); }
.age-grid .age:nth-child(3) .age__badge { background: var(--mint); }

.method__icon, .pill__icon { font-size: 2rem; display: inline-block; margin-bottom: 12px; line-height: 1; }
.method { text-align: left; }

/* feature row (placeholder + checks) */
.feature-row { display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: center; margin-top: 48px; }
.checks { list-style: none; display: grid; gap: 14px; }
.checks li { position: relative; padding-left: 34px; font-weight: 500; }
.checks li::before { content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--mint); }
.checks li::after { content: ""; position: absolute; left: 7px; top: 8px; width: 8px; height: 4px; border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: rotate(-45deg); }
.checks li strong { color: var(--ink); }

/* placeholders (foto/map) */
.ph {
  position: relative; border-radius: var(--radius-lg); min-height: 280px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.4) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, var(--sky-soft), #e7f6fb);
  border: 2px dashed rgba(47,168,204,.4); color: var(--sky-dark); font-weight: 600; padding: 24px;
}
.ph::before { content: attr(data-ph); position: absolute; top: 14px; left: 16px; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; opacity: .8; }
.ph span { max-width: 240px; opacity: .85; }
.ph--wide { min-height: 340px; }
.ph--map { min-height: 100%; border-radius: var(--radius); }

/* real photos */
.shot { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin: 0; background: var(--sky-soft); }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.shot:hover img { transform: scale(1.05); }
.shot--wide { min-height: 340px; }
.shot--wide img { min-height: 340px; }

/* safety block */
.safety { margin-top: 44px; background: var(--white); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); }
.safety__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 40px); align-items: center; }
.safety__grid .shot { height: 100%; }
.safety__grid .shot img { min-height: 300px; }
.safety__title { font-size: 1.6rem; margin-bottom: 20px; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; max-width: 760px; margin-inline: auto; position: relative; }
.timeline::before { content: ""; position: absolute; left: 130px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--sky), var(--mint)); }
.timeline li { display: grid; grid-template-columns: 130px 1fr; gap: 26px; padding: 14px 0; position: relative; }
.timeline__time { font-weight: 700; color: var(--sky-dark); text-align: left; padding-right: 14px; font-size: .95rem; padding-top: 3px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.timeline li > div { position: relative; padding-left: 26px; }
.timeline li > div::before { content: ""; position: absolute; left: -6px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--sky); }
.timeline h3 { font-size: 1.18rem; margin-bottom: 2px; }
.timeline p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(120deg, var(--sky), var(--sky-dark)); color: #fff; }
.cta-banner__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; padding: clamp(46px, 7vw, 76px) 0; }
.cta-banner h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 8px; }
.cta-banner p { opacity: .94; max-width: 560px; margin-inline: auto; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-banner .btn--ghost { border-color: rgba(255,255,255,.7); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; }
.faq__item { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid rgba(31,84,110,.06); overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; font-weight: 700; font-size: 1.05rem; position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--sky); transition: transform .3s; }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 24px 22px; color: var(--ink-soft); }

/* ---------- Reviews ---------- */
.section__head--center { text-align: center; margin-inline: auto; }
.reviews-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 30px; }
.rstat { background: var(--white); border-radius: var(--radius); padding: 28px 18px; text-align: center; box-shadow: var(--shadow); border: 1px solid rgba(31,84,110,.06); }
.rstat__num { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 600; color: var(--sky-dark); line-height: 1; }
.rstat__star { color: var(--sun); font-size: .8em; margin-left: 2px; }
.rstat__label { display: block; font-size: .88rem; color: var(--ink-soft); margin-top: 8px; }
.reviews-cta { text-align: center; }

/* testimonials slider */
.tslider { margin: 30px 0 26px; display: flex; align-items: center; gap: clamp(6px, 2vw, 16px); }
.tslider__track {
  flex: 1 1 auto; min-width: 0;
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 6px 4px 18px; scroll-padding-left: 4px;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.tslider__track::-webkit-scrollbar { display: none; }
/* săgețile slider-ului de recenzii: în afara cardurilor (nu absolute peste ele) */
#tPrev, #tNext { position: static; transform: none; flex: 0 0 auto; display: flex; }
#tPrev:hover, #tNext:hover { transform: scale(1.08); }
.tcard {
  flex: 0 0 auto; width: min(82vw, 360px); scroll-snap-align: start; margin: 0;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid rgba(31,84,110,.06); padding: 26px; display: flex; flex-direction: column; gap: 14px;
}
.tcard__stars { color: var(--sun); letter-spacing: 3px; font-size: 1.05rem; }
.tcard blockquote { margin: 0; font-size: 1.02rem; line-height: 1.6; color: var(--ink); }
.tcard blockquote::before { content: "\201C"; color: var(--sky); font-family: var(--font-display); font-size: 1.4rem; margin-right: 2px; }
.tcard figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard__av { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 50%; background: var(--sky-soft); color: var(--sky-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); }
.tcard__who { display: flex; flex-direction: column; line-height: 1.25; }
.tcard__who span { font-size: .85rem; color: var(--ink-soft); }

/* ---------- Map band ---------- */
.mapband { position: relative; }
.mapband__map { position: relative; width: 100%; height: clamp(320px, 42vw, 460px); background: var(--sky-soft); overflow: hidden; }
.mapband__map iframe { width: 100%; height: calc(100% + 48px); border: 0; display: block; filter: saturate(1.05); }
.mapband__map .ph { height: 100%; border-radius: 0; border: 0; }
.mapband__card {
  position: absolute; left: clamp(16px, 5vw, 48px); bottom: clamp(16px, 4vw, 36px);
  display: flex; align-items: center; gap: 14px; background: var(--white);
  padding: 16px 22px; border-radius: 100px; box-shadow: var(--shadow); color: var(--ink);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.mapband__card:hover { transform: translateY(-2px); box-shadow: 0 24px 40px -20px rgba(31,84,110,.6); }
.mapband__ico { font-size: 1.5rem; }
.mapband__txt { display: flex; flex-direction: column; line-height: 1.25; }
.mapband__txt strong { font-size: 1rem; }
.mapband__txt span { font-size: .9rem; color: var(--ink-soft); }
.mapband__go { font-weight: 700; color: var(--sky-dark); white-space: nowrap; }

/* ---------- Contact ---------- */
.contact { max-width: 680px; margin-inline: auto; }
.contact__info { background: var(--white); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow); }
.contact__row { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid rgba(31,84,110,.08); }
.contact__row:last-of-type { border-bottom: 0; }
.contact__ico { font-size: 1.4rem; }
.contact__row strong { display: block; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.contact__row p { font-weight: 600; }
.contact__row a { color: var(--sky-dark); }
.contact__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.contact__map { border-radius: var(--radius); overflow: hidden; min-height: 360px; box-shadow: var(--shadow); }
.contact__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { background: #1c2a36; color: #cdd8e0; padding-top: 56px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; padding-bottom: 40px; }
.footer .brand { color: #fff; margin-bottom: 12px; }
.footer .brand__mark, .footer .brand__text strong { color: var(--sky); }
.footer__brand p { font-size: .95rem; opacity: .8; max-width: 300px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; font-weight: 500; }
.footer__links a:hover { color: #fff; }
.footer__contact { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer__phone a { color: #fff; font-weight: 700; font-size: 1.05rem; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.1); color: #fff; transition: background .2s, transform .2s; }
.footer__social a:hover { background: var(--sky); transform: translateY(-2px); }
.footer__anpc { font-size: .8rem; letter-spacing: .1em; border: 1px solid rgba(255,255,255,.3); padding: 5px 12px; border-radius: 8px; opacity: .8; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: .85rem; }
.footer__bottom p { opacity: .7; }
.footer__bottom p.footer__attrib { font-size: .72rem; opacity: .4; margin-top: 4px; }
.footer__attrib a { color: inherit; text-decoration: underline; }

/* ---------- Floating actions ---------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.fab__btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 12px 26px -8px rgba(0,0,0,.45); transition: transform .25s var(--ease); }
.fab__btn:hover { transform: scale(1.08); }
.fab__btn--wa { background: #25D366; animation: pulse 2.6s infinite; }
.fab__btn--call { background: var(--sky); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 16px; bottom: 16px; z-index: 95;
  max-width: min(380px, calc(100vw - 110px));
  background: #fff; color: var(--ink); border-radius: 16px;
  box-shadow: 0 18px 42px -18px rgba(31,84,110,.55); border: 1px solid rgba(31,84,110,.08);
  padding: 14px 16px; display: flex; align-items: center; gap: 12px;
  font-size: .88rem; line-height: 1.4; animation: cookieUp .5s var(--ease);
}
.cookie[hidden] { display: none; }
.cookie p { margin: 0; }
.cookie .btn { flex: 0 0 auto; }
@keyframes cookieUp { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }
@media (max-width: 520px) {
  .cookie { left: 12px; right: 82px; bottom: 12px; max-width: none; padding: 12px 14px; font-size: .82rem; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ---------- Desktop: secțiuni mai înguste (contained) + text clip sus ---------- */
@media (min-width: 761px) {
  .gallery { max-width: var(--maxw); margin-inline: auto; }
  .slide { width: calc((100% - 44px) / 3); }   /* 3 carduri întregi + marjă de siguranță (fără card tăiat) */
  .marquee { max-width: var(--maxw); margin-inline: auto; }
  .mapband { max-width: var(--maxw); margin-inline: auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
  .showcase__caption { top: clamp(96px, 13vh, 130px); bottom: auto; }
}

@media (max-width: 980px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat:nth-child(3)::before { display: none; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.is-open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(251,247,239,.98); backdrop-filter: blur(14px);
    padding: 14px 24px 22px; box-shadow: 0 18px 30px -18px rgba(0,0,0,.4);
  }
  .nav__links.is-open a { color: var(--ink); padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,.06); }

  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .safety__grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .contact__map { min-height: 280px; }

  .timeline::before { left: 8px; }
  .timeline li { grid-template-columns: 1fr; gap: 4px; padding-left: 30px; }
  .timeline__time { text-align: left; padding-right: 0; }
  .timeline li > div { padding-left: 0; }
  .timeline li > div::before { left: -30px; }

  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__content { padding-top: 110px; }
  .showcase { height: 180vh; }
  .showcase__caption { bottom: auto; top: 46%; transform: translateY(-50%); }
  .marquee__track span { font-size: .92rem; padding: 9px 16px; }
  .gallery__nav { display: none; }
  .slide { width: 85vw; }
  .reviews-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .mapband__card { position: static; left: auto; bottom: auto; width: 100%; border-radius: 0; justify-content: space-between; gap: 8px; padding: 14px 18px; }
  .mapband__go { font-size: .85rem; }
  #tPrev, #tNext { width: 40px; height: 40px; }
  .tcard { width: min(66vw, 300px); padding: 22px; }
}

@media (max-width: 420px) {
  .hero__trust li { font-size: .82rem; padding: 6px 12px; }
  .btn--lg { width: 100%; }
  .hero__actions { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__video { display: none; }
}
