:root {
  --blue-900: var(--bcs-green-900, #0d3d22);
  --blue-700: var(--bcs-green-700, #1f7a3d);
  --blue-500: var(--bcs-green-500, #2e9b52);
  --blue-100: var(--bcs-green-100, #e8f5ec);
  --accent: #f4b400;
  --white: #ffffff;
  --gray-50: #f5f7fa;
  --gray-200: #e2e8f0;
  --gray-600: #5a6b7d;
  --gray-900: #1a2332;
  --shadow: 0 12px 40px rgba(13, 61, 34, 0.1);
  --shadow-lg: 0 20px 50px rgba(13, 61, 34, 0.14);
  --radius: 14px;
  --font: var(--bcs-font-body, "Inter"), system-ui, sans-serif;
  --header-h: 64px;
  --space-section: clamp(3rem, 6vw, 5rem);
  --space-block: clamp(1rem, 2.5vw, 1.5rem);
  --container-pad: clamp(1rem, 4vw, 1.5rem);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
  --touch-min: 44px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 100%);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Header + meniu mobil */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1100;
  isolation: isolate;
  height: calc(var(--header-h) + var(--safe-top));
  padding-top: var(--safe-top);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.2s;
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr var(--touch-min);
  align-items: center;
  gap: 0.65rem;
}

.logo {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}

.logo-img {
  height: clamp(36px, 9vw, 46px);
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
}

.nav-desktop {
  display: none;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  font-weight: 600;
  font-size: 0.92rem;
  justify-content: center;
  align-items: center;
}

.nav-desktop a:hover {
  color: var(--blue-500);
}

.header-cta {
  display: none;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: var(--touch-min);
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: clamp(0.85rem, 2.5vw, 0.92rem);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.btn:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-label-short {
  display: none;
}

@media (max-width: 420px) {
  .btn-label-long {
    display: none;
  }

  .btn-label-short {
    display: inline;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: var(--white);
  box-shadow: none;
  text-shadow: none;
}

.btn-primary:hover {
  box-shadow: none;
}

.btn-outline {
  background: var(--white);
  border-color: var(--blue-500);
  color: var(--blue-700);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-facebook {
  background: #1877f2;
  color: var(--white);
}

.btn-facebook:hover {
  background: #166fe5;
  color: var(--white);
}

.menu-toggle {
  grid-column: 2;
  justify-self: end;
  width: var(--touch-min);
  height: var(--touch-min);
  border: none;
  background: var(--blue-100);
  border-radius: 12px;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1102;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
}

.menu-toggle:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue-900);
  margin: 3px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1098;
  background: rgba(13, 61, 34, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
}

.nav-overlay[hidden] {
  display: none !important;
  pointer-events: none !important;
}

.nav-overlay.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile {
  position: fixed;
  top: calc(var(--header-h) + var(--safe-top));
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--white);
  padding: 1.5rem var(--container-pad) calc(1.5rem + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
  z-index: 1099;
  pointer-events: none;
  box-shadow: -8px 0 40px rgba(13, 61, 34, 0.12);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile a {
  width: 100%;
  max-width: 280px;
  padding: 0.85rem 0.75rem;
  border-radius: 10px;
  min-height: var(--touch-min);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-mobile a:hover,
.nav-mobile a:focus-visible {
  background: var(--blue-100);
  color: var(--blue-700);
}

.nav-mobile .btn {
  margin-top: 0.75rem;
  width: 100%;
}

.nav-mobile.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile[aria-hidden="false"] {
  visibility: visible;
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + var(--safe-top) + clamp(1.5rem, 5vw, 2.75rem)) 0
    clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(160deg, var(--blue-100) 0%, var(--white) 55%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/brand/belei-branding-master.png") center 28% / cover no-repeat;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 78%,
    transparent 92%
  );
  mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 92%);
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-700);
  margin-bottom: 1rem;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-tagline {
  margin: 0 0 0.65rem;
  font-family: var(--bcs-font-display, "Montserrat"), sans-serif;
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--blue-500);
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(1.65rem, 4.5vw + 0.5rem, 3rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--blue-900);
  text-wrap: balance;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 52ch;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.hero-actions .btn {
  flex: 0 1 auto;
  min-width: min(100%, 160px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}

@media (max-width: 380px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}

.stat {
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.stat strong {
  display: block;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  color: var(--blue-700);
  line-height: 1.2;
}

.stat span {
  font-size: clamp(0.72rem, 2vw, 0.82rem);
  color: var(--gray-600);
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  line-height: 0;
  max-width: 560px;
  margin-inline: auto;
  width: 100%;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  opacity: 0.92;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 30%,
    transparent 100%
  );
  pointer-events: none;
}

/* Sections */
section {
  padding: var(--space-section) 0;
  scroll-margin-top: calc(var(--header-h) + var(--safe-top) + 12px);
}

.section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
}

.section-head--left {
  text-align: left;
  margin: 0 0 clamp(1.25rem, 3vw, 1.5rem);
  max-width: none;
}

.section-head p {
  text-wrap: pretty;
}

.section-head h2,
.hero h1 {
  font-family: var(--bcs-font-display, "Montserrat"), sans-serif;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 3.5vw, 2.1rem);
  color: var(--blue-900);
  text-wrap: balance;
}

.section-head p {
  margin: 0;
  color: var(--gray-600);
}

.bg-soft {
  background: var(--gray-50);
}

/* Services */
.services-grid {
  display: grid;
  gap: var(--space-block);
  grid-template-columns: 1fr;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: clamp(1.15rem, 3vw, 1.35rem);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  height: 100%;
}

.service-card:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

@media (hover: none) {
  .service-card:hover {
    transform: none;
  }
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-100);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
}

.service-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--blue-900);
}

.service-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-600);
}

/* About / Despre */
.about-panel {
  padding-bottom: clamp(2rem, 5vw, 3rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid rgba(13, 61, 34, 0.08);
}

.about-panel-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

@media (min-width: 768px) {
  .about-panel-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.about-lead {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.65;
  color: var(--gray-700, var(--gray-600));
  text-wrap: pretty;
}

.about-panel-services {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-md, 0 4px 20px rgba(0, 0, 0, 0.06));
  border: 1px solid rgba(13, 61, 34, 0.06);
}

.about-services-title {
  margin: 0 0 1rem;
  font-family: var(--bcs-font-display, "Montserrat"), sans-serif;
  font-size: 1.05rem;
  color: var(--blue-900);
}

.about-services-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.about-services-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--gray-600);
  text-wrap: pretty;
}

.about-services-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--blue-500);
  font-weight: 800;
  font-size: 0.85rem;
}

/* Why */
.why-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.why-list {
  display: grid;
  gap: 0.85rem;
}

.why-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.why-item strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--gray-800, var(--blue-900));
  font-weight: 600;
}

.why-item .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-500);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.why-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(85vh, 720px);
  object-fit: contain;
  object-position: center center;
}

/* Nacela block */
.nacela-block {
  display: grid;
  gap: clamp(1.25rem, 4vw, 2rem);
  align-items: center;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.35rem, 4vw, 2.25rem);
  overflow: hidden;
}

.nacela-block h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  text-wrap: balance;
}

.nacela-cta {
  margin-top: 1rem;
}

.nacela-visual-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.nacela-block p {
  color: rgba(255, 255, 255, 0.85);
}

.nacela-block .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.nacela-block .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Process */
.steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.step {
  text-align: center;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.step-num {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--blue-900);
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* Galerie preview — bandă film + butoane categorii */
.gallery-preview {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  overflow: hidden;
}

.gallery-preview .section-head {
  margin-bottom: 1.5rem;
}

.gallery-marquee-wrap {
  margin-bottom: 1.75rem;
  margin-inline: calc(-1 * var(--container-pad));
}

.gallery-marquee {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}

.gallery-marquee-track {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
  animation: gallery-marquee-scroll var(--marquee-duration, 36s) linear infinite;
  will-change: transform;
}

.gallery-marquee:hover .gallery-marquee-track {
  animation-play-state: paused;
}

@keyframes gallery-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .gallery-marquee-wrap {
    mask-image: none;
  }
}

.gallery-marquee-item {
  flex-shrink: 0;
  height: clamp(140px, 22vw, 200px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--gray-200);
}

.gallery-marquee-item img {
  display: block;
  height: 100%;
  width: auto;
  min-width: 200px;
  max-width: 280px;
  object-fit: cover;
}

.gallery-marquee-fallback {
  text-align: center;
  color: var(--gray-600);
  padding: 2rem;
}

.gallery-category-btns {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 480px) {
  .gallery-category-btns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .gallery-category-btns {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem;
  }
}

.gallery-open-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  padding: 0.85rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--blue-900);
  font-family: var(--bcs-font-display, "Montserrat"), sans-serif;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.15s, box-shadow 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.gallery-open-btn:hover,
.gallery-open-btn:focus-visible {
  border-color: var(--blue-500);
  background: var(--blue-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 155, 82, 0.15);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 20, 35, 0.94);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: max(1rem, var(--safe-top)) max(0.5rem, var(--container-pad))
    max(1rem, var(--safe-bottom));
  gap: 0.75rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: min(1100px, 96vw);
  flex: 1;
  min-height: 0;
}

.lightbox img {
  max-height: min(78vh, 820px);
  max-width: 100%;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.lightbox-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: max(1rem, var(--safe-top));
  right: max(1rem, var(--container-pad));
  width: var(--touch-min);
  height: var(--touch-min);
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-900);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.lightbox-close:hover {
  background: var(--blue-100);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue-900);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s, background 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.lightbox-nav:hover:not(:disabled) {
  background: var(--white);
  transform: translateY(-50%) scale(1.06);
}

.lightbox-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.lightbox-prev {
  left: max(0.5rem, var(--container-pad));
}

.lightbox-next {
  right: max(0.5rem, var(--container-pad));
}

@media (max-width: 520px) {
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.65rem;
  }

  .lightbox img {
    max-height: 70vh;
  }
}

/* Parteneriate */
.partners {
  padding: clamp(2rem, 5vw, 3rem) 0;
  border-top: 1px solid rgba(13, 61, 34, 0.06);
}

.partners .section-head {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-item {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.88rem;
  line-height: 1.3;
  box-shadow: 0 2px 8px rgba(13, 61, 34, 0.04);
}

.partner-item strong {
  color: var(--blue-900);
  font-weight: 700;
}

.partner-item span {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.82rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2rem);
}

.contact-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-width: 0;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

/* Adresă + hartă — un singur bloc legat de Contact */
.contact-location {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-location-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.1rem 0.85rem;
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.15s;
}

.contact-location-header:hover {
  background: var(--blue-100);
}

.contact-location-header .icon {
  font-size: 1.4rem;
}

.contact-location-header strong {
  color: var(--blue-900);
}

.contact-location-header p {
  margin: 0.15rem 0 0;
  font-size: 0.92rem;
  color: var(--gray-600);
}

.contact-map {
  position: relative;
  min-height: clamp(200px, 42vw, 280px);
  overflow: hidden;
  background: var(--gray-50);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: clamp(200px, 42vw, 280px);
  border: 0;
}

.contact-map iframe[hidden] {
  display: none !important;
}

.contact-map.map-loaded iframe:not([hidden]) {
  display: block;
}

.contact-location .map-open-link {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-top: 1px solid var(--gray-200);
  transition: background 0.15s, color 0.15s;
}

.contact-location .map-open-link:hover {
  background: var(--blue-500);
  color: var(--white);
}

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: clamp(1rem, 3vw, 1.1rem);
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: var(--blue-500);
  box-shadow: 0 4px 20px rgba(46, 155, 82, 0.12);
}

.contact-card .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-card--facebook:hover,
.contact-card--facebook:focus-visible {
  border-color: #1877f2;
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.15);
}

.contact-card--tiktok:hover,
.contact-card--tiktok:focus-visible {
  border-color: #010101;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.icon-fb,
.icon-tiktok {
  display: grid;
  place-items: center;
}

.icon-fb {
  color: #1877f2;
}

.icon-tiktok {
  color: #010101;
}

.contact-card p {
  margin: 0.15rem 0 0;
  word-break: break-word;
}

.contact-card a[href^="mailto:"] p {
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

.contact-card-note {
  margin: 0.2rem 0 0 !important;
  font-size: 0.8rem !important;
  font-weight: 500;
  color: var(--gray-600);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: clamp(1.15rem, 4vw, 1.5rem);
  display: grid;
  gap: clamp(0.75rem, 2.5vw, 0.85rem);
  min-width: 0;
}

.contact-form .btn-primary {
  width: 100%;
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.88rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font: inherit;
  font-size: 16px;
  width: 100%;
  min-height: var(--touch-min);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.contact-form input[type="file"]:focus {
  outline: 2px solid var(--blue-500);
  border-color: transparent;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.file-label input[type="file"] {
  padding: 0.5rem 0;
  border: none;
  font-size: 0.85rem;
  max-width: 100%;
}

.file-hint {
  display: block;
  margin-top: 0.25rem;
  font-size: clamp(0.72rem, 2.2vw, 0.78rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--gray-600);
}

.file-preview {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  color: var(--blue-700);
}

.file-preview li {
  padding: 0.25rem 0;
}

.form-message {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-message.success {
  background: #e6f7ed;
  color: #0d6b3a;
  border: 1px solid #9ed9b8;
}

.form-message.error {
  background: #fdecec;
  color: #9b1c1c;
  border: 1px solid #f5b4b4;
}

.contact-form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-fallback-btn {
  width: 100%;
  margin-top: 0.75rem;
}

/* Footer */
.site-footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-address {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  opacity: 0.85;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.8;
}

.footer-credit {
  position: relative;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.12s;
}

.footer-credit::after {
  content: attr(data-email);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  transform: translateX(-50%) translateY(4px);
  padding: 0.35rem 0.6rem;
  background: var(--white);
  color: var(--blue-900);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.08s ease, transform 0.08s ease, visibility 0.08s;
}

.footer-credit:hover::after,
.footer-credit:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.footer-credit:hover,
.footer-credit:focus-visible {
  color: var(--white);
}

/* Floating actions */
.floating-actions {
  position: fixed;
  right: max(1rem, var(--container-pad));
  bottom: calc(1rem + var(--safe-bottom));
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

body.cookie-banner-open .floating-actions {
  bottom: calc(7.5rem + var(--safe-bottom));
}

.floating-actions a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform 0.15s;
}

.floating-actions a:hover {
  transform: scale(1.08);
}

.fab-tiktok {
  background: #010101;
}

.fab-tiktok:hover {
  background: #1a1a1a;
}

.fab-fb {
  background: #1877f2;
}

.fab-fb:hover {
  background: #166fe5;
}

.fab-wa {
  background: #25d366;
}

/* ——— Responsive ——— */

@media (max-width: 767px) {
  .hero-content {
    text-align: center;
  }

  .hero-badge {
    margin-inline: auto;
  }

  .hero-tagline {
    margin-inline: auto;
    max-width: 28ch;
  }

  .hero-lead {
    margin-inline: auto;
  }
}

/* Telefon mare / phablet */
@media (min-width: 480px) {
  :root {
    --header-h: 68px;
  }

}

/* Tabletă */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-actions .btn {
    flex: 0 1 auto;
  }
}

@media (min-width: 768px) {
  :root {
    --header-h: 72px;
    --container-pad: clamp(1.25rem, 3vw, 2rem);
  }

  .header-inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .logo {
    grid-column: 1;
    justify-self: start;
  }

  .nav-desktop {
    display: flex;
    grid-column: 2;
    justify-self: center;
  }

  .menu-toggle {
    display: none;
  }

  .header-cta {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
  }

  .header-cta .btn {
    padding: 0.55rem 1rem;
    min-height: 40px;
    font-size: 0.85rem;
  }

  .menu-toggle,
  .nav-overlay,
  .nav-mobile {
    display: none;
  }

  .hero-content {
    text-align: left;
  }

  .hero-badge {
    margin-inline: 0;
  }

  .hero-lead {
    margin-inline: 0;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
  }

  .hero-visual {
    margin-inline: 0;
    max-width: none;
  }

  .why-grid,
  .contact-grid,
  .nacela-block,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .why-grid {
    align-items: center;
  }

  .contact-location .contact-map iframe,
  .contact-map iframe {
    height: min(320px, 40vh);
  }

  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Laptop */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero::before {
    opacity: 0.16;
  }

  .contact-grid {
    align-items: start;
  }

  .contact-form {
    padding: 1.75rem;
  }
}

/* Desktop mare / ultrawide */
@media (min-width: 1280px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
  }

  .hero-content {
    max-width: 36rem;
  }

  .services-grid {
    gap: 1.25rem;
  }

}

@media (min-width: 1536px) {
  .container {
    width: min(1200px, 100%);
  }

  section {
    padding: clamp(4.5rem, 7vw, 6rem) 0;
  }
}

