/* ================================================================
   DMS Signalisation — Main Stylesheet
   Industrial Bold / Road Safety Aesthetic
   Palette: #FBBF24 Yellow + #0F172A Dark + #FFFFFF White
   Fonts: Poppins + Space Mono
   ================================================================ */

/* ─── 1. ROOT & RESET ─────────────────────────────────────────── */
:root {
  --orange:       #E8950A;
  --orange-dark:  #C97E08;
  --orange-light: #FDF0CC;
  --dark:         #0F172A;
  --dark-2:       #1E293B;
  --dark-3:       #334155;
  --grey:         #64748B;
  --grey-light:   #CBD5E1;
  --light:        #F8FAFC;
  --white:        #FFFFFF;
  --yellow:       #E8950A;

  --ff-head: 'Poppins', sans-serif;
  --ff-mono: 'Space Mono', monospace;

  --max-w:      1240px;
  --section-py: clamp(5rem, 9vw, 8rem);
  --px:         clamp(1.25rem, 5vw, 3rem);

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 2px 8px rgba(15,23,42,0.07);
  --shadow:    0 8px 28px rgba(15,23,42,0.12);
  --shadow-lg: 0 20px 56px rgba(15,23,42,0.18);

  --radius:    4px;
  --radius-lg: 10px;
  --nav-h:     80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-head);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── 2. TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }

.section-label {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-label::before { content: ''; display: block; width: 2rem; height: 2px; background: var(--orange); }

.section-title { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; color: var(--dark); margin-bottom: 1.25rem; }
.section-title span { color: var(--orange); }
.section-sub { font-size: 1.0625rem; color: var(--grey); max-width: 54ch; line-height: 1.75; }

/* ─── 3. LAYOUT ─────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--px); }
section { padding-block: var(--section-py); }

/* ─── 4. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--ff-head);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }

.btn-primary { background: var(--orange); color: var(--white); border: 2px solid var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,149,10,0.35); }

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

.btn-outline { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,149,10,0.25); }

.btn-white { background: var(--white); color: var(--orange); border: 2px solid var(--white); font-weight: 700; }
.btn-white:hover { background: var(--dark); border-color: var(--dark); color: var(--white); transform: translateY(-2px); }

/* ─── 5. NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding-block: 1.5rem;
  transition: all 0.35s var(--ease);
}
.nav.scrolled {
  background: rgba(15,23,42,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-block: 0.875rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}
.nav__logo { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.nav__logo-name { font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.nav__logo-name span { color: var(--orange); }
.nav__logo-sub { font-family: var(--ff-mono); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-light); opacity: 0.6; }

.nav__links { display: flex; align-items: center; gap: 2.5rem; }
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s var(--ease);
}
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--orange); transition: width 0.25s var(--ease); }
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.nav__burger { display: none; flex-direction: column; gap: 5px; width: 28px; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s var(--ease); transform-origin: center; }
.nav.menu-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav__burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.nav__mobile.open { display: flex; opacity: 1; pointer-events: all; }
.nav__mobile-link { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 800; color: var(--white); letter-spacing: -0.03em; transition: color 0.2s; }
.nav__mobile-link:hover, .nav__mobile-link.active { color: var(--orange); }

/* ─── 6. HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}
.hero__bg-stripe {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: repeating-linear-gradient(-55deg, rgba(232,149,10,0.06) 0, rgba(232,149,10,0.06) 12px, transparent 12px, transparent 44px);
  pointer-events: none;
}
.hero__bg-glow {
  position: absolute; top: -15%; right: -5%; width: 55rem; height: 55rem;
  background: radial-gradient(circle, rgba(232,149,10,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero__road-dashes {
  position: absolute; bottom: 2.5rem; left: 0; right: 0; height: 5px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 70px, transparent 70px, transparent 110px);
  opacity: 0.18; pointer-events: none;
}
.hero__sign-bg {
  position: absolute;
  right: -4%;
  bottom: -5%;
  width: 55%;
  max-width: 720px;
  opacity: 0.07;
  pointer-events: none;
  mix-blend-mode: luminosity;
  filter: grayscale(1);
  z-index: 1;
}

.hero__accent-bar {
  position: absolute; right: 12%; top: 15%; bottom: 15%; width: 3px;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
  opacity: 0.35;
  animation: pulse-bar 3s ease-in-out infinite;
}
@keyframes pulse-bar { 0%, 100% { opacity: 0.18; } 50% { opacity: 0.45; } }

.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: var(--px);
  padding-block: 4rem 6rem;
}
.hero__eyebrow {
  font-family: var(--ff-mono); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange);
  display: inline-flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
  opacity: 0; transform: translateY(20px);
  animation: reveal-up 0.7s var(--ease) 0.2s forwards;
}
.hero__eyebrow::before, .hero__eyebrow::after { content: ''; display: block; height: 1px; background: var(--orange); }
.hero__eyebrow::before { width: 2.5rem; } .hero__eyebrow::after { width: 1.5rem; }

.hero__heading {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 14ch;
  margin-bottom: 1.75rem;
}
.hero__heading .word { display: inline-block; overflow: hidden; vertical-align: bottom; margin-right: 0.25em; }
.hero__heading .word-inner { display: inline-block; transform: translateY(110%); animation: word-reveal 0.8s var(--ease) forwards; }
.hero__heading .highlight { color: var(--orange); position: relative; }
.hero__heading .highlight::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 4px;
  background: var(--orange); opacity: 0.25; border-radius: 2px;
}
@keyframes word-reveal { to { transform: translateY(0); } }
@keyframes reveal-up { to { opacity: 1; transform: translateY(0); } }

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.175rem); color: rgba(255,255,255,0.6);
  max-width: 52ch; line-height: 1.8; margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px);
  animation: reveal-up 0.7s var(--ease) 1.3s forwards;
}
.hero__ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: reveal-up 0.7s var(--ease) 1.6s forwards;
}
.hero__scroll {
  position: absolute; bottom: 5.5rem; left: var(--px);
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  opacity: 0; animation: reveal-up 0.7s var(--ease) 2.1s forwards;
}
.hero__scroll-arrow { display: flex; flex-direction: column; align-items: center; gap: 3px; animation: scroll-bounce 1.6s ease-in-out infinite; }
.hero__scroll-arrow span { display: block; width: 1px; height: 18px; background: rgba(255,255,255,0.25); }
.hero__scroll-arrow svg { width: 12px; height: 12px; color: var(--orange); }
@keyframes scroll-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ─── 7. STATS ───────────────────────────────────────────────── */
.stats { background: var(--dark-2); padding-block: clamp(3rem, 6vw, 5rem); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stats__item:last-child { border-right: none; }
.stats__number {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 900; color: var(--orange); line-height: 1;
  letter-spacing: -0.04em;
  display: flex; align-items: baseline; justify-content: center; gap: 0.1em;
}
.stats__suffix { font-size: 0.55em; opacity: 0.8; }
.stats__label { font-family: var(--ff-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 0.5rem; }

/* ─── 8. SERVICES 3D ─────────────────────────────────────────── */
.services3d { background: var(--dark); }
.services3d__header { text-align: center; margin-bottom: 4rem; }
.services3d__header .section-title { color: var(--white); }
.services3d__header .section-sub { color: rgba(255,255,255,0.5); margin-inline: auto; }

.s3d-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.s3d-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.018) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2.25rem;
  overflow: hidden;
  display: flex; flex-direction: column;
  cursor: default;
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateZ(0);
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25), 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.05);
  will-change: transform;
}
.s3d-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(232,149,10,0));
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.s3d-card:hover::after { opacity: 1; }
.s3d-card:hover {
  border-color: rgba(232,149,10,0.22);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 24px 64px rgba(0,0,0,0.35), 0 0 48px rgba(232,149,10,0.07), inset 0 1px 0 rgba(255,255,255,0.06);
}

.s3d-card__photo {
  position: relative;
  height: 190px;
  margin: -2.5rem -2rem 1.75rem;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.s3d-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
  filter: brightness(0.85) saturate(0.9);
}
.s3d-card:hover .s3d-card__photo img {
  transform: scale(1.07);
  filter: brightness(0.95) saturate(1);
}
.s3d-card__photo .s3d-card__num {
  position: absolute;
  top: auto; bottom: 0.75rem; right: 1rem;
  font-family: var(--ff-mono);
  font-size: 2.5rem; font-weight: 900;
  line-height: 1; letter-spacing: -0.04em;
  color: rgba(255,255,255,0.22);
  pointer-events: none;
}
.s3d-card__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(15,23,42,0.72) 100%);
}
.s3d-card__body { position: relative; z-index: 2; }

.s3d-card__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(232,149,10,0.13) 0%, transparent 60%);
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s ease;
}
.s3d-card:hover .s3d-card__glow { opacity: 1; }

.s3d-card__shine {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
  transform: translateX(-200%);
  pointer-events: none; z-index: 1;
  transition: transform 0.65s ease;
}
.s3d-card:hover .s3d-card__shine { transform: translateX(200%); }

.s3d-card__num {
  position: absolute; top: 1.25rem; right: 1.75rem;
  font-family: var(--ff-mono); font-size: 5rem; font-weight: 900;
  line-height: 1; letter-spacing: -0.05em;
  color: rgba(232,149,10,0.05);
  pointer-events: none;
  transition: color 0.3s ease;
}
.s3d-card:hover .s3d-card__num { color: rgba(232,149,10,0.11); }

.s3d-card__icon {
  width: 3.5rem; height: 3.5rem;
  background: rgba(232,149,10,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  position: relative; z-index: 2;
  transition: all 0.35s var(--ease-spring);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.s3d-card__icon svg { width: 1.5rem; height: 1.5rem; color: var(--orange); transition: color 0.25s; }
.s3d-card:hover .s3d-card__icon {
  background: var(--orange);
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 12px 32px rgba(232,149,10,0.38);
}
.s3d-card:hover .s3d-card__icon svg { color: var(--dark); }

.s3d-card__title {
  font-size: 1.0625rem; font-weight: 700; color: var(--white);
  margin-bottom: 0.75rem; position: relative; z-index: 2;
  transition: color 0.2s;
}
.s3d-card:hover .s3d-card__title { color: var(--orange); }

.s3d-card__desc {
  font-size: 0.875rem; color: rgba(255,255,255,0.45);
  line-height: 1.75; margin-bottom: 1.75rem;
  position: relative; z-index: 2;
  transition: color 0.25s;
}
.s3d-card:hover .s3d-card__desc { color: rgba(255,255,255,0.62); }

.s3d-card__link {
  font-family: var(--ff-mono); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange);
  display: inline-flex; align-items: center; gap: 0.5rem;
  position: relative; z-index: 2;
  transition: gap 0.2s var(--ease);
}
.s3d-card__link:hover { gap: 0.875rem; }
.s3d-card__link svg { width: 0.875rem; height: 0.875rem; }

@media (max-width: 1024px) { .s3d-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .s3d-grid { grid-template-columns: 1fr; } }

/* ─── 8b. OLD SERVICES (kept for services.html) ───────────────── */
.services { background: var(--light); }
.services__header { text-align: center; margin-bottom: 3.5rem; }
.services__header .section-sub { margin-inline: auto; }
.services__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }

.service-card {
  background: var(--white);
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,23,42,0.07);
  border-top: 3px solid transparent;
  transition: all 0.3s var(--ease);
  cursor: default;
}
.service-card:hover { border-top-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-6px); }
.service-card__icon {
  width: 3.25rem; height: 3.25rem;
  background: rgba(232,149,10,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.25s var(--ease);
}
.service-card__icon svg { width: 1.625rem; height: 1.625rem; color: var(--orange); }
.service-card:hover .service-card__icon { background: var(--orange); }
.service-card:hover .service-card__icon svg { color: var(--white); }
.service-card__title { font-size: 1.125rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
.service-card__desc { font-size: 0.9375rem; color: var(--grey); line-height: 1.7; margin-bottom: 1.5rem; }
.service-card__link {
  font-family: var(--ff-mono); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange);
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: gap 0.2s var(--ease);
}
.service-card__link:hover { gap: 0.875rem; }
.service-card__link svg { width: 0.875rem; height: 0.875rem; }

/* ─── 9. BRAND BANNER ───────────────────────────────────────── */
.brand-banner {
  position: relative;
  width: 100%;
  height: clamp(280px, 45vw, 600px);
  overflow: hidden;
}
.brand-banner__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.brand-banner:hover .brand-banner__img { transform: scale(1.02); }
.brand-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,23,42,0.35) 0%, transparent 60%);
  pointer-events: none;
}

/* ─── 10. ABOUT TEASER ───────────────────────────────────────── */
.about-teaser { background: var(--white); }
.about-teaser__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-teaser__values { display: flex; flex-direction: column; gap: 1.125rem; margin: 1.75rem 0 2.25rem; }
.about-teaser__value { display: flex; align-items: flex-start; gap: 1rem; }
.about-teaser__value-icon {
  width: 2rem; height: 2rem; background: var(--orange); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.about-teaser__value-icon svg { width: 1rem; height: 1rem; color: var(--white); }
.about-teaser__value-text strong { display: block; font-size: 0.9375rem; font-weight: 600; color: var(--dark); margin-bottom: 0.2rem; }
.about-teaser__value-text p { font-size: 0.875rem; color: var(--grey); line-height: 1.6; }

.about-teaser__visual { position: relative; padding-bottom: 1.5rem; padding-right: 1.5rem; }
.about-teaser__visual-main {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.about-teaser__visual-main::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 60%; height: 100%;
  background: repeating-linear-gradient(-55deg, rgba(232,149,10,0.07) 0, rgba(232,149,10,0.07) 8px, transparent 8px, transparent 32px);
}
.about-teaser__kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; position: relative; z-index: 1; }
.about-teaser__kpi { text-align: center; padding: 1.5rem 1rem; background: rgba(255,255,255,0.05); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.08); }
.about-teaser__kpi-num { font-size: 2.25rem; font-weight: 900; color: var(--orange); letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.375rem; }
.about-teaser__kpi-label { font-family: var(--ff-mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.about-teaser__badge {
  position: absolute; bottom: 0; right: 0;
  background: var(--orange); color: var(--white);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  font-weight: 800; font-size: 0.875rem; line-height: 1.4;
  box-shadow: var(--shadow-lg); z-index: 2;
}
.about-teaser__badge span { font-size: 2rem; font-weight: 900; display: block; letter-spacing: -0.04em; }

/* ─── 10. PROJECTS ────────────────────────────────────────────── */
.projects { background: var(--light); }
.projects__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; gap: 2rem; flex-wrap: wrap; }
.projects__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.project-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(15,23,42,0.07); transition: all 0.3s var(--ease); cursor: pointer; }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-card__visual {
  height: 220px; background: var(--dark-2);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.project-card__visual::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg, rgba(232,149,10,0.06) 0, rgba(232,149,10,0.06) 10px, transparent 10px, transparent 40px);
}
.project-card__visual-icon { position: relative; z-index: 1; width: 4rem; height: 4rem; color: rgba(255,255,255,0.12); }
.project-card__overlay {
  position: absolute; inset: 0; background: rgba(232,149,10,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s var(--ease); z-index: 2;
}
.project-card:hover .project-card__overlay { opacity: 1; }
.project-card__overlay-text { font-family: var(--ff-mono); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); display: flex; align-items: center; gap: 0.5rem; }
.project-card__content { padding: 1.5rem; }
.project-card__badge { font-family: var(--ff-mono); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); background: rgba(232,149,10,0.1); padding: 0.25rem 0.75rem; border-radius: 100px; display: inline-block; margin-bottom: 0.75rem; }
.project-card__title { font-size: 1.0625rem; font-weight: 700; color: var(--dark); margin-bottom: 0.375rem; }
.project-card__location { font-size: 0.875rem; color: var(--grey); display: flex; align-items: center; gap: 0.375rem; }
.project-card__location svg { width: 0.875rem; height: 0.875rem; color: var(--orange); }

/* ─── 11. TESTIMONIALS ───────────────────────────────────────── */
.testimonials { background: var(--dark); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub { color: rgba(255,255,255,0.5); }
.testimonials__header { text-align: center; margin-bottom: 3.5rem; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 2.25rem;
  transition: all 0.3s var(--ease); position: relative;
}
.testimonial-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(232,149,10,0.3); transform: translateY(-4px); }
.testimonial-card__quote { font-size: 5rem; line-height: 0.5; color: var(--orange); font-family: Georgia, serif; opacity: 0.4; margin-bottom: 1rem; display: block; }
.testimonial-card__text { font-size: 0.9375rem; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 1.75rem; }
.testimonial-card__stars { display: flex; gap: 0.25rem; margin-bottom: 1.25rem; }
.testimonial-card__stars svg { width: 1rem; height: 1rem; color: var(--yellow); fill: var(--yellow); }
.testimonial-card__author { display: flex; align-items: center; gap: 1rem; }
.testimonial-card__avatar { width: 2.75rem; height: 2.75rem; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; color: var(--white); flex-shrink: 0; }
.testimonial-card__name { font-size: 0.9375rem; font-weight: 700; color: var(--white); }
.testimonial-card__company { font-size: 0.8125rem; color: rgba(255,255,255,0.38); font-family: var(--ff-mono); }

/* ─── 12. PARTNERS ───────────────────────────────────────────── */
.partners { background: var(--light); padding-block: clamp(3rem, 6vw, 5rem); }
.partners__header { text-align: center; margin-bottom: 3rem; }
.partners__grid { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; align-items: center; }
.partner-logo { padding: 1.125rem 2rem; background: var(--white); border: 1px solid rgba(15,23,42,0.08); border-radius: var(--radius); font-family: var(--ff-mono); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); transition: all 0.25s var(--ease); cursor: default; }
.partner-logo:hover { border-color: var(--orange); color: var(--orange); box-shadow: var(--shadow-sm); }

/* ─── 13. CTA BANNER ─────────────────────────────────────────── */
.cta-banner { background: var(--orange); padding-block: clamp(4rem, 7vw, 6rem); position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-55deg, rgba(0,0,0,0.06) 0, rgba(0,0,0,0.06) 10px, transparent 10px, transparent 40px); }
.cta-banner__inner { position: relative; z-index: 1; text-align: center; }
.cta-banner__title { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 900; color: var(--white); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1rem; }
.cta-banner__sub { font-size: 1.0625rem; color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; max-width: 52ch; margin-inline: auto; line-height: 1.7; }

/* ─── 14. FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--dark); padding-top: clamp(4rem, 7vw, 6rem); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer__logo-name { font-size: 1.375rem; font-weight: 800; color: var(--white); letter-spacing: -0.01em; margin-bottom: 0.25rem; }
.footer__logo-name span { color: var(--orange); }
.footer__logo-sub { font-family: var(--ff-mono); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.25rem; }
.footer__tagline { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 1.75rem; max-width: 28ch; }
.footer__socials { display: flex; gap: 0.875rem; }
.footer__social { width: 2.25rem; height: 2.25rem; background: rgba(255,255,255,0.07); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; transition: all 0.25s var(--ease); cursor: pointer; }
.footer__social:hover { background: var(--orange); }
.footer__social svg { width: 1rem; height: 1rem; color: rgba(255,255,255,0.65); }
.footer__social:hover svg { color: var(--white); }
.footer__col-title { font-family: var(--ff-mono); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.375rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__link { font-size: 0.9rem; color: rgba(255,255,255,0.5); transition: color 0.2s var(--ease); }
.footer__link:hover { color: var(--white); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.footer__contact-icon { width: 1.75rem; height: 1.75rem; background: rgba(232,149,10,0.12); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.footer__contact-icon svg { width: 0.875rem; height: 0.875rem; color: var(--orange); }
.footer__contact-text { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer__contact-text a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__contact-text a:hover { color: var(--white); }
.footer__bottom { padding-block: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer__copy { font-size: 0.8125rem; color: rgba(255,255,255,0.28); }
.footer__poweredby { font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.22); }
.footer__poweredby a { color: var(--orange); opacity: 0.8; transition: opacity 0.2s; }
.footer__poweredby a:hover { opacity: 1; }

/* ─── 15. PAGE BANNER ────────────────────────────────────────── */
.page-banner { background: var(--dark); padding-top: calc(var(--nav-h) + 4rem); padding-bottom: 4rem; position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-55deg, rgba(232,149,10,0.05) 0, rgba(232,149,10,0.05) 10px, transparent 10px, transparent 40px); }
.page-banner::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 60px, transparent 60px, transparent 100px); opacity: 0.22; }
.page-banner__inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-family: var(--ff-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.5rem; }
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { opacity: 0.35; }
.page-banner__eyebrow { font-family: var(--ff-mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.page-banner__title { font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 900; color: var(--white); letter-spacing: -0.035em; line-height: 1.08; margin-bottom: 1.25rem; }
.page-banner__title span { color: var(--orange); }
.page-banner__sub { font-size: 1.0625rem; color: rgba(255,255,255,0.58); max-width: 54ch; line-height: 1.75; }

/* ─── 16. SERVICES PAGE ──────────────────────────────────────── */
.service-detail { border-bottom: 1px solid rgba(15,23,42,0.06); }
.service-detail:nth-child(even) { background: var(--light); }
.service-detail:nth-child(odd) { background: var(--white); }
.service-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.service-detail__grid.reverse { direction: rtl; }
.service-detail__grid.reverse > * { direction: ltr; }
.service-detail__visual { background: var(--dark-2); border-radius: var(--radius-lg); height: 380px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.service-detail__visual::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-55deg, rgba(232,149,10,0.07) 0, rgba(232,149,10,0.07) 10px, transparent 10px, transparent 42px); }
.service-detail__visual-icon { position: relative; z-index: 1; width: 5rem; height: 5rem; color: rgba(232,149,10,0.35); }
.service-detail__number { font-size: 6rem; font-weight: 900; color: rgba(232,149,10,0.07); position: absolute; bottom: 1rem; right: 1.5rem; line-height: 1; letter-spacing: -0.05em; z-index: 0; }
.service-detail__badge { font-family: var(--ff-mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); background: rgba(232,149,10,0.1); border-radius: 100px; padding: 0.35rem 0.875rem; display: inline-block; margin-bottom: 1.25rem; }
.service-detail__title { font-size: clamp(1.625rem, 3vw, 2.25rem); font-weight: 800; color: var(--dark); letter-spacing: -0.02em; margin-bottom: 1rem; line-height: 1.2; }
.service-detail__desc { font-size: 0.9375rem; color: var(--grey); line-height: 1.75; margin-bottom: 1.75rem; }
.service-detail__list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.25rem; }
.service-detail__list li { display: flex; align-items: center; gap: 0.875rem; font-size: 0.9rem; color: var(--dark-3); }
.service-detail__list li::before {
  content: ''; width: 1.5rem; height: 1.5rem; background: var(--orange); border-radius: 50%; flex-shrink: 0;
  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/polyline%3E%3C/svg%3E");
  background-size: 60%; background-repeat: no-repeat; background-position: center;
}

.process { background: var(--dark); }
.process .section-title { color: var(--white); }
.process .section-sub { color: rgba(255,255,255,0.5); }
.process__header { text-align: center; margin-bottom: 4rem; }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process__steps::before { content: ''; position: absolute; top: 2rem; left: calc(12.5% + 2rem); right: calc(12.5% + 2rem); height: 2px; background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 20px, transparent 20px, transparent 36px); opacity: 0.25; }
.process__step { text-align: center; padding: 0 1rem; }
.process__step-num { width: 4rem; height: 4rem; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.375rem; font-weight: 900; color: var(--white); margin-inline: auto; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.process__step-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.625rem; }
.process__step-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ─── 17. ABOUT PAGE ─────────────────────────────────────────── */
.story { background: var(--white); }
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story__visual { background: var(--dark-2); border-radius: var(--radius-lg); height: 450px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.story__visual::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-55deg, rgba(232,149,10,0.07) 0, rgba(232,149,10,0.07) 10px, transparent 10px, transparent 42px); }
.story__visual-inner { position: relative; z-index: 1; text-align: center; }
.story__visual-year { font-size: 8rem; font-weight: 900; color: var(--orange); opacity: 0.18; line-height: 1; letter-spacing: -0.05em; }
.story__visual-since { font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.story__text p { font-size: 0.9375rem; color: var(--grey); line-height: 1.8; margin-bottom: 1.25rem; }

.values-section { background: var(--light); }
.values-section__header { text-align: center; margin-bottom: 3.5rem; }
.values__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.value-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.25rem 2rem; border: 1px solid rgba(15,23,42,0.07); transition: all 0.3s var(--ease); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(232,149,10,0.2); }
.value-card__icon { width: 3.25rem; height: 3.25rem; background: rgba(232,149,10,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.375rem; }
.value-card__icon svg { width: 1.625rem; height: 1.625rem; color: var(--orange); }
.value-card__title { font-size: 1.125rem; font-weight: 700; color: var(--dark); margin-bottom: 0.625rem; }
.value-card__desc { font-size: 0.9rem; color: var(--grey); line-height: 1.7; }

.why-us { background: var(--dark); }
.why-us .section-title { color: var(--white); }
.why-us .section-sub { color: rgba(255,255,255,0.5); }
.why-us__header { text-align: center; margin-bottom: 3.5rem; }
.why-us__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 2rem; transition: all 0.3s var(--ease); }
.why-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(232,149,10,0.3); transform: translateY(-4px); }
.why-card__number { font-size: 3rem; font-weight: 900; color: rgba(232,149,10,0.2); letter-spacing: -0.04em; line-height: 1; margin-bottom: 1rem; }
.why-card__title { font-size: 1.125rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.why-card__desc { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ─── 18. CONTACT PAGE ───────────────────────────────────────── */
.contact-section { background: var(--light); }
.contact-section__grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 4rem; align-items: start; }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.75rem; box-shadow: var(--shadow); }
.contact-form__title { font-size: 1.625rem; font-weight: 800; color: var(--dark); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.contact-form__sub { font-size: 0.9rem; color: var(--grey); margin-bottom: 2.25rem; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8375rem; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; }
.form-group label .req { color: var(--orange); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.8125rem 1rem; font-family: var(--ff-head); font-size: 0.9375rem; color: var(--dark); background: var(--light); border: 1.5px solid rgba(15,23,42,0.12); border-radius: var(--radius); transition: all 0.2s var(--ease); outline: none; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); background: var(--white); box-shadow: 0 0 0 3px rgba(232,149,10,0.12); }
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: #EF4444; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.875rem center; background-size: 1.125rem; padding-right: 2.5rem; }
.form-error-msg { font-size: 0.775rem; color: #EF4444; margin-top: 0.375rem; display: none; }
.form-error-msg.visible { display: block; }
.form-success { display: none; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); border-radius: var(--radius); padding: 1rem 1.25rem; font-size: 0.9375rem; color: #15803D; margin-bottom: 1.25rem; }
.form-success.visible { display: block; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem; border: 1px solid rgba(15,23,42,0.07); display: flex; gap: 1.25rem; align-items: flex-start; transition: all 0.25s var(--ease); }
.contact-info-card:hover { box-shadow: var(--shadow); border-color: rgba(232,149,10,0.2); }
.contact-info-card__icon { width: 3rem; height: 3rem; background: rgba(232,149,10,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card__icon svg { width: 1.375rem; height: 1.375rem; color: var(--orange); }
.contact-info-card__label { font-family: var(--ff-mono); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.375rem; }
.contact-info-card__value { font-size: 0.9375rem; color: var(--dark); font-weight: 500; line-height: 1.55; }
.contact-info-card__value a { color: var(--dark); transition: color 0.2s; }
.contact-info-card__value a:hover { color: var(--orange); }
.map-placeholder { background: var(--dark-2); border-radius: var(--radius-lg); height: 200px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.75rem; border: 1px solid rgba(15,23,42,0.07); overflow: hidden; position: relative; }
.map-placeholder::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-55deg, rgba(232,149,10,0.05) 0, rgba(232,149,10,0.05) 8px, transparent 8px, transparent 32px); }
.map-placeholder__icon { width: 3rem; height: 3rem; color: var(--orange); opacity: 0.45; position: relative; }
.map-placeholder__text { font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.38); position: relative; }

/* ─── 19. REVEAL ANIMATIONS ──────────────────────────────────── */
[data-reveal] { opacity: 0; transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
[data-reveal="up"]    { transform: translateY(48px); }
[data-reveal="left"]  { transform: translateX(-48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal="scale"] { transform: scale(0.88); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].revealed { opacity: 1; transform: none; }

[data-stagger] > * { opacity: 0; transform: translateY(32px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
[data-stagger].revealed > * { opacity: 1; transform: none; }
[data-stagger].revealed > *:nth-child(1) { transition-delay: 0s; }
[data-stagger].revealed > *:nth-child(2) { transition-delay: 0.1s; }
[data-stagger].revealed > *:nth-child(3) { transition-delay: 0.2s; }
[data-stagger].revealed > *:nth-child(4) { transition-delay: 0.3s; }
[data-stagger].revealed > *:nth-child(5) { transition-delay: 0.4s; }
[data-stagger].revealed > *:nth-child(6) { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .hero__eyebrow, .hero__sub, .hero__ctas, .hero__scroll { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero__heading .word-inner { transform: none !important; animation: none !important; }
}

/* ─── 20. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1280px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stats__item:nth-last-child(-n+2) { border-bottom: none; }
  .about-teaser__grid { grid-template-columns: 1fr; gap: 3rem; }
  .projects__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }
  .story__grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-us__grid { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__steps::before { display: none; }
  .service-detail__grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail__grid.reverse { direction: ltr; }
  .contact-section__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .projects__grid { grid-template-columns: 1fr; }
  .why-us__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-form { padding: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .process__steps { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .about-teaser__kpi-grid { grid-template-columns: 1fr 1fr; }
}
