/* ── Reset ── */
html, body { margin: 0; overflow-x: hidden; }
body { background-color: #0a0a0a; }

/* ── Navbar ── */
.navbar {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  background-color: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  padding: 0.6rem 0;
  transition: background-color 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
  z-index: 1030;
}
.navbar.scrolled {
  background-color: rgba(10,10,10,0.85) !important;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar-brand {
  color: #fff !important;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.2em;
  font-size: 1.4rem;
  transition: opacity 0.2s;
}
.navbar-brand:hover { opacity: 0.8; }
.navbar-nav { gap: 0.25rem; }
.nav-link {
  color: rgba(255,255,255,0.75) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem !important;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.22s, background 0.22s, border-color 0.22s, transform 0.15s;
}
.nav-link:hover {
  color: #fff !important;
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}
.nav-link:active { transform: translateY(0); }
.nav-link.btn-oferta {
  background: linear-gradient(135deg, #fff 0%, #dde4f0 100%);
  color: #111 !important;
  font-weight: 700;
  padding: 0.45rem 1.3rem !important;
  box-shadow: 0 2px 12px rgba(255,255,255,0.18);
  margin-left: 0.4rem;
}
.nav-link.btn-oferta:hover {
  background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%);
  box-shadow: 0 4px 20px rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.15); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Shared section styles ── */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.05;
  margin: 0;
}
.divider-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 1rem 0 1.4rem;
}
.section-block { padding: 100px 0; }

/* ── Scroll-reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.22,.61,.36,1), transform 0.65s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-left.visible,
.reveal-right.visible { transform: translateX(0) translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
}
.brand {
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  letter-spacing: 0.25em;
}
.hero-words {
  position: relative;
  height: 3rem;
  overflow: hidden;
  margin: 0.3rem 0 1.2rem;
}
.hero-word {
  position: absolute;
  left: 50%;
  width: 100%;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  color: #fff;
  opacity: 0;
  transform: translateX(-50%) translateY(110%);
  transition: opacity 0.5s cubic-bezier(.22,.61,.36,1), transform 0.5s cubic-bezier(.22,.61,.36,1);
  will-change: transform, opacity;
}
.hero-word.active { opacity: 1; transform: translateX(-50%) translateY(0); }
.hero-word.past   { opacity: 0; transform: translateX(-50%) translateY(-110%); }

.hero-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  padding: 0.75rem 2.2rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  display: inline-block;
}
.hero-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.85);
  box-shadow: 0 0 24px rgba(255,255,255,0.15);
  transform: translateY(-2px);
  color: #fff;
}
.hero-btn:active { transform: translateY(0); }

.hero-keywords {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.45rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: justify;
  width: 88vw;
  max-width: 95vw;
  word-break: break-word;
}

.scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  animation: bounceDown 2s ease-in-out infinite;
  opacity: 0.45;
}
.scroll-hint span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.7));
}
.scroll-hint svg {
  width: 14px; height: 14px;
  fill: none; stroke: #fff;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── Parteneri ── */
.parteneri-strip {
  background-color: #fff;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.parteneri-strip::before,
.parteneri-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.parteneri-strip::before { left: 0;  background: linear-gradient(to right, #fff, transparent); }
.parteneri-strip::after  { right: 0; background: linear-gradient(to left,  #fff, transparent); }
.parteneri-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.parteneri-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.parteneri-track img {
  height: 36px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(1);
  flex-shrink: 0;
  object-fit: contain;
  transition: opacity 0.3s, filter 0.3s;
}
.parteneri-track img:hover { opacity: 1; filter: grayscale(0); }

/* ── Despre ── */
.despre-intro {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
  margin-top: 1.2rem;
}
.despre-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}
.despre-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.despre-list li {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  padding-left: 1rem;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.despre-tech-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

/* ── Servicii ── */
.productie-section {
  padding: 100px 0;
  position: relative;
}
.service-item { padding: 1.5rem 0; }
.service-item-inner {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
}
.service-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.18);
  min-width: 28px;
}
.service-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 0.35rem;
}
.service-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.85;
  margin: 0;
}

/* ── Echipamente ── */
.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.8rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(0,0,0,0.14);
}
.feature-card img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}
.feature-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: #111;
  margin: 0 0 0.8rem;
}
.feature-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  color: #54607a;
  line-height: 1.75;
  margin: 0 0 1.3rem;
}
.feature-card .feature-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1d2f50;
}

/* ── Hală 3D ── */
.hala-3d-frame {
  width: 100%;
  height: 70vh;
  max-height: 840px;
}
.hala-3d-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: transparent;
}

/* ── Footer ── */
.site-footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.85;
  max-width: 280px;
}
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a,
.footer-contact a,
.footer-contact span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover { color: #fff; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.footer-bottom p,
.footer-bottom a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  margin: 0;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.footer-contact i,
.footer-links i {
  font-size: 1rem;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── Pagini servicii ── */
.service-hero {
  position: relative;
  padding: 160px 0 100px;
  background: #0a0a0a;
  overflow: hidden;
}
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(255,180,0,0.07), transparent 70%);
  pointer-events: none;
}
.service-hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.service-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0.5rem 0 1.2rem;
}
.service-hero-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
  max-width: 520px;
}
.service-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
}
.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.info-block { padding: 80px 0; background: #0a0a0a; }
.info-card {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: border-color 0.3s;
}
.info-card:hover { border-color: rgba(255,255,255,0.18); }
.info-card-icon { font-size: 2rem; margin-bottom: 1rem; display: block; color: rgba(255,255,255,0.6); }
.info-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 0.8rem;
}
.info-card-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.85;
  margin: 0;
}

.specs-section {
  padding: 80px 0;
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.spec-row:last-child { border-bottom: none; }
.spec-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.spec-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #fff;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
}
.material-item { background: #0d0d0d; padding: 1.5rem 1.2rem; text-align: center; }
.material-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 0.3rem;
}
.material-detail {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
}

.process-section { padding: 80px 0; background: #0a0a0a; }
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.process-step:last-child { border-bottom: none; }
.process-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  min-width: 3rem;
}
.process-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 0.5rem;
}
.process-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.85;
  margin: 0;
}

.formats-section { padding: 60px 0; background: #080808; }
.format-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  margin: 0.3rem;
  transition: border-color 0.2s, background 0.2s;
}
.format-tag:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }
.format-tag.preferred { border-color: rgba(255,200,0,0.4); color: #ffc800; }

.cta-section { padding: 100px 0; background: #0a0a0a; text-align: center; }
.cta-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  max-width: 480px;
  margin: 1rem auto 2rem;
  line-height: 1.85;
}

.breadcrumb-bar {
  padding: 1rem 0;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-top: 56px;
}
.breadcrumb-bar a,
.breadcrumb-bar span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-bar a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb-bar .sep { margin: 0 0.6rem; opacity: 0.3; }

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  width: calc(100% - 3rem);
  max-width: 680px;
  background: rgba(12,12,12,0.96);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  animation: cookieSlideUp 0.4s ease;
}
.cookie-banner.cookie-hide {
  animation: cookieSlideDown 0.35s ease forwards;
}
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes cookieSlideDown {
  from { opacity: 1; transform: translateX(-50%) translateY(0); }
  to   { opacity: 0; transform: translateX(-50%) translateY(20px); }
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  flex: 1;
  min-width: 0;
}
.cookie-text i {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.cookie-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 0;
}
.cookie-text a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-text a:hover { color: #fff; }
.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cookie-decline {
  background: transparent;
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
}
.cookie-decline:hover {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.cookie-accept {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.cookie-accept:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}

/* ── Accesibilitate ── */
.wa-btn {
  position: fixed;
  bottom: 5rem;
  right: 1.8rem;
  z-index: 9999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(15,15,15,0.92);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  text-decoration: none;
}
.wa-btn:hover {
  border-color: rgba(37,211,102,0.7);
  background: rgba(37,211,102,0.1);
  transform: scale(1.08);
}

.a11y-btn {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 9999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(15,15,15,0.92);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.a11y-btn:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  transform: scale(1.08);
}
.a11y-btn.active {
  border-color: rgba(255,200,0,0.5);
  color: rgba(255,200,0,0.9);
  background: rgba(255,200,0,0.08);
}
.a11y-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Text mare */
body.text-large p,
body.text-large li,
body.text-large .info-card-text,
body.text-large .process-text,
body.text-large .spec-name,
body.text-large .spec-value,
body.text-large .despre-list li,
body.text-large .despre-tech-text,
body.text-large .footer-links a,
body.text-large .footer-contact a,
body.text-large .footer-contact span,
body.text-large .cta-desc,
body.text-large .service-hero-desc,
body.text-large .despre-intro,
body.text-large .termeni-content p,
body.text-large .termeni-content li {
  font-size: 1rem !important;
  line-height: 2 !important;
}

/* ── Locație ── */
.locatie-section {
  padding: 100px 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.locatie-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  height: 440px;
}
.locatie-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.75) brightness(0.88);
}
.locatie-detalii {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 2rem;
}
.locatie-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.locatie-item i {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.locatie-item p,
.locatie-item a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  line-height: 1.75;
  text-decoration: none;
  transition: color 0.2s;
}
.locatie-item a:hover { color: #fff; }
.locatie-directii-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2rem;
  padding: 0.75rem 1.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.22s, border-color 0.22s, transform 0.15s;
}
.locatie-directii-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}
.locatie-directii-btn i { font-size: 1rem; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .navbar.scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background-color: rgba(10,10,10,0.92) !important;
  }
  .hala-3d-frame { height: 48vh; }
  .hala-3d-frame iframe { min-height: 48vh; }
  .section-block .hero-btn { display: block; margin: 1rem auto 0; text-align: center; }
  .hero { background: url('../img/victorproduction-bg.gif') center/cover no-repeat; }
  .hero-keywords { opacity: 0.25; font-size: 0.38rem; }
  .brand { font-size: 2.2rem; letter-spacing: 0.1em; text-align: center; width: 100%; }
  .service-hero { padding: 120px 0 70px; }
  .service-hero-stats { gap: 1.2rem; }
  .stat-value { font-size: 1.8rem; }
  .spec-row { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
  .locatie-map-wrap { height: 300px; }
  .wa-btn, .a11y-btn { right: 1rem; }

  /* Despre — centrat pe mobile */
  #despre .col-md-6 {
    text-align: center;
  }
  .despre-col-title { text-align: center; }
  .despre-list {
    align-items: center;
  }
  .despre-list li {
    border-left: none;
    padding-left: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding-bottom: 0.5rem;
    width: 100%;
    text-align: center;
  }
  .despre-list li:last-child { border-bottom: none; }
  .despre-tech-text { text-align: center; }
}
