@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --green-deep:    #1B4332;
  --green-mid:     #2D6A4F;
  --green-light:   #40916C;
  --gold:          #C8963E;
  --gold-light:    #E2B96B;
  --earth:         #5C3D11;
  --bg:            #F8F6F1;
  --bg-card:       #FFFFFF;
  --bg-dark:       #111E17;
  --text:          #1A1A1A;
  --text-muted:    #6B7280;
  --border:        #DDD8CE;
  --shadow:        0 2px 16px rgba(0,0,0,0.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.12);
  --radius:        8px;
  --radius-lg:     16px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ───────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--green-deep);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { color: var(--text-muted); }

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

/* ─── LAYOUT HELPERS ───────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section--alt {
  background: var(--bg-dark);
}
.section--tinted {
  background: #EEF2EC;
}

/* ─── NAVIGATION ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(27, 67, 50, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav__logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
}
.nav__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}
.nav__logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}
.nav__logo-name span {
  color: var(--gold);
}
.nav__logo-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
}
.nav__cta {
  background: var(--gold);
  color: var(--green-deep) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav__cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(15,38,24,0.92) 0%, rgba(27,67,50,0.78) 50%, rgba(10,20,14,0.88) 100%),
    url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=1600&q=80') center/cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero__badge {
  display: inline-block;
  background: rgba(200, 150, 62, 0.18);
  border: 1px solid rgba(200, 150, 62, 0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero__title {
  color: #FFFFFF;
  margin-bottom: 24px;
}
.hero__title span {
  color: var(--gold);
}
.hero__desc {
  font-size: 1.28rem;
  color: rgba(255,255,255,0.90);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}
.btn--primary {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,150,62,0.4);
}
.btn--outline {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn--green {
  background: var(--green-deep);
  color: #fff;
  border-color: var(--green-deep);
}
.btn--green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,67,50,0.4);
}
.hero__stats {
  position: absolute;
  bottom: 140px;
  right: 0;
  display: flex;
  gap: 1px;
  z-index: 1;
}
.hero__stat {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px 28px;
  text-align: center;
}
.hero__stat:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.hero__stat:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.hero__stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── SECTION HEADER ───────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header__tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
}

/* ─── ABOUT ────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__image-wrap {
  position: relative;
}
.about__image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about__image-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--green-deep);
  color: #fff;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about__image-card strong {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.about__image-card span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about__content h2 { margin-bottom: 20px; }
.about__content p  { margin-bottom: 24px; font-size: 1.05rem; }
.about__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.about__list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: var(--green-mid);
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── STATS BAR ────────────────────────────────────── */
.stats-bar {
  background: var(--green-deep);
  padding: 56px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stats-bar__item {
  background: var(--green-deep);
  padding: 36px 24px;
  text-align: center;
}
.stats-bar__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stats-bar__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ─── SERVICES ─────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--green-light);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.18rem; }
.service-card p  { font-size: 0.93rem; }

/* ─── TECHNOLOGY ───────────────────────────────────── */
.tech__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tech-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: background 0.3s, border-color 0.3s;
}
.tech-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--gold);
}
.tech-card__tag {
  display: inline-block;
  background: rgba(200,150,62,0.2);
  border: 1px solid rgba(200,150,62,0.35);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.tech-card h3 {
  color: #FFFFFF;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.tech-card p {
  color: rgba(255,255,255,0.58);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ─── EQUIPMENT ────────────────────────────────────── */
.equipment__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.equipment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.equipment-card:hover {
  box-shadow: var(--shadow-md);
}
.equipment-card__brand {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.equipment-card__brand-badge {
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge--case {
  background: #D2232A;
  color: #fff;
}
.badge--nh {
  background: #004A97;
  color: #fff;
}
.equipment-card__brand h3 {
  font-size: 1.2rem;
}
.equipment-card__body {
  padding: 24px 28px;
}
.equipment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.equipment-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-muted);
  padding: 10px 14px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.equipment-list__dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--green-light);
}

/* ─── FOMO BANNER ──────────────────────────────────── */
.fomo-banner {
  background: var(--gold);
  padding: 72px 0;
}
.fomo-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.fomo-banner__text {
  flex: 1;
}
.fomo-banner__tag {
  display: inline-block;
  background: rgba(0,0,0,0.12);
  color: #1a1a0e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.fomo-banner__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #1a1a0e;
  margin-bottom: 16px;
  line-height: 1.25;
}
.fomo-banner__title em {
  font-style: italic;
  color: var(--green-deep);
}
.fomo-banner__desc {
  font-size: 1rem;
  color: rgba(20,20,10,0.75);
  max-width: 560px;
  line-height: 1.7;
}
.fomo-banner__cta {
  flex-shrink: 0;
  background: var(--green-deep);
  color: #fff;
  font-size: 1rem;
  padding: 16px 32px;
  white-space: nowrap;
}
.fomo-banner__cta:hover {
  background: var(--green-mid);
}
@media (max-width: 768px) {
  .fomo-banner__inner { flex-direction: column; text-align: center; }
  .fomo-banner__desc  { max-width: 100%; }
}

/* ─── CTA BANNER ───────────────────────────────────── */
.cta-banner {
  background: linear-gradient(120deg, var(--green-deep) 0%, var(--green-mid) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 36px;
}

/* ─── FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.55);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
.footer__brand-name span { color: var(--gold); }
.footer__logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.footer__brand-desc {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.88rem;
}
.footer__contact-item + .footer__contact-item { margin-top: 16px; }
.footer__contact-item span:first-child {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer__contact-item span:last-child {
  color: rgba(255,255,255,0.7);
}
.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer__designed-by {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
}
.footer__designed-by img {
  height: 36px;
  width: auto;
  background: var(--bg-dark);
  mix-blend-mode: lighten;
  border-radius: 4px;
}

/* ─── CONTACT PAGE ─────────────────────────────────── */
.contact-hero {
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-mid) 100%);
  padding: 160px 0 80px;
  text-align: center;
}
.contact-hero h1 { color: #fff; margin-bottom: 16px; }
.contact-hero p  { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 480px; margin: 0 auto; }

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info__icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info__text label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-mid);
  margin-bottom: 4px;
}
.contact-info__text span {
  font-size: 0.97rem;
  color: var(--text);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  margin-bottom: 8px;
}
.contact-form > p {
  margin-bottom: 32px;
  font-size: 0.93rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.15);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }

/* ─── PAGE HERO ────────────────────────────────────── */
.page-hero {
  padding: 148px 0 72px;
  text-align: center;
}
.page-hero--green {
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-mid) 100%);
}
.page-hero--dark {
  background: linear-gradient(160deg, var(--bg-dark) 0%, #1B3A2A 100%);
}
.page-hero h1 { color: #fff; margin-top: 14px; }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 520px; margin: 16px auto 0; }

/* ─── SPOTLIGHT (index) ─────────────────────────────── */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.spotlight-card {
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  border: 1px solid var(--border);
}
.spotlight-card--dark {
  background: var(--bg-dark);
  border-color: rgba(255,255,255,0.08);
}
.spotlight-card--light {
  background: var(--bg-card);
}
.spotlight-card__badge {
  display: inline-block;
  padding: 7px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.spotlight-card__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 8px;
}
.spotlight-card--light .spotlight-card__title { color: var(--green-deep); }
.spotlight-card__sub {
  font-size: 0.88rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.spotlight-card--light .spotlight-card__sub { color: var(--green-mid); }
.spotlight-card__desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}
.spotlight-card--light .spotlight-card__desc { color: var(--text-muted); }
.spotlight-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

/* ─── SPEC ITEMS ────────────────────────────────────── */
.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  gap: 8px;
}
.spec-item--light {
  background: var(--bg);
  border-color: var(--border);
}
.spec-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.spec-item--light .spec-label { color: var(--text-muted); }
.spec-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: right;
}
.spec-item--light .spec-val { color: var(--text); }

/* ─── VALUES GRID ───────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.value-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}
.value-card__icon svg {
  width: 24px;
  height: 24px;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p  { font-size: 0.9rem; }

/* ─── INFO SPLIT ────────────────────────────────────── */
.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.info-split__map { }
.map-placeholder {
  background: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.map-placeholder p { font-size: 0.9rem; }

/* ─── BADGE MZURI ───────────────────────────────────── */
.badge--mzuri {
  background: #2E7D32;
  color: #fff;
}

/* ─── SERVICE DETAIL ────────────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.service-detail--reverse {
  grid-template-columns: 1fr 340px;
}
.service-detail__content h2 { margin-bottom: 16px; }
.service-detail__content p  { margin-bottom: 16px; font-size: 1.02rem; }
.service-detail__tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tag--gold {
  background: rgba(200,150,62,0.15);
  border: 1px solid rgba(200,150,62,0.4);
  color: #8B6914;
}
.tag--green {
  background: rgba(27,67,50,0.1);
  border: 1px solid rgba(27,67,50,0.25);
  color: var(--green-deep);
}
.service-aside-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-aside-card__header {
  background: var(--green-deep);
  color: #fff;
  padding: 14px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.service-aside-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.services__grid--4 {
  grid-template-columns: repeat(3, 1fr);
}

/* ─── PROCESS STEPS ─────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}
.process-step__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}
.process-step h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.process-step p  { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* ─── TECH DETAIL ───────────────────────────────────── */
.tech-detail {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
}
.tech-detail--reverse {
  grid-template-columns: 200px 1fr;
}
.tech-detail__icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.tech-detail__icon {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-deep), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.tech-detail__tag {
  display: inline-block;
  background: rgba(27,67,50,0.1);
  border: 1px solid rgba(27,67,50,0.25);
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.tech-detail__content h2 { margin-bottom: 16px; }
.tech-detail__content p  { font-size: 1.02rem; margin-bottom: 16px; }
.tech-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.tech-benefit {
  text-align: center;
}
.tech-benefit strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 6px;
}
.tech-benefit span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── STRIP DIAGRAM ─────────────────────────────────── */
.tech-visual { margin: 28px 0; }
.strip-diagram {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.strip-diagram__row {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.strip-block {
  flex: 1;
  padding: 16px 8px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.strip-block--intact {
  background: #EEF2EC;
  color: var(--green-mid);
  border: 1px solid #C8DBC0;
  flex: 2;
}
.strip-block--worked {
  background: var(--green-deep);
  color: var(--gold-light);
  border: 1px solid var(--green-mid);
  flex: 1;
}
.strip-diagram__caption {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ─── COMPARISON TABLE ──────────────────────────────── */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comparison-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.comparison-table th.col--highlight {
  background: rgba(200,150,62,0.15);
  color: var(--gold-light);
}
.comparison-table td {
  padding: 14px 20px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.comparison-table td.col--highlight {
  background: rgba(200,150,62,0.07);
  color: var(--gold-light);
  font-weight: 600;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(255,255,255,0.03); }
.comparison-table tr:hover td.col--highlight { background: rgba(200,150,62,0.12); }

/* ─── STAR MACHINE ──────────────────────────────────── */
.star-machine {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.star-machine--alt {
  background: var(--bg-card);
  border-color: var(--border);
}
.star-machine__header {
  padding: 28px 40px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.star-badge {
  display: inline-block;
  background: rgba(200,150,62,0.2);
  border: 1px solid rgba(200,150,62,0.4);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.star-badge--gold {
  background: rgba(46,125,50,0.15);
  border-color: rgba(46,125,50,0.4);
  color: #4CAF50;
}
.star-machine__body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
}
.star-machine__content {
  padding: 28px 40px 40px;
}
.star-machine__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 8px;
}
.star-machine--alt .star-machine__title { color: var(--green-deep); }
.star-machine__subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.star-machine--alt .star-machine__subtitle { color: var(--green-mid); }
.star-machine__content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  line-height: 1.75;
}
.star-machine--alt .star-machine__content p { color: var(--text-muted); }
.star-machine__specs {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.star-machine--alt .star-machine__specs { border-top-color: var(--border); }
.spec-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.spec-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
}
.star-machine--alt .spec-block {
  background: var(--bg);
  border-color: var(--border);
}
.spec-block__label {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.35);
}
.star-machine--alt .spec-block__label { color: var(--text-muted); }
.spec-block__val {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.star-machine--alt .spec-block__val { color: var(--text); }
.star-machine__sidebar {
  padding: 40px 28px 40px 0;
  display: flex;
  flex-direction: column;
}
.star-sidebar-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.star-machine--alt .star-sidebar-card {
  background: var(--bg);
  border-color: var(--border);
}
.star-sidebar-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
}
.star-machine--alt .star-sidebar-card h4 { color: var(--green-mid); }
.star-sidebar-card--gold {
  background: rgba(200,150,62,0.12) !important;
  border-color: rgba(200,150,62,0.3) !important;
}
.star-sidebar-card--green {
  background: var(--green-deep) !important;
  border-color: var(--green-mid) !important;
}

/* ─── STAR MACHINE PHOTO ────────────────────────────── */
.star-machine__photo {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.star-machine__photo--light {
  border-top-color: var(--border);
}
.star-machine__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.star-machine__photo:hover .star-machine__photo-img {
  transform: scale(1.03);
}
.star-machine__photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 28px;
  background: linear-gradient(to top, rgba(10,20,14,0.88) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.star-machine__photo-overlay--light {
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
}
.star-machine__photo-overlay > span:first-child {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.photo-note {
  font-size: 0.72rem !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.45) !important;
  border: 1px dashed rgba(255,255,255,0.25);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ─── GALLERY PAGE ──────────────────────────────────── */
.gallery-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-filter {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.gallery-filter:hover {
  border-color: var(--green-mid);
  color: var(--green-mid);
}
.gallery-filter.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-item__inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.gallery-item__inner img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-item__inner img {
  transform: scale(1.04);
}
.gallery-item__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(to top, rgba(10,20,14,0.85) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}
.gallery-item__caption {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}
.gallery-item__cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  background: rgba(200,150,62,0.2);
  border: 1px solid rgba(200,150,62,0.35);
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Video items */
.gallery-item--video .gallery-item__inner {
  position: relative;
  background: #0E1A12;
  min-height: 200px;
}
.gallery-item--video video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 340px;
  object-fit: cover;
}
.gallery-item__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  pointer-events: none;
}
.gallery-item--video:hover .gallery-item__play {
  background: rgba(200,150,62,0.75);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}
.gallery-item__play svg {
  width: 22px; height: 22px;
  fill: #fff;
  margin-left: 3px;
}

/* Placeholder slot */
.gallery-placeholder .gallery-item__inner {
  background: var(--bg);
}
.gallery-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 200px;
  border: 2px dashed var(--border) !important;
  cursor: default !important;
}
.gallery-placeholder__inner p {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.gallery-hint {
  margin-top: 40px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-hint code {
  background: #EEF2EC;
  color: var(--green-deep);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* ─── LIGHTBOX ──────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5,12,8,0.95);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox--open {
  display: flex;
}
.lightbox__content {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}
.lightbox__content img {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}
.lightbox__caption {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-top: 16px;
}
.lightbox__close {
  position: fixed;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2001;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }
.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2001;
}
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.18); }

/* ─── HERO FULL IMAGE (desktop only) ────────────────── */
@media (min-width: 1025px) {
  .hero--fullimg {
    background-color: #08120D !important;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
}

/* ─── SERVICE ROWS (servicii.html) ───────────────────── */
.service-rows {
  display: flex;
  flex-direction: column;
}
.service-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 36px;
  padding: 52px 0;
  border-bottom: 3px solid var(--green-light);
  align-items: start;
}
.service-row:last-child { border-bottom: none; }
.service-row__num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 1;
  line-height: 1;
  text-align: right;
  padding-top: 6px;
}
.service-row__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.service-row__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  color: var(--green-deep);
  font-weight: 700;
  line-height: 1.2;
}
.service-row__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 100px;
}
.badge--primary {
  background: rgba(27,67,50,0.1);
  border: 1px solid rgba(27,67,50,0.22);
  color: var(--green-mid);
}
.badge--accent {
  background: rgba(200,150,62,0.13);
  border: 1px solid rgba(200,150,62,0.38);
  color: #8B6914;
}
.service-row__intro {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 700px;
  line-height: 1.78;
}
.service-row__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.service-row__col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--green-deep);
  margin-bottom: 12px;
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}
.service-row__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-row__col li {
  font-size: 0.91rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
}
.service-row__col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-light);
}
.service-row__meta {
  display: flex;
  gap: 28px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.service-row__meta-item {
  font-size: 0.83rem;
  color: var(--text-muted);
}
.service-row__meta-item strong {
  color: var(--text);
  font-weight: 600;
}

/* ─── EQUIPMENT FILTER + ALTERNATING LAYOUT ──────────── */
.equip-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.equip-filter {
  padding: 10px 26px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.equip-filter:hover {
  border-color: var(--green-mid);
  color: var(--green-mid);
}
.equip-filter.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}
.equip-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.equip-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
  min-height: 380px;
}
.equip-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.equip-item--reverse {
  direction: rtl;
}
.equip-item--reverse > * { direction: ltr; }
.equip-item__img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.equip-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.equip-item:hover .equip-item__img img { transform: scale(1.04); }
.equip-item__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #F0F4F1;
  border-right: 2px dashed var(--border);
  color: var(--text-muted);
}
.equip-item--reverse .equip-item__img-placeholder {
  border-right: none;
  border-left: 2px dashed var(--border);
}
.equip-item__img-placeholder svg { opacity: 0.3; }
.equip-item__img-placeholder p  { font-size: 0.82rem; }
.equip-item__content {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.equip-item__brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.equip-item__vedeta {
  display: inline-block;
  background: rgba(200,150,62,0.13);
  border: 1px solid rgba(200,150,62,0.38);
  color: #8B6914;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
}
.equip-item__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--green-deep);
  line-height: 1.1;
  margin-bottom: 6px;
}
.equip-item__subtitle {
  font-size: 0.87rem;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 16px;
}
.equip-item__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 22px;
}
.equip-item__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.equip-item__spec {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.equip-item__spec-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.equip-item__spec-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

/* ─── MOBILE MENU ───────────────────────────────────── */
.nav__links--open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: #0E2B1C;
  padding: 8px 0 20px;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  z-index: 999;
}
.nav__links--open li {
  width: 100%;
}
.nav__links--open a {
  display: block;
  padding: 16px 24px;
  font-size: 0.97rem !important;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 0;
  letter-spacing: 0.5px;
}
.nav__links--open .nav__cta {
  margin: 16px 20px 0;
  display: block;
  text-align: center;
  border-radius: var(--radius);
  padding: 14px 20px !important;
}
.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav__hamburger span {
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── RESPONSIVE — TABLETA MARE (max 1200px) ─────────── */
@media (max-width: 1200px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .equip-item__content { padding: 32px 32px; }
  .equip-item__specs { grid-template-columns: 1fr 1fr; }
  .values-grid          { grid-template-columns: repeat(2, 1fr); }
  .star-machine__body   { grid-template-columns: 1fr; }
  .star-machine__sidebar {
    padding: 0 32px 36px;
    flex-direction: row;
    gap: 16px;
  }
  .star-sidebar-card    { flex: 1; }
  .tech-detail          { grid-template-columns: 140px 1fr; gap: 36px; }
  .process-grid         { grid-template-columns: repeat(2, 1fr); }
  .spotlight-card__specs { grid-template-columns: 1fr 1fr; }
}

/* ─── RESPONSIVE — TABLETA (max 1024px) ──────────────── */
@media (max-width: 1024px) {
  /* equip */
  .equip-item           { grid-template-columns: 1fr; min-height: unset; }
  .equip-item--reverse  { direction: ltr; }
  .equip-item__img      { min-height: 280px; }
  .equip-item__img-placeholder { min-height: 220px; border-right: none; border-bottom: 2px dashed var(--border); }
  .equip-item--reverse .equip-item__img-placeholder { border-left: none; border-bottom: 2px dashed var(--border); }
  .equip-item__content  { padding: 28px 28px; }
  /* service-row */
  .service-row__grid    { grid-template-columns: 1fr; }
  .section              { padding: 72px 0; }
  .container            { padding: 0 20px; }

  /* about */
  .about__grid          { grid-template-columns: 1fr; gap: 40px; }
  .about__image-wrap    { display: none; }

  /* stats */
  .stats-bar__grid      { grid-template-columns: repeat(2, 1fr); }

  /* footer */
  .footer__grid         { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* contact */
  .contact__layout      { grid-template-columns: 1fr; }

  /* homepage spotlight */
  .spotlight-grid       { grid-template-columns: 1fr; }

  /* servicii */
  .service-detail       { grid-template-columns: 1fr; }
  .service-detail .service-detail__aside { order: -1; }
  .services__grid       { grid-template-columns: repeat(2, 1fr); }
  .services__grid--4    { grid-template-columns: repeat(2, 1fr); }

  /* despre */
  .info-split           { grid-template-columns: 1fr; }
  .map-placeholder      { height: 260px; }

  /* tehnologie */
  .tech-benefits        { grid-template-columns: repeat(2, 1fr); }
  .tech-detail          { grid-template-columns: 1fr; gap: 24px; }
  .tech-detail__icon-wrap {
    flex-direction: row;
    justify-content: flex-start;
    position: static;
  }
  .tech__grid           { grid-template-columns: 1fr; }

  /* utilaje */
  .spec-row             { grid-template-columns: 1fr; }
  .equipment__grid      { grid-template-columns: 1fr; }
}

/* ─── RESPONSIVE — TELEFON (max 768px) ───────────────── */
@media (max-width: 768px) {
  /* gallery */
  .gallery-grid         { grid-template-columns: 1fr; }
  .gallery-item__inner img { height: 240px; }
  .lightbox__prev       { left: 8px; width: 40px; height: 40px; font-size: 1.5rem; }
  .lightbox__next       { right: 8px; width: 40px; height: 40px; font-size: 1.5rem; }
  /* star machine photo */
  .star-machine__photo  { height: 260px; }
  .star-machine__photo-overlay { flex-direction: column; align-items: flex-start; gap: 6px; }
  .photo-note           { white-space: normal; }
  .section              { padding: 56px 0; }
  .container            { padding: 0 16px; }

  /* nav */
  .nav__links           { display: none; }
  .nav__hamburger       { display: flex; }

  /* hero */
  .hero                 { min-height: 100svh; padding: 88px 0 48px; align-items: flex-end; }
  .hero__content        { padding-bottom: 40px; }
  .hero__stats          { display: none; }
  .hero__badge          { font-size: 0.7rem; padding: 5px 12px; }
  .hero__desc           { font-size: 1rem; }
  .hero__actions        { gap: 12px; }

  /* page hero */
  .page-hero            { padding: 112px 0 52px; }
  .page-hero h1         { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .page-hero p          { font-size: 0.97rem; }

  /* section header */
  .section-header       { margin-bottom: 40px; }

  /* stats bar */
  .stats-bar            { padding: 40px 0; }
  .stats-bar__grid      { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__num       { font-size: 2rem; }

  /* about */
  .about__grid          { grid-template-columns: 1fr; }
  .about__image-wrap    { display: none; }
  .about__content h2    { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* services */
  .services__grid       { grid-template-columns: 1fr; }
  .services__grid--4    { grid-template-columns: 1fr; }
  .service-card         { padding: 28px 22px; }

  /* tech */
  .tech__grid           { grid-template-columns: 1fr; }
  .tech-card            { padding: 28px 24px; }
  .tech-benefits        { grid-template-columns: 1fr 1fr; padding: 16px; gap: 10px; }
  .tech-benefit strong  { font-size: 1.3rem; }
  .tech-detail          { grid-template-columns: 1fr; gap: 20px; }
  .tech-detail__icon-wrap { flex-direction: row; justify-content: flex-start; position: static; }
  .tech-detail__icon    { width: 72px; height: 72px; }
  .tech-detail__icon svg { width: 36px; height: 36px; }
  .strip-diagram__row   { flex-wrap: wrap; }
  .strip-block          { flex: 1 1 40%; }

  /* comparison table */
  .comparison-table-wrap { border-radius: var(--radius); }
  .comparison-table     { font-size: 0.8rem; min-width: 500px; }
  .comparison-table th,
  .comparison-table td  { padding: 10px 10px; }

  /* equipment */
  .equipment__grid      { grid-template-columns: 1fr; }

  /* spotlight (index) */
  .spotlight-grid       { grid-template-columns: 1fr; }
  .spotlight-card       { padding: 28px 24px; }
  .spotlight-card__specs { grid-template-columns: 1fr; }

  /* values */
  .values-grid          { grid-template-columns: 1fr 1fr; gap: 16px; }
  .value-card           { padding: 24px 18px; }

  /* info split */
  .info-split           { grid-template-columns: 1fr; gap: 40px; }
  .map-placeholder      { height: 220px; }

  /* service detail */
  .service-detail       { grid-template-columns: 1fr; gap: 24px; }

  /* process */
  .process-grid         { grid-template-columns: 1fr 1fr; }
  .process-step         { padding: 24px 18px; }
  .process-step__num    { font-size: 1.8rem; }

  /* star machine */
  .star-machine__header { padding: 20px 20px 0; flex-wrap: wrap; gap: 10px; }
  .star-machine__body   { grid-template-columns: 1fr; }
  .star-machine__content { padding: 18px 20px 28px; }
  .star-machine__title  { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .star-machine__sidebar { padding: 0 20px 28px; flex-direction: column; gap: 12px; }
  .spec-row             { grid-template-columns: 1fr; gap: 8px; }
  .spec-block           { padding: 10px 14px; }

  /* equip mobile */
  .equip-item__specs    { grid-template-columns: 1fr; }
  .equip-item__content  { padding: 22px 20px; }
  .equip-item__img      { min-height: 240px; }
  .equip-item__img-placeholder { min-height: 180px; }
  /* service-row mobile */
  .service-row          { grid-template-columns: 1fr; gap: 0; }
  .service-row__num     { display: none; }
  .service-row          { padding: 36px 0; }
  .service-row__meta    { flex-direction: column; gap: 8px; }
  /* cta banner */
  .cta-banner           { padding: 56px 0; }
  .cta-banner h2        { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* footer */
  .footer               { padding: 52px 0 0; }
  .footer__grid         { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .footer__bottom       { flex-direction: column; gap: 8px; text-align: center; font-size: 0.78rem; }

  /* contact */
  .contact__layout      { gap: 32px; }
  .contact-form         { padding: 28px 20px; }
  .form-row             { grid-template-columns: 1fr; }
}

/* ─── RESPONSIVE — TELEFON MIC (max 480px) ───────────── */
@media (max-width: 480px) {
  .container            { padding: 0 14px; }
  .hero__actions        { flex-direction: column; }
  .btn                  { justify-content: center; width: 100%; }
  .hero__actions .btn   { max-width: 340px; }
  .values-grid          { grid-template-columns: 1fr; }
  .process-grid         { grid-template-columns: 1fr; }
  .stats-bar__grid      { grid-template-columns: 1fr 1fr; }
  .stats-bar__item      { padding: 24px 12px; }
  .tech-benefits        { grid-template-columns: 1fr 1fr; }
  .spotlight-card__specs { grid-template-columns: 1fr; }
  .spec-item            { flex-direction: column; align-items: flex-start; gap: 2px; }
  .spec-val             { text-align: left; }
  .contact-form h3      { font-size: 1.3rem; }
  .hero__badge          { font-size: 0.65rem; }
  .nav__logo-sub        { display: none; }
}
