/* ============================================================
   TEXTICOB — Feuille de style principale
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:      #0a0a0a;
  --dark:       #1a1a1a;
  --dark-mid:   #222222;
  --dark-light: #2e2e2e;
  --gold:       #c9a84c;
  --gold-light: #e0c070;
  --white:      #f5f5f5;
  --grey:       #888888;
  --grey-light: #bbbbbb;

  --font-title: 'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --nav-h: 72px;
  --radius: 4px;
  --transition: 0.35s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p  { color: var(--grey-light); max-width: 66ch; }

/* ── Utility ────────────────────────────────────────────────── */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.gold { color: var(--gold); }

.btn {
  display: inline-block;
  padding: 0.85em 2.2em;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0 2rem;
}

section { padding: 100px 0; }

/* ── Scroll Animation ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.delay-1 { transition-delay: 0.15s; }
.fade-in.delay-2 { transition-delay: 0.30s; }
.fade-in.delay-3 { transition-delay: 0.45s; }
.fade-in.delay-4 { transition-delay: 0.60s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,10,0.96);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
  backdrop-filter: blur(10px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--white);
  transition: color var(--transition);
}
.nav__logo span { color: var(--gold); }
.nav__logo:hover { color: var(--gold); }

.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  position: relative;
  transition: color var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__link:hover,
.nav__link.active { color: var(--white); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__cta { margin-left: 1rem; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link { font-size: 1.4rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #0a0a0a 40%, #1a1410 100%);
}

/* Decorative texture lines */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      rgba(201,168,76,0.03) 0px,
      rgba(201,168,76,0.03) 1px,
      transparent 1px,
      transparent 60px
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero__tag::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero__title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 2rem;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--grey-light);
  max-width: 52ch;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--grey);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   ABOUT SNIPPET (index)
   ============================================================ */
.about-snap {
  background: var(--dark);
}

.about-snap__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-snap__visual {
  position: relative;
  height: 400px;
}
.about-snap__block {
  position: absolute;
  border-radius: var(--radius);
}
.about-snap__block--main {
  inset: 0;
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
}
.about-snap__block--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-snap__badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}
.about-snap__badge .num {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.about-snap__badge .lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   CLIENTS LOGOS
   ============================================================ */
.clients-strip {
  background: var(--dark-mid);
  padding: 70px 0;
}

.clients-strip__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.logo-item {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.25);
  transition: color var(--transition);
  cursor: default;
}
.logo-item:hover { color: var(--gold); }

/* ============================================================
   KEY NUMBERS
   ============================================================ */
.stats {
  background: var(--black);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-card {
  background: var(--dark);
  padding: 3rem 2rem;
  text-align: center;
}

.stat-card__num {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card__label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background:
    linear-gradient(135deg, #1a1208 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  text-align: center;
}

.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p  { margin: 0 auto 2.5rem; }

/* ============================================================
   PAGE HEADER (subpages)
   ============================================================ */
.page-header {
  padding: 160px 0 80px;
  background:
    linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      rgba(201,168,76,0.03) 0px,
      rgba(201,168,76,0.03) 1px,
      transparent 1px,
      transparent 60px
    );
}
.page-header__inner { position: relative; }
.page-header p { margin-top: 1rem; font-size: 1.05rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-history {
  background: var(--dark);
}
.about-history__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.values {
  background: var(--black);
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.value-card__icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.value-card h3 { margin-bottom: 0.75rem; }

.process {
  background: var(--dark);
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
}
.step h4 { margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; text-align: center; margin: 0 auto; }

/* ============================================================
   CLIENTS PAGE
   ============================================================ */
.clients-main { background: var(--dark); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.client-card {
  background: var(--dark-mid);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition), transform var(--transition);
}
.client-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.client-card__name {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.client-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  border: 1px solid rgba(136,136,136,0.3);
  display: inline-block;
  padding: 0.25em 0.75em;
  border-radius: 2px;
  width: fit-content;
}

.clients-future {
  background: var(--black);
  text-align: center;
}
.clients-future__inner {
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 4rem;
  max-width: 700px;
  margin: 0 auto;
}
.clients-future__dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.clients-future__dots span {
  display: block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(201,168,76,0.3);
}
.clients-future__dots span:nth-child(2) { background: rgba(201,168,76,0.6); }
.clients-future__dots span:nth-child(3) { background: var(--gold); }

.trust { background: var(--dark); }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.trust-item {
  padding: 2rem;
  border-left: 2px solid var(--gold);
}
.trust-item h4 { color: var(--gold); margin-bottom: 0.5rem; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-main { background: var(--dark); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.product-card {
  background: var(--dark-mid);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.product-card__img {
  height: 200px;
  background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.product-card__body { padding: 1.8rem; }
.product-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.product-card p { font-size: 0.9rem; margin: 0; }

.capacity { background: var(--black); }
.capacity__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 3rem;
}
.capacity__bars { display: flex; flex-direction: column; gap: 1.5rem; }
.bar-item label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--grey-light);
}
.bar-track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 2px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.bar-fill.animated { width: var(--target-width); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section { background: var(--dark); }

.gallery-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5em 1.3em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--grey);
  border: 1px solid rgba(136,136,136,0.3);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--dark-mid);
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-card {
  margin: 0;
}
.gallery-card.hidden { display: none; }

.gallery-caption {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 0.55rem 0.25rem 0;
  text-align: center;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__content {
  position: relative;
  max-width: 800px;
  width: 90%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
  line-height: 1;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-top: 3rem;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-block h4 { color: var(--gold); margin-bottom: 0.5rem; }
.contact-block p { font-size: 0.95rem; margin: 0; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--dark-mid); }

.form-success {
  display: none;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: var(--gold);
}

.partnership { background: var(--black); }
.partnership__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 60px 0 30px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__logo {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.footer__logo span { color: var(--gold); }
.footer__desc { font-size: 0.9rem; color: var(--grey); }

.footer__col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a {
  font-size: 0.88rem;
  color: var(--grey);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--grey);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-snap__grid    { grid-template-columns: 1fr; gap: 50px; }
  .about-history__grid { grid-template-columns: 1fr; gap: 50px; }
  .stats__grid         { grid-template-columns: repeat(2, 1fr); }
  .process__steps      { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
  .capacity__grid      { grid-template-columns: 1fr; gap: 50px; }
  .partnership__inner  { grid-template-columns: 1fr; gap: 50px; }
  .footer__top         { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__title { font-size: clamp(2.4rem, 8vw, 3.5rem); }

  .values__grid   { grid-template-columns: 1fr; }
  .trust__grid    { grid-template-columns: 1fr; }
  .clients-grid   { grid-template-columns: 1fr; }
  .products-grid  { grid-template-columns: 1fr; }
  .gallery-grid   { grid-template-columns: repeat(2, 1fr); }
  .contact-grid   { grid-template-columns: 1fr; gap: 50px; }
  .form-row       { grid-template-columns: 1fr; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats__grid  { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; }
  .process__steps { grid-template-columns: 1fr; }
}
