/* =====================================================
   FORTEX — style.css
   =====================================================
   1.  CSS Variables & Reset
   2.  Typography
   3.  Utilities & Animations
   4.  Navbar
   5.  Hero
   6.  Despre Noi
   7.  Servicii
   8.  Clienți
   9.  Portofoliu
   10. Parteneri
   11. Contact
   12. Footer
   13. Lightbox
   14. Toast Notifications
   15. Media Queries (mobile-first → desktop)
   ===================================================== */

/* =====================================================
   1. CSS VARIABLES & RESET
   ===================================================== */
:root {
  --color-black:      #1A1A1A;
  --color-dark:       #222222;
  --color-dark-card:  #2a2a2a;
  --color-gold:       #E8A020;
  --color-gold-dark:  #c8871a;
  --color-white:      #FFFFFF;
  --color-gray-light: #F5F5F5;
  --color-gray-mid:   #888888;
  --color-gray-dark:  #444444;

  --font-display:  'Bebas Neue', sans-serif;
  --font-label:    'Barlow Condensed', sans-serif;
  --font-body:     'DM Sans', sans-serif;

  --nav-height:    72px;
  --section-pad:   80px;
  --radius:        4px;
  --transition:    0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-dark);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* =====================================================
   2. TYPOGRAPHY
   ===================================================== */
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.section__label::before {
  content: '';
  display: none;
  width: 3px;
  height: 18px;
  background: var(--color-gold);
  border-radius: 2px;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .section__label::before {
    display: inline-block;
  }
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--color-white);
  margin-bottom: 16px;
}

.section__title--dark {
  color: var(--color-black);
}

.section__subtitle {
  font-size: 16px;
  color: var(--color-gray-mid);
  max-width: 560px;
  line-height: 1.7;
}

.section__subtitle--center {
  text-align: center;
  margin: 0 auto 48px;
}

/* =====================================================
   3. UTILITIES & ANIMATIONS
   ===================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--dark {
  background-color: var(--color-dark);
}

.section--darker {
  background-color: var(--color-black);
}

.section--light {
  background-color: var(--color-gray-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-black);
}

.btn--primary:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn--outline:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  padding: 12px 28px;
}

.btn--ghost:hover {
  background: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-2px);
}

.btn--loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--up    { transform: translateY(30px); }
.reveal--left  { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--scale { transform: scale(0.95); }

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-5 { transition-delay: 0.5s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =====================================================
   4. NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.navbar--scrolled {
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 42px;
  width: auto;
}

.navbar__menu {
  display: none;
  align-items: center;
  gap: 8px;
}

.navbar__link {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 12px;
  position: relative;
  transition: color var(--transition);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--color-white);
}

.navbar__link:hover::after,
.navbar__link--active::after {
  transform: scaleX(1);
}

.navbar__cta {
  background: var(--color-gold);
  color: var(--color-black);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  margin-left: 12px;
}

.navbar__cta:hover {
  background: var(--color-gold-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.navbar__hamburger span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}

.navbar__hamburger--open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.navbar__hamburger--open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__hamburger--open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile overlay */
.navbar__overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.navbar__overlay--open {
  opacity: 1;
  pointer-events: all;
}

.navbar__overlay-link {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 2px;
  color: var(--color-white);
  transition: color var(--transition);
}

.navbar__overlay-link:hover {
  color: var(--color-gold);
}

/* =====================================================
   5. HERO
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  /* Placeholder gradient — înlocuiește cu hero-bg.jpg */
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #2a1f0a 100%);
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.hero__watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.mt-0{
  margin-top: 0 !important;
}
.hero__watermark img {
  width: 70%;
  max-width: 100%;
  opacity: 0.04;
  filter: brightness(10);
}

.hero__content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
}

.hero__inner {
  max-width: 760px;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero__badge::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero__title span {
  color: var(--color-gold);
}

.hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 50px;
  right: 24px;
  left: auto;
  transform: none;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--color-gold));
  animation: pulse 2s ease infinite;
}

.hero__scroll-label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  transform: rotate(90deg);
  transform-origin: center;
  margin-top: 8px;
  white-space: nowrap;
}

/* Stats bar */
.stats-bar {
  position: relative;
  z-index: 3;
  background: rgba(232, 160, 32, 0.12);
  border-top: 1px solid rgba(232, 160, 32, 0.25);
  backdrop-filter: blur(8px);
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.stats-bar__item {
  padding: 20px 24px;
  text-align: center;
  position: relative;
}

.stats-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(232,160,32,0.3);
}

.stats-bar__number {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--color-gold);
  letter-spacing: 1px;
  display: block;
}

.stats-bar__label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* =====================================================
   6. DESPRE NOI
   ===================================================== */
.despre {
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.despre__watermark {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.despre__watermark img {
  width: 100%;
  max-width: 900px;
  opacity: 0.03;
}

.despre__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.despre__text {}

.despre__text .section__subtitle {
  max-width: 100%;
  margin-bottom: 16px;
}

.despre__paragraph {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}

.despre__list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.despre__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.despre__list-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-gold);
}

.despre__image {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.despre__image-wrap {
  position: relative;
}

.despre__image-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.despre__image-secondary {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.despre__image-badge {
  position: absolute;
  top: 24px;
  left: -8px;
  background: var(--color-gold);
  color: var(--color-black);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  padding: 10px 20px;
}

.despre__text .btn--ghost {
  margin-top: 36px;
}

.despre__counters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.counter__item {
  text-align: center;
  padding: 20px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
}

.counter__number {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--color-gold);
  letter-spacing: 1px;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.counter__label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gray-mid);
}

.counter__label--small {
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: 1px;
  text-transform: none;
  hyphens: auto;
}

.despre__why-heading {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--color-black);
  margin-top: 32px;
  margin-bottom: 16px;
  text-transform: none;
}

.despre__performanta-title {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-gray-mid);
  margin-top: 40px;
  margin-bottom: 12px;
}

/* =====================================================
   7. SERVICII
   ===================================================== */
.servicii {
  background: var(--color-black);
  text-align: center;
}

.servicii__header {
  margin-bottom: 56px;
}

.servicii__header .section__title,
.servicii__header .section__subtitle {
  display: block;
  text-align: center;
}

/* inline-flex păstrează gap-ul între bara ::before și text (display:block îl elimina) */
.servicii__header .section__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-left: auto;
  margin-right: auto;
}

.servicii__header .section__subtitle {
  margin: 0 auto;
}

.servicii__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.servicii__card {
  background: var(--color-dark-card);
  padding: 24px 20px;
  text-align: left;
  position: relative;
  border-left: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  overflow: hidden;
}

.servicii__card--full {
  grid-column: 1 / -1;
}

.servicii__card-watermark {
  position: absolute;
  top: 55px;
  right: -180px;
  width: 340px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  display: none;
}

@media (min-width: 768px) {
  .servicii__card {
    padding: 36px 28px;
  }

  .servicii__card-watermark {
    display: block;
  }
}

.servicii__card-watermark img {
  width: 100%;
  height: auto;
  opacity: 0.08;
}

.servicii__card:hover .servicii__card-watermark {
  opacity: 1;
}

.servicii__card > * {
  position: relative;
  z-index: 1;
}

.servicii__card:hover {
  border-left-color: var(--color-gold);
  box-shadow: 0 0 0 1px rgba(232,160,32,0.15), 0 8px 32px rgba(0,0,0,0.35);
}

.servicii__card-number {
  font-family: var(--font-display);
  font-size: 64px;
  color: rgba(232,160,32,0.15);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 2px;
  transition: color var(--transition);
}

.servicii__card:hover .servicii__card-number {
  color: rgba(232,160,32,0.3);
}

.servicii__card-icon {
  width: 48px;
  height: 48px;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.servicii__card-title {
  font-family: var(--font-label);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-white);
  margin-bottom: 10px;
}

.servicii__card-text {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.servicii__card-btn {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
  background: none;
  padding: 0;
}

.servicii__card-btn:hover {
  gap: 10px;
}

/* Service detail expand */
.servicii__card-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.servicii__card-detail--open {
  max-height: 900px;
}

.servicii__card-detail-inner {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 20px;
}

.servicii__card-detail-lead {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}

.servicii__card-detail-partners {
  margin-top: 12px;
}

.servicii__card-detail-text {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 16px;
}

.servicii__card-detail-list {
  list-style: none;
  padding: 0;
}

.servicii__card-detail-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.servicii__card-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 2px;
  background: var(--color-gold);
}

/* =====================================================
   8. CLIENȚI
   ===================================================== */
.clienti {
  background: var(--color-dark);
  text-align: center;
}

.clienti__header {
  margin-bottom: 56px;
}

.clienti__header .section__label {
  justify-content: center;
}

.clienti__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.clienti__logo {
  background: rgba(255,255,255,0.03);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.2);
  filter: grayscale(100%) opacity(0.5);
  transition: filter var(--transition), color var(--transition), background var(--transition);
  border: 1px solid rgba(255,255,255,0.04);
}

.clienti__logo:hover {
  filter: grayscale(0%) opacity(1);
  color: var(--color-gold);
  background: rgba(232,160,32,0.05);
}

.clienti__logo img {
  max-width: 85%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

a.clienti__logo,
a.parteneri__logo {
  text-decoration: none;
  color: inherit;
}

/* =====================================================
   8b. DE CE FORTEX INSTALL
   ===================================================== */
.de-ce {
  text-align: left;
}

.de-ce__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.de-ce__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.de-ce__title {
  text-align: left;
  margin-bottom: 12px;
}

.de-ce__lead {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--color-black);
  margin-bottom: 20px;
}

.de-ce__text-content {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.82);
  margin-bottom: 16px;
}

.de-ce__subheading {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-black);
  margin-bottom: 12px;
  margin-top: 8px;
}

.de-ce__closing {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.82);
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.de-ce .despre__list {
  margin-bottom: 8px;
}

.de-ce__stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.de-ce__image-wrap {
  position: relative;
}

.de-ce__image-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.de-ce__image-main1 {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.de-ce__counters {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.de-ce__counter-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(26,26,26,0.04);
  border: 1px solid rgba(26,26,26,0.08);
  border-radius: var(--radius);
}

.de-ce__counter-number {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--color-gold);
  letter-spacing: 1px;
  line-height: 1;
  min-width: 85px;
  flex-shrink: 0;
}

.de-ce__counter-label {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-black);
  line-height: 1.4;
}

/* =====================================================
   9. PORTOFOLIU
   ===================================================== */
.portofoliu {
  background: var(--color-black);
}

.portofoliu.section--light {
  background: var(--color-gray-light);
}

.portofoliu__header {
  text-align: center;
  margin-bottom: 40px;
}

.portofoliu__header .section__label {
  justify-content: center;
}

.portofoliu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.portofoliu__card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius);
}

.portofoliu__card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.portofoliu__card:hover img {
  transform: scale(1.06);
}

.portofoliu__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.portofoliu__card:hover .portofoliu__card-overlay {
  opacity: 1;
}

.portofoliu__card-category {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.portofoliu__card-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-white);
  letter-spacing: 1px;
}

.portofoliu__card--hidden {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
}

.portofoliu__card--visible {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* =====================================================
   10. PARTENERI
   ===================================================== */
.parteneri {
  background: var(--color-dark);
  overflow: hidden;
  text-align: center;
}

.parteneri__header {
  margin-bottom: 56px;
}

.parteneri__header .section__label {
  justify-content: center;
}

.parteneri__track-wrapper {
  overflow: hidden;
  margin: 0 -24px;
  padding: 0;
}

.parteneri__track-wrapper:hover .parteneri__track {
  animation-play-state: paused;
}

.parteneri__track {
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
}

.parteneri__track--row1 {
  animation: marquee 40s linear infinite;
}

.parteneri__track--row2 {
  animation: marqueeReverse 40s linear infinite;
  margin-top: 4px;
}

.parteneri__logo {
  min-width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 0 32px;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.parteneri__logo:hover {
  color: var(--color-gold);
}

.parteneri__logo img {
  max-width: 148px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* =====================================================
   11. CONTACT
   ===================================================== */
.contact {
  background: var(--color-black);
  background-image: url('../assets/img/dark-section-bg-image.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.contact__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__text-wrapper .section__label {
  justify-content: flex-start;
}

.contact__text-wrapper .section__subtitle {
  max-width: 100%;
}

.contact__tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0;
}

.contact__form-wrapper {}

/* Form */
.contact__form-wrapper .section__label {
  justify-content: flex-start;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.form__input,
.form__textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-white);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--color-gold);
  background: rgba(232,160,32,0.04);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
}

.form__honeypot {
  display: none !important;
}

.form__recaptcha {
  margin: 16px 0;
}

.form__submit {
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.form__submit .btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(26,26,26,0.3);
  border-top-color: var(--color-black);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.form__submit.btn--loading .btn-spinner {
  display: inline-block;
}

/* Checkbox GDPR */
.form__checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}

.form__checkbox {
  width: 18px;
  height: 18px;
  margin-top: 0px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--color-gold);
}

.form__checkbox-label {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
}

.form__legal-link {
  color: var(--color-gold);
  text-decoration: underline;
  transition: color var(--transition);
}

.form__legal-link:hover {
  color: var(--color-white);
}

/* =====================================================
   12. FOOTER
   ===================================================== */
.footer {
  background: var(--color-black);
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--color-gold);
}

.footer__watermark {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.footer__watermark img {
  width: 100%;
  max-width: 900px;
  opacity: 0.05;
}

.footer__top {
  position: relative;
  z-index: 1;
  padding: 64px 0 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer__brand-logo {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 12px;
}

.footer__brand-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 380px;
}

.footer__col-title {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.footer__nav-link {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer__nav-link:hover {
  color: var(--color-white);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col--contact {}

.footer__contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer__contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(232,160,32,0.08);
  border: 1px solid rgba(232,160,32,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

.footer__contact-label {
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0px;
}

.footer__contact-value {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer__contact-value a {
  color: inherit;
  transition: color var(--transition);
}

.footer__contact-value a:hover {
  color: var(--color-gold);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  transition: all var(--transition);
}

.footer__social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(232,160,32,0.08);
}

.footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.footer__copyright {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer__legal-link {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer__legal-link:hover {
  color: var(--color-gold);
}

.footer__legal-separator {
  color: rgba(255,255,255,0.15);
  font-size: 11px;
}

.footer__powered {
  margin-top: 4px;
}

.footer__powered-link {
  display: inline-block;
  line-height: 0;
}

.footer__powered-img {
  width: 150px;
  height: 30px;
  display: block;
}

/* =====================================================
   12b. COOKIE CONSENT (banner stânga, GDPR)
   ===================================================== */
.cookie-consent {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 8500;
  max-width: min(418px, calc(100vw - 32px));
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-12px, 0, 0);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.cookie-consent--visible {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.cookie-consent__inner {
  background: var(--color-black);
  border: 1px solid rgba(232, 160, 32, 0.28);
  border-radius: 8px;
  padding: 20px 20px 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.cookie-consent__title {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 12px;
}

.cookie-consent__text {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 16px;
}

.cookie-consent__text-link {
  color: var(--color-gold);
  text-decoration: none;
}

.cookie-consent__text-link:hover {
  color: #f0b84d;
}

.cookie-consent__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: stretch;
}

.cookie-consent__btn {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
  min-height: 44px;
  padding-left: 14px;
  padding-right: 14px;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.cookie-consent button:focus:not(:focus-visible) {
  outline: none;
}

.cookie-consent button:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* =====================================================
   13. POPUP LEGAL
   ===================================================== */
.legal-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.legal-popup--open {
  display: flex;
}

.legal-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.legal-popup__container {
  position: relative;
  width: min(800px, 100%);
  max-height: 85vh;
  background: var(--color-black);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.legal-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: 50%;
  color: var(--color-gold);
  transition: all var(--transition);
  z-index: 2;
  cursor: pointer;
}

.legal-popup__close:hover {
  background: var(--color-gold);
  color: var(--color-black);
  transform: rotate(90deg);
}

.legal-popup__content {
  padding: 48px 40px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) rgba(255,255,255,0.05);
}

.legal-popup__content::-webkit-scrollbar {
  width: 8px;
}

.legal-popup__content::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
}

.legal-popup__content::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}

.legal-popup__content::-webkit-scrollbar-thumb:hover {
  background: rgba(232,160,32,0.8);
}

/* Stilizare conținut legal */
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--color-white);
  margin-bottom: 32px;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 16px;
}

.legal-content section {
  margin-bottom: 32px;
}

.legal-content h3 {
  font-family: var(--font-label);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.legal-content h4 {
  font-family: var(--font-label);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin: 16px 0 8px;
  letter-spacing: 0.5px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: none;
  padding-left: 0;
  margin: 16px 0;
}

.legal-content ul li {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  padding: 6px 0 6px 24px;
  position: relative;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
}

.legal-content a {
  color: var(--color-gold);
  text-decoration: underline;
  transition: color var(--transition);
}

.legal-content a:hover {
  color: var(--color-white);
}

.legal-content strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* =====================================================
   13. LIGHTBOX
   ===================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.93);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.lightbox--open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__inner {
  position: relative;
  width: min(960px, 100%);
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #1a1a1a;
  border-radius: 6px;
  overflow: hidden;
}

/* Stage: imagine mare + butoane prev/next */
.lightbox__stage {
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  width: 100%;
  max-height: 58vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.15s ease;
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  color: var(--color-white);
  transition: background var(--transition);
  z-index: 2;
}

.lightbox__close:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  color: var(--color-white);
  transition: background var(--transition);
  z-index: 2;
}

.lightbox__prev { left: 12px; }
.lightbox__next { right: 12px; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

/* Meta: titlu, client, locatie, descriere */
.lightbox__meta {
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 4px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.lightbox__category {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  width: 100%;
}

.lightbox__title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-white);
  letter-spacing: 1px;
  width: 100%;
  margin-bottom: 6px;
}

.lightbox__detail {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lightbox__detail strong {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.lightbox__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  width: 100%;
  margin-top: 6px;
  font-style: italic;
}

/* Strip: banda thumbnails jos */
.lightbox__strip {
  display: flex;
  gap: 4px;
  padding: 10px 16px;
  overflow-x: auto;
  background: #111;
  scrollbar-width: thin;
  scrollbar-color: rgba(232,160,32,0.4) transparent;
}

.lightbox__strip::-webkit-scrollbar {
  height: 4px;
}
.lightbox__strip::-webkit-scrollbar-thumb {
  background: rgba(232,160,32,0.4);
  border-radius: 2px;
}

.lightbox__thumb {
  width: 80px;
  height: 56px;
  object-fit: cover;
  border-radius: 2px;
  cursor: pointer;
  opacity: 0.45;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.lightbox__thumb:hover {
  opacity: 0.8;
}

.lightbox__thumb--active {
  opacity: 1;
  border-color: var(--color-gold);
}

/* =====================================================
   14. TOAST NOTIFICATIONS
   ===================================================== */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  min-width: 280px;
  max-width: 380px;
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  pointer-events: all;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.toast--show {
  transform: translateX(0);
  opacity: 1;
}

.toast--success {
  background: #1a2e1a;
  border: 1px solid #2d5a2d;
  color: #7bc47b;
}

.toast--error {
  background: #2e1a1a;
  border: 1px solid #5a2d2d;
  color: #c47b7b;
}

.toast__icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.toast__text {}
.toast__title {
  font-weight: 600;
  margin-bottom: 2px;
}
.toast__msg {
  opacity: 0.8;
  font-size: 13px;
}

/* =====================================================
   15b. LIGHT MODE — secțiuni deschise
   ===================================================== */
.section--light {
  background: var(--color-white);
}

.section--light-gray {
  background: var(--color-gray-light);
}

/* Titluri și subtitluri în secțiuni deschise */
.section--light .section__title,
.section--light-gray .section__title {
  color: var(--color-black);
}

.section--light .section__subtitle,
.section--light-gray .section__subtitle {
  color: #555555;
}

/* Despre Noi — light */
.section--light .despre__paragraph {
  color: #555555;
}

.section--light .despre__list-item {
  color: #333333;
}

.section--light .counter__item {
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
}

.section--light .counter__label {
  color: #777777;
}

.section--light .btn--ghost {
  color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

.section--light .btn--ghost:hover {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

/* Clienți — light-gray */
.section--light-gray .clienti__logo {
  background: var(--color-white);
  color: rgba(26,26,26,0.25);
  border: 1px solid rgba(0,0,0,0.06);
}

.section--light-gray .clienti__logo:hover {
  color: var(--color-gold-dark);
  background: rgba(232,160,32,0.06);
}

/* Parteneri — light-gray */
.section--light-gray .parteneri__logo {
  color: rgba(26,26,26,0.25);
  border-right-color: rgba(0,0,0,0.08);
}

.section--light-gray .parteneri__logo:hover {
  color: var(--color-gold-dark);
}

/* =====================================================
   15. MEDIA QUERIES (mobile-first → desktop)
   ===================================================== */

/* Tablet ≥ 640px */
@media (min-width: 640px) {
  :root {
    --section-pad: 96px;
  }

  .stats-bar__inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .despre__counters {
    grid-template-columns: repeat(3, 1fr);
  }

  .clienti__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .portofoliu__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .portofoliu__card img {
    height: 280px;
  }

  .form__row {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__nav-list {
    display: flex;
    flex-direction: column;
  }

  .footer__contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Desktop ≥ 768px */
@media (min-width: 768px) {
  .navbar__menu {
    display: flex;
  }

  .navbar__hamburger {
    display: none;
  }

  .hero__scroll {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .hero__title {
    font-size: clamp(64px, 9vw, 96px);
  }

  .servicii__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    align-items: start;
  }

  .footer__top {
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Desktop ≥ 1024px */
@media (min-width: 1024px) {
  .despre__grid {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }

  .despre__text {
    flex: 0 0 58%;
  }

  .despre__image {
    flex: 1;
  }

  .de-ce__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }

  .de-ce__text {
    flex: 0 0 58%;
  }

  .de-ce__stats {
    flex: 1;
  }

  .clienti__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .portofoliu__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .portofoliu__card img {
    height: 300px;
  }

  .lightbox__prev { left: -80px; }
  .lightbox__next { right: -80px; }
}

/* Large desktop ≥ 1280px */
@media (min-width: 1280px) {
  :root {
    --section-pad: 120px;
  }

  .hero__title {
    font-size: 60px;
  }
}
