/* Header & nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--ring);
  backdrop-filter: saturate(120%) blur(8px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.nav .brand img {
  height: 36px;
}
.nav .nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav .nav-links a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}
.nav .nav-links a:hover {
  border-color: var(--ring);
}
#themeToggle {
  border: 1px solid var(--ring);
  background: transparent;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}

/* Mobile menu */
.menu-btn {
  display: none;
}
@media (max-width: 900px) {
  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ring);
    background: transparent;
    border-radius: 10px;
    padding: 8px 10px;
    cursor: pointer;
    margin-left: 8px;
  }
  .nav .nav-links {
    position: absolute;
    top: 64px;
    right: 4%;
    left: 4%;
    display: none;
    flex-direction: column;
    gap: 10px;
    background: var(--card);
    border: 1px solid var(--ring);
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .nav .nav-links.open {
    display: flex;
  }
  .nav {
    position: relative;
  }
}
.nav .nav-links a.active {
  outline: 2px solid var(--primary);
  border-radius: 10px;
}
html {
  scroll-behavior: smooth;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
  padding: 48px 0;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 8px;
}
.hero__bullets {
  display: grid;
  gap: 6px;
  margin: 16px 0 0 0;
  padding-left: 20px;
}
.hero__media {
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.15));
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero__media {
    order: -1;
  }
}

/* Hero with background image + overlay */
/* Hero cu fundal imagine */
.hero--bg {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  background: url("../img/bg-hero-electrosim.jpg") center/cover no-repeat,
    url("img/bg-hero-electrosim.jpg") center/cover no-repeat;
  min-height: 70vh;
}

.hero--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* overlay întunecat pt text vizibil */
}

.hero--bg * {
  position: relative;
  z-index: 1;
}

.hero--bg h1 {
  color: #fff;
}

.hero--bg p {
  color: #f1f1f1;
}

.hero--bg .btn-ghost {
  border-color: #fff;
  color: #fff;
}
@media (max-width: 900px) {
  .hero--bg {
    grid-template-columns: 1fr;
    padding: 72px 0;
  }
}

/* Steps */
.steps {
  display: grid;
  gap: 10px;
  counter-reset: step;
}
.steps li {
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: 12px;
  padding: 12px;
}

/* Testimonials */
.testimonials {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
}

/* Pricing */
.price .money {
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0.25rem 0;
}
.price.featured {
  outline: 2px solid var(--primary);
}

/* Partners band */
.partners-shell {
  padding: 16px 0;
}
.partners {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: transparent;
}
.partners img {
  height: 70px;
  opacity: 0.9;
  transition: 0.2s;
}
.partners a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.partners .card {
  background-color: #ffffff; /* soft beige */
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.partners .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  background-color: #fffef8;
}

/* Contact */
.form label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.form input,
.form textarea {
  border: 1px solid var(--ring);
  background: var(--card);
  color: var(--text);
  border-radius: 10px;
  padding: 10px;
}
.map .map-frame {
  position: relative;
  padding-bottom: 56%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--ring);
}
.map .map-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--ring);
  background: var(--bg);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.6fr;
  gap: 20px;
  padding: 24px 0;
  align-items: center;
}
.foot-logo {
  height: 28px;
  margin-bottom: 10px;
}
.foot-nav a {
  display: inline-block;
  margin-right: 12px;
  color: var(--text);
  text-decoration: none;
}

@media (max-width: 900px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .foot-cta {
    margin-top: 6px;
  }
}

/* CTA band */
.cta-band {
  background: transparent;
  border-top: 1px solid var(--ring);
  border-bottom: 1px solid var(--ring);
}
.cta-inn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}
@media (max-width: 900px) {
  .cta-inn {
    flex-direction: column;
    gap: 10px;
  }
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
  margin: 32px 0;
}
.faq-q {
  cursor: pointer;
  padding: 12px;
  border: 1px solid var(--ring);
  border-radius: 10px;
  background: var(--card);
  font-weight: 600;
  transition: 0.2s;
}
.faq-q:hover {
  background: var(--hover);
}
.faq-a {
  overflow: hidden;
  padding: 0 12px;
  border-left: 3px solid var(--primary);
  background: var(--bg);
  border-radius: 0 0 10px 10px;
}
.faq-a.open {
  padding: 12px;
  border-top: 1px solid var(--ring);
}

/* Background general aesthetic */
body {
  background: linear-gradient(
    180deg,
    #f9fbfd 0%,
    #f1f7fc 100%
  ); /* pastel albastru discret */
}

/* HERO polish */
.hero .hero__content {
  max-width: 780px;
  margin: 0 auto;
}
.hero .lead {
  margin: 10px auto 18px;
  opacity: 0.95;
}
.hero .cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.hero h1 {
  letter-spacing: -0.02em;
}
.hero--bg h1 {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

/* Badge pill */
.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  margin: 0 auto 12px;
}

/* Chips list (hero bullets) */
.chips {
  list-style: none;
  margin: 16px 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.chips li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: saturate(120%) blur(2px);
}

@media (max-width: 900px) {
  .hero .hero__content {
    max-width: 92%;
  }
  .hero--bg {
    padding: 64px 16px;
  }
}
/* Steps enhanced */
.steps-wrap {
  position: relative;
  background: transparent;
  padding: 48px 0;
  text-align: center;
}
.steps-timeline {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  max-width: 720px;
  display: grid;
  gap: 28px;
}
.steps-timeline li {
  position: relative;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 1.05rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--primary);
  color: #111;
  font-weight: 700;
}

/* Decorative waves */
.wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  background-repeat: no-repeat;
  background-size: cover;
}
.wave-top {
  top: 0;
  transform: translateY(-100%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%23ffffff' fill-opacity='0.6' d='M0,64L1440,224L1440,320L0,320Z'></path></svg>");
}
.wave-bottom {
  bottom: 0;
  transform: translateY(100%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%23ffffff' fill-opacity='0.6' d='M0,256L1440,96L1440,0L0,0Z'></path></svg>");
}

/* FEATURES — minimal pastel background + subtle transitions */
.features-wrap {
  padding: 32px 0;
}
.features .card {
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
  background-color: #ffffff; /* soft */
}
.features .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}
.features .card:focus-within {
  outline: 0;
  border-color: rgba(0, 0, 0, 0.14);
}
@media (prefers-reduced-motion: reduce) {
  .features .card {
    transition: none;
  }
}
/* How (Cum lucrăm) section styling */
.how-wrap {
  background: transparent;
}
.how .card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.how .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  background-color: #fffef8;
}
/* Background global pastel discret (de la HERO până la footer) */
body {
  background: linear-gradient(180deg, #f9fbfd 0%, #f1f7fc 100%);
} /* 1) Un singur wave per spațiu - ascundem pe cel de jos */
.wave-bottom {
  display: none;
}

/* 2) Valurile mai mici și subtile, fără să lase gol vizual */
.wave {
  height: 48px; /* din 60px */
  pointer-events: none; /* nu blochează click/scroll */
}
.wave-top {
  /* alb cu opacitate mică, ca o trecere fină peste fundalul pastel */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%23ffffff' fill-opacity='0.35' d='M0,64L1440,224L1440,320L0,320Z'></path></svg>");
}

/* 3) Strângem puțin spațiile ca să nu pară gol între secțiuni */
.steps-wrap {
  padding-bottom: 48px;
}
.features-wrap {
  padding-bottom: 48px;
} /* Stilizare pentru pașii din secțiunea Cum lucrăm */
.steps-timeline li {
  background: #ffffff; /* bej deschis pastel */
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  cursor: pointer;
}

/* Numărul din față */
.steps-timeline .step-num {
  display: inline-block;
  background: #007acc; /* albastru pastel */
  color: white;
  font-weight: bold;
  padding: 0.4rem 0.8rem;
  border-radius: 50%;
  margin-right: 0.8rem;
}

/* Efect hover */
.steps-timeline li:hover {
  transform: scale(1.05);
  border: 2px solid #ffd700; /* contur galben pastel */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
} /* ===== Wave de tranziție între FAQ și footer ===== */
.footer-wave {
  display: block;
  height: 100px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%232b2f33' d='M0,224L40,197.3C80,171,160,117,240,96C320,75,400,85,480,96C560,107,640,117,720,138.7C800,160,880,192,960,186.7C1040,181,1120,139,1200,128C1280,117,1360,139,1400,149.3L1440,160L1440,320L0,320Z'/></svg>")
    center bottom / cover no-repeat;
  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.15);
}

/* ===== Footer ===== */
.footer-bar {
  background: #2b2f33; /* gri închis prietenos */
  color: #e9eef3;
  font-size: 17px;
  line-height: 1.6;
  text-align: center;
  padding-top: 20px;
}

.footer-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* contact | parteneri | social */
  align-items: center;
  gap: 40px;
}

/* ===== Contact ===== */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16.5px;
}

/* ===== Parteneri ===== */
.footer-partners img {
  height: 50px;
  opacity: 0.85;
  filter: grayscale(100%);
  margin: 0 8px;
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}
.footer-partners img:hover {
  opacity: 1;
  filter: none;
  transform: translateY(-3px);
}

/* ===== Social & Buton ===== */
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-social a {
  text-decoration: none;
  font-size: 20px;
  color: #e9eef3;
  transition: transform 0.2s ease, color 0.2s ease;
}
.footer-social a:hover {
  transform: translateY(-2px);
  color: #ffd700;
}

.btn-book {
  display: inline-block;
  background: #ffd700;
  color: #1b1b1b;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 22px rgba(255, 215, 0, 0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background-color 0.18s ease;
}
.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 215, 0, 0.5);
  background: #f1cb00;
}

/* ===== Copy Bar ===== */
.footer-copy {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 14px;
  padding-bottom: 18px;
}

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .footer-row {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-partners img {
    height: 30px;
  }
  .btn-book {
    font-size: 14px;
    padding: 9px 16px;
  }
  /* containerul cu logo-uri: pe un rând, centrat */
  .footer-partners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px; /* spațiu între logo-uri */
    z-index: 1; /* deasupra oricăror wave/overlay */
  }

  /* link-urile sunt inline-block pentru hitbox corect */
  .footer-partners a {
    display: inline-block;
    line-height: 0; /* elimină spațiul sub img */
  }

  /* dimensiunea și efectul logo-urilor */
  .footer-partners a img {
    max-height: 70px; /* ajustează 40–60px după gust */
    width: auto;
    opacity: 0.9;
    filter: grayscale(100%);
    transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
  }
  .footer-partners a:hover img {
    opacity: 1;
    filter: none;
    transform: translateY(-2px);
  }

  /* dacă există un overlay peste (ex: wave), tăiem interacțiunea lui */
  .footer-wave {
    pointer-events: none;
  }
}
/* Grid contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1000px; /* încadrăm frumos în pagină */
  margin: 0 auto;
  align-items: start; /* fiecare card ia înălțimea lui */
}

/* Carduri contact mai compacte */
.contact-card {
  padding: 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  height: auto; /* nu mai forțăm înălțimea */
  min-height: unset; /* elimină restricțiile default */
}

/* Harta mai mică */
.map-wrap iframe {
  height: 180px; /* mai mică decât 240px */
  border-radius: 8px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* două coloane egale */
  gap: 2rem; /* spacing între carduri (ca înainte) */
  max-width: 1000px; /* lățime totală mai compactă */
  margin: 0 auto; /* centrează în pagină */
}

.contact-card {
  padding: 20px; /* mai aerisit */
  min-height: 360px; /* înălțime ca în versiunea preferată */
}
/* ===== FEEDBACK (varianta laptop/desktop) ===== */
#feedback {
  padding: 64px 0 56px;
  background: linear-gradient(#f6f9fc, #eef6ff);
}

/* container pe mijloc */
#feedback .container {
  max-width: 1000px; /* lățime fixă pentru secțiune */
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* titlu centrat */
#feedback .sec-title {
  font-weight: 800;
  font-size: 2rem;
  color: #111;
  margin-bottom: 32px;
}
#feedback .sec-title::after {
  content: "";
  width: 64px;
  height: 4px;
  display: block;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #ffd84e, #ffb800);
  border-radius: 999px;
}

/* grilă centrată pentru carduri */
#feedback .t-grid {
  display: flex;
  justify-content: center; /* cardurile pe mijloc */
  gap: 24px;
}

/* carduri recenzie */
#feedback .t-card {
  flex: 0 1 300px; /* fixăm o lățime rezonabilă */
  max-width: 320px;
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}
#feedback .t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

/* text recenzie */
#feedback .t-text {
  margin: 10px 0 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
}

/* autor */
#feedback .t-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
#feedback .t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #ddd;
}
#feedback .t-name {
  font-weight: 700;
  color: #111;
}
#feedback .t-role {
  font-size: 0.9rem;
  color: #555;
}
/* ===== FAQ – light, centrat, fără JS ===== */
.faq {
  padding: 64px 0 56px;
  background: radial-gradient(
      1200px 500px at 50% -15%,
      rgba(255, 226, 107, 0.1),
      transparent
    ),
    linear-gradient(#f6f9fc, #eef6ff);
}
.faq .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.faq .sec-title {
  font-weight: 800;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color: #111;
  margin: 0 0 28px;
}
.faq .sec-title::after {
  content: "";
  width: 64px;
  height: 4px;
  display: block;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #ffd84e, #ffb800);
  border-radius: 999px;
}

/* listă centrată */
.faq-list {
  display: grid;
  gap: 16px;
}

/* card FAQ */
.faq-item {
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-item:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  border-color: rgba(0, 0, 0, 0.12);
}

/* bară de accent galben pe stânga */
.faq-item::before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 100%;
  background: #ffb800;
  opacity: 0.9;
}
.faq-item {
  position: relative;
  padding-left: 0;
}

/* summary (întrebarea) */
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 56px 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
  color: #0f0f0f;
  text-align: left;
}
.faq-item > summary::-webkit-details-marker {
  display: none;
}

/* icon săgeată */
.faq-item .chev {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  position: relative;
}

.faq-item .chev::before,
.faq-item .chev::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(-45deg) translateY(-2px);
  transition: transform 0.2s ease;
}
.faq-item[open] .chev::before,
.faq-item[open] .chev::after {
  transform: rotate(135deg) translateY(2px);
}

/* răspunsul – animăm apariția */
.faq-item .a {
  padding: 0 18px 16px 18px;
  color: #333;
  text-align: left;
  line-height: 1.65;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.2s ease;
}
.faq-item[open] .a {
  max-height: 220px; /* suficient pentru 2–3 rânduri; mărește dacă ai texte lungi */
  opacity: 1;
}

/* micro‑accent la începutul răspunsului */
.faq-item .a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #ffb800;
  margin-right: 8px;
  transform: translateY(-1px);
} /* Subtitle uniform la secțiuni */
.subtitle {
  font-size: 1.05rem;
  color: #555;
  margin: -8px auto 24px;
  max-width: 600px;
  text-align: center;
} /* ===== CONTACT — uniform ca Servicii ===== */
#contact {
  padding: 32px 0 48px;
}

#contact > .container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

#contact h2.sec-title {
  margin: 0 0 20px;
  text-align: center;
  font-weight: 800;
  font-size: 2rem;
  color: #111;
  position: relative;
}
#contact h2.sec-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #ffd84e, #ffb800);
  border-radius: 999px;
}
#contact .subtitle {
  margin: 0 auto 16px;
  max-width: 640px;
  text-align: center;
  color: #555;
}

/* grilă: ~60/40, fără limită 1000px */
#contact .contact-grid {
  display: grid;
  gap: 24px;
  margin-top: 0;
  grid-template-columns: 1.3fr 1fr;
}

/* carduri compacte, fără min-height forțat */
#contact .contact-card {
  padding: 18px 20px;
  border-radius: 12px;
  min-height: auto;
}

/* card hartă mai scurtă */
#contact .map-card .map-wrap iframe {
  height: 180px;
  border-radius: 12px;
}

/* responsive */
@media (max-width: 900px) {
  #contact .contact-grid {
    grid-template-columns: 1fr;
  }
  #contact .map-card .map-wrap iframe {
    height: 240px;
  }
} /* ===========================
   RESPONSIVE — SITE WIDE
   =========================== */

/* ——— Laptop mic / tabletă orizontal (~≤1024px) ——— */
@media (max-width: 1024px) {
  .container {
    width: min(1000px, 94%);
  }

  /* Header */
  :root {
    --header-h: 72px;
  }
  .nav .nav-links a {
    padding: 8px 8px;
  }
  .btn-cta {
    padding: 10px 14px;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 56px 0;
    text-align: center;
  }
  .hero__media {
    order: -1;
  }
  .hero .hero__content {
    max-width: 92%;
    margin: 0 auto;
  }

  /* Grile */
  .grid.features,
  .grid.pricing,
  .grid.team {
    grid-template-columns: 1fr 1fr;
  }

  /* Servicii (slider/cards) */
  .srv-card {
    flex: 0 0 clamp(280px, 44vw, 420px);
  }

  /* „Cum lucrăm” */
  .steps-timeline {
    max-width: 760px;
  }

  /* Footer */
  .footer-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* ——— Tabletă / telefon mare (~≤768px) ——— */
@media (max-width: 768px) {
  .container {
    width: min(720px, 92%);
  }
  .section {
    padding: 40px 0;
  }

  /* Header: transformăm meniul în burger dacă nu e deja */
  :root {
    --header-h: 66px;
  }
  .nav {
    padding: 10px 0;
  }
  .nav .nav-links {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
  }
  .site-header {
    backdrop-filter: saturate(120%) blur(10px);
  }

  /* H1 + titluri */
  .hero h1 {
    font-size: clamp(28px, 6.2vw, 36px);
  }
  section h2,
  .sec-title {
    font-size: clamp(1.6rem, 4.8vw, 2rem);
  }

  /* Hero chips/cta */
  .chips {
    gap: 8px;
  }
  .hero .cta {
    gap: 10px;
  }

  /* Grile la 1 col */
  .grid.features,
  .grid.pricing,
  .grid.team,
  .grid.two {
    grid-template-columns: 1fr;
  }

  /* Servicii slider – card lat pe mobil */
  .srv-card {
    flex-basis: 86vw;
  }
  .srv-btn {
    top: auto;
    bottom: -8px;
    transform: none;
  }
  .srv-prev {
    left: 6px;
  }
  .srv-next {
    right: 6px;
  }

  /* Testimonials / Feedback */
  #feedback .t-grid {
    flex-direction: column;
    align-items: center;
  }
  #feedback .t-card {
    max-width: 92%;
  }

  /* Cum lucrăm */
  .steps-wrap {
    padding: 56px 0;
  }
  .steps-timeline {
    gap: 18px;
  }

  /* Contact (tot site-ul o cere) */
  #contact {
    padding: 40px 0;
  }
  #contact .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  #contact .map-card .map-wrap iframe {
    height: 240px;
  }

  /* FAQ */
  .faq .container {
    max-width: 92%;
  }
  .faq .sec-title {
    margin-bottom: 18px;
  }

  /* Footer */
  .footer-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-partners img {
    height: 28px;
  }
}

/* ——— Telefon mic (~≤560px) ——— */
@media (max-width: 560px) {
  .container {
    width: 92%;
  }
  .btn,
  .btn-cta {
    padding: 10px 14px;
    font-weight: 700;
  }

  /* Hero mai compact */
  .hero {
    padding: 40px 0;
  }
  .badge {
    font-size: 0.85rem;
  }
  .chips li {
    font-size: 0.9rem;
    padding: 6px 10px;
  }

  /* Carduri generale */
  .card {
    border-radius: 12px;
    padding: 16px;
  }

  /* Servicii */
  .srv-card {
    flex-basis: 88vw;
    padding: 16px;
  }
  .srv-list {
    padding-left: 16px;
  }

  /* Feedback */
  #feedback {
    padding: 48px 0;
  }
  #feedback .sec-title {
    margin-bottom: 18px;
  }

  /* Contact */
  #contact h2.sec-title {
    margin-bottom: 10px;
  }
  #contact .subtitle {
    margin-bottom: 14px;
    font-size: 0.98rem;
  }
  #contact .contact-card {
    padding: 16px;
  }
  #contact .map-card .map-wrap iframe {
    height: 220px;
  }

  /* Footer */
  .btn-book {
    font-size: 13.5px;
    padding: 8px 14px;
  }
  .footer-copy {
    font-size: 13px;
  }
}

/* ——— Optimizări accesibilitate/UX ——— */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
} /* ===========================
   MOBILE FIRST POLISH (≤768px)
   =========================== */
@media (max-width: 768px) {
  /* Layout & tipografie */
  .container {
    width: 92%;
  }
  .section {
    padding: 40px 0;
  }
  h1,
  .hero h1 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.18;
  }

  .sec-title {
    font-size: clamp(22px, 5.4vw, 28px);
    margin-bottom: 14px;
  }

  .subtitle {
    font-size: 0.98rem;
    color: #5b6676;
    margin: 0 auto 18px;
    max-width: 60ch;
  }

  /* Header */
  :root {
    --header-h: 66px;
  }
  .nav {
    padding: 10px 0;
  }
  .nav .nav-links {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
  }

  /* Butoane & touch targets */
  .btn,
  .btn-cta {
    padding: 11px 16px;
    border-radius: 999px;
  }
  .chips {
    gap: 8px;
  }
  .chips li {
    padding: 6px 10px;
    font-size: 0.93rem;
  }

  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 44px 0;
    text-align: center;
  }
  .hero__media {
    order: -1;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.1));
  }
  .badge {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  /* Features / carduri servicii (grilă sau slider) */
  .grid.features {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .card {
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  }
  .services .subtitle {
    margin-bottom: 14px;
  }
  .srv-slider {
    margin-top: 6px;
  }
  .srv-viewport {
    padding: 8px 4px 14px;
  }
  .srv-row {
    gap: 14px;
  }
  .srv-card {
    flex-basis: 88vw;
    padding: 16px;
    border-radius: 14px;
  }
  .srv-btn {
    bottom: -6px;
    top: auto;
    transform: none;
  }
  .srv-prev {
    left: 8px;
  }
  .srv-next {
    right: 8px;
  }

  /* Feedback */
  #feedback {
    padding: 44px 0;
  }
  #feedback .t-grid {
    flex-direction: column;
    gap: 14px;
  }
  #feedback .t-card {
    max-width: 92%;
    padding: 16px;
  }
  #feedback .t-text {
    margin: 8px 0 12px;
  }

  /* Cum lucrăm */
  .steps-wrap {
    padding: 48px 0;
  }
  .steps-timeline {
    gap: 14px;
  }
  .steps-timeline li {
    padding: 16px;
  }

  /* CONTACT (foarte aerisit și clar) */
  #contact {
    padding: 40px 0;
  }
  #contact .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  #contact .contact-card {
    padding: 16px;
    border-radius: 12px;
  }
  #contact .subtitle {
    margin-bottom: 16px;
  }
  /* input-uri mari, ușor de atins */
  #contactForm input[type="text"],
  #contactForm input[type="email"],
  #contactForm textarea {
    font-size: 16px;
    padding: 12px 14px;
    border-radius: 12px;
  }
  #contactForm textarea {
    min-height: 120px;
  }
  .btn-primary[type="submit"] {
    width: 100%;
  }
  /* hartă vizibilă pe mobil */
  #contact .map-card .map-wrap iframe {
    height: 240px;
    border-radius: 12px;
  }
  .contact-cta {
    gap: 8px;
  }
  .contact-cta .btn {
    flex: 1;
    text-align: center;
  }

  /* FAQ – cărți aerisite */
  .faq {
    padding: 44px 0;
  }
  .faq .container {
    max-width: 92%;
  }
  .faq-list {
    gap: 12px;
  }
  .faq-item > summary {
    padding: 14px 42px 14px 16px;
  }
  .faq-item .a {
    padding: 0 16px 14px;
  }

  /* Footer */
  .footer-row {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
    padding: 22px 0;
  }
  .footer-contact {
    align-items: center;
    gap: 8px;
  }
  .footer-partners img {
    height: 28px;
  }
  .btn-book {
    font-size: 13.5px;
    padding: 8px 14px;
  }
  .footer-copy {
    font-size: 13px;
  }
}

/* —— Extra compact pentru telefoane mici (≤560px) —— */
@media (max-width: 560px) {
  .section {
    padding: 36px 0;
  }
  .hero {
    padding: 38px 0;
  }
  .srv-card {
    flex-basis: 90vw;
  }
  #feedback .t-card {
    max-width: 95%;
  }
  #contact .map-card .map-wrap iframe {
    height: 220px;
  }
} /* ===== FEEDBACK — airy & centered ===== */
#feedback {
  padding: 48px 0 48px; /* mai puțin decât 64px */
  background: linear-gradient(#f6f9fc, #eef6ff);
}
#feedback .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
#feedback .sec-title {
  margin-bottom: 10px;
}
#feedback .subtitle {
  margin: 0 auto 22px;
  color: #5b6676;
  max-width: 60ch;
  font-size: 1rem;
}

/* cardurile pe un row flexibil, dar centrate */
#feedback .t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  justify-items: center;
}
#feedback .t-card {
  width: 100%;
  max-width: 300px;
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-align: left;
}
#feedback .t-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}
#feedback .t-text {
  margin: 8px 0 12px;
  line-height: 1.55;
  color: #222;
}
#feedback .t-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
#feedback .t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
#feedback .t-role {
  font-size: 0.92rem;
  color: #586271;
}

/* mobil */
@media (max-width: 768px) {
  #feedback {
    padding: 44px 0;
  }
  #feedback .t-grid {
    gap: 14px;
  }
  #feedback .t-card {
    max-width: 92%;
    padding: 16px;
  }
} /* ===== Contact – desktop-first ===== */
.contact-page {
  padding: 48px 20px 72px;
  background: var(--bg);
  color: var(--text);
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
  grid-template-columns: 1.35fr 1fr; /* form stânga mai lat */
  align-items: start;
}

/* Cărți / carduri */
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.sec-title {
  margin: 0 0 6px;
  font-size: 2rem;
  line-height: 1.2;
}
.subtitle {
  margin: 0 0 24px;
  color: var(--muted);
}

/* Formular */
#contactForm {
  display: grid;
  gap: 14px;
}
#contactForm .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
#contactForm label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}
#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: calc(var(--radius) - 4px);
  background: #fff;
  color: var(--text);
}
:root.dark #contactForm input,
:root.dark #contactForm textarea {
  background: #0e141a;
  border-color: rgba(255, 255, 255, 0.12);
}
#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring);
  border-color: transparent;
}
#contactForm .btn.btn-primary {
  background: var(--primary);
  border: 0;
  border-radius: calc(var(--radius) - 6px);
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.08s ease;
}
#contactForm .btn.btn-primary:active {
  transform: translateY(1px);
}

.form-note {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.hp {
  position: absolute;
  left: -9999px;
}

/* Aside (dreapta): sticky */
.contact-aside {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 88px; /* ajustează dacă header-ul tău e mai înalt */
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.info-card h3,
.map-card h3 {
  margin: 0 0 12px;
}
.contact-info a,
.contact-info p {
  display: block;
  margin: 6px 0;
  word-break: break-word;
}

/* Ecrane foarte late */
@media (min-width: 1400px) {
  .contact-grid {
    max-width: 1320px;
  }
  .map-wrap iframe {
    height: 500px;
  }
} /* ===== Servicii – desktop-first ===== */
.section.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}

.section-head {
  display: grid;
  gap: 12px;
  align-items: center;
  grid-template-columns: 1fr auto;
  margin-bottom: 16px;
}
.section-head h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
}
.section-head .subtitle {
  grid-column: 1 / -1;
  color: var(--muted);
  margin: 0;
}
.section-head .btn-cta {
  justify-self: end;
}

.srv-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.srv-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--card);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
}
.srv-btn:active {
  transform: translateY(1px);
}

.srv-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.srv-row {
  display: flex;
  gap: 24px;
  padding: 8px;
  will-change: transform;
  transition: transform 0.35s ease;
}

.srv-card {
  min-width: 320px;
  max-width: 360px;
  background: var(--card);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}
.srv-card h3 {
  margin: 0 0 16px;
  font-size: 1.1rem;
}
.srv-card .srv-list {
  margin: 0;
  padding-left: 18px;
}
.srv-card .price {
  margin: 10px 0 0;
}

.services-cta {
  display: flex;
  justify-content: center;
  margin: 28px 0 8px;
}
.btn-cta.ghost {
  background: transparent;
  border: 2px solid var(--primary);
  padding: 10px 14px;
  border-radius: calc(var(--radius) - 6px);
  font-weight: 700;
}

/* Parteneri (partial) – aliniere pe un singur rând pe desktop */
.partners {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.partners img {
  height: 70px;
  width: auto;
  filter: grayscale(0.1);
  opacity: 0.9;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.partners a:hover img {
  filter: none;
  opacity: 1;
}

/* Ecrane foarte late */
@media (min-width: 1400px) {
  .section.cont/* 1) Head centrat */
.section-head {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .section-head .btn-cta {
    justify-self: center;
  }

  /* 2) Slider centrat + butoane suprapuse */
  .srv-slider {
    max-width: 1100px;
    margin: 20px auto 0;
    grid-template-columns: 1fr;
  }
  .srv-viewport {
    position: relative;
    padding: 8px 56px;
  } /* spațiu pt butoane */
  .srv-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }
  .srv-prev {
    left: 10px;
  }
  .srv-next {
    right: 10px;
  }

  /* 3) Carduri mai atractive */
  .srv-card {
    min-width: 340px;
    max-width: 380px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    backdrop-filter: blur(4px);
  }
  .srv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  }
  .srv-card h3 {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 20px;
  }
  .srv-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: var(--primary);
  }
  .srv-card .price b {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
  }

  /* Când nu e suficient conținut pentru scroll, centrează linia */
  @media (min-width: 1024px) {
    .srv-row.no-scroll {
      justify-content: center;
    }
  }
  ainer {
    max-width: 1320px;
  }
} /* Subtitle centrat sub titlu */
.services .subtitle,
.section-head .subtitle {
  text-align: center;
  max-width: 800px; /* ca să nu fie prea lat pe ecrane mari */
  margin: 0 auto 24px;
  color: var(--muted);
}
.sec-title {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 24px;
}

.sec-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px; /* lungimea liniei */
  height: 3px; /* grosimea */
  background: var(--primary, #ffd91a); /* culoarea liniei */
  border-radius: 2px;
} /* Centrează textele și butonul doar pe ecrane mari (laptop/desktop) */
@media (min-width: 1024px) {
  #servicii .sec-title,
  #servicii .subtitle,
  .services.section.container h2,
  .services.section.container .subtitle,
  .services.section.container .btn-cta {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
} /* ===== DESPRE — titlu + subtitlu + chip-uri centrate ===== */
.about-band h2,
.about-band .lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.about-band .values {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 32px; /* spațiu deasupra grid-ului */
}
