/* ============================================================
   A2T Distributions — Vitrine
   Palette : Rouge #a70f15 | Vert #044d45 | Noir #1a1a1a
   ============================================================ */

:root {
  --red:       #a70f15;
  --red-dark:  #820b10;
  --red-light: #f5e6e7;
  --green:     #044d45;
  --green-dark:#033830;
  --green-light:#e6f0ef;
  --black:     #0d0d0d;
  --dark:      #1a1a1a;
  --mid:       #4a4a4a;
  --muted:     #7a7a7a;
  --light:     #f4f4f4;
  --white:     #ffffff;
  --gold:      #c8a96e;

  --font: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(167,15,21,.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--green:hover {
  background: var(--green-dark);
}
.btn--sm { padding: 10px 20px; font-size: 14px; margin-top: 1rem; }
.btn--lg { padding: 18px 36px; font-size: 17px; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 96px 0; }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}
.section__sub {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.7;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(13,13,13,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  padding: 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.nav__logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.15));
  transition: opacity var(--transition);
}
.nav__logo img:hover { opacity: .85; }
.nav__logo-a {
  background: var(--red);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav__link--cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 600;
}
.nav__link--cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,13,13,.92) 0%, rgba(4,77,69,.75) 50%, rgba(167,15,21,.65) 100%),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(167,15,21,.15) 0%, transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero__title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero__title--accent {
  color: var(--gold);
  position: relative;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}
.hero__sub strong { color: var(--white); }
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll span {
  display: block;
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  position: relative;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0% { top: 4px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--dark);
  padding: 56px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat { padding: 16px; }
.stat__num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat__unit {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--red);
}
.stat p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
  letter-spacing: .02em;
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.cat__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.cat-card--green::before { background: var(--green); }
.cat-card--cta::before { background: linear-gradient(90deg, var(--red), var(--green)); }
.cat-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.cat-card__content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.cat-card__content p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}
.cat-card__tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cat-card__tag--green { color: var(--green); }
.cat-card--cta {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  border-color: transparent;
}
.cat-card--cta h3, .cat-card--cta p { color: var(--white); }
.cat-card--cta h3 { color: var(--white); }
.cat-card--cta p { color: rgba(255,255,255,.65); }
.cat-card--cta .cat-card__tag { color: var(--gold); }

/* ============================================================
   PARTENAIRES
   ============================================================ */
.partners { background: var(--light); }
.partners__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.partner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.partner-card__logo {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--dark);
  margin-bottom: 16px;
  padding: 16px;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  display: inline-block;
}
.partner-card p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.6;
}

/* ============================================================
   ZONES D'INTERVENTION
   ============================================================ */
.zones__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.zone-block {
  border-radius: var(--radius-lg);
  padding: 32px;
}
.zone-block h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}
.zone-block ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  font-size: 14px;
}
.zone-block ul li:last-child { border-bottom: none; }
.zone-block--red {
  background: var(--red);
  color: var(--white);
}
.zone-block--green {
  background: var(--green);
  color: var(--white);
}
.zone-block--dark {
  background: var(--dark);
  color: var(--white);
}
.zone-block--dark ul li { border-color: rgba(255,255,255,.1); }

/* ============================================================
   POURQUOI A2T
   ============================================================ */
.why { background: var(--light); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-card__icon { font-size: 40px; margin-bottom: 16px; }
.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.why-card p { font-size: 14px; color: var(--mid); line-height: 1.6; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--red) 0%, #6b0308 100%);
  padding: 96px 0;
}
.cta-section__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  line-height: 1.6;
}
.cta-section .btn--primary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  font-size: 17px;
  padding: 18px 36px;
}
.cta-section .btn--primary:hover {
  background: var(--light);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080808;
  color: rgba(255,255,255,.7);
  padding-top: 72px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand .footer__logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__brand p { font-size: 14px; line-height: 1.7; }
.footer__siren { font-size: 12px; margin-top: 12px; opacity: .4; }
.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer__col ul li a {
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer__col ul li a:hover { color: var(--white); }
.footer__bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.3);
}
.footer__bottom a { color: rgba(255,255,255,.5); }
.footer__bottom a:hover { color: var(--white); }

/* ============================================================
   PAGE HEADERS (pages internes)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  padding: 140px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(167,15,21,.2) 0%, transparent 70%);
  pointer-events: none;
}
.page-header__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-header h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   FORM (contact)
   ============================================================ */
.form-section { padding: 96px 0; background: var(--light); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.form-info h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}
.form-info p { font-size: 16px; color: var(--mid); margin-bottom: 32px; line-height: 1.7; }
.form-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.form-info-item__icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.form-info-item__text h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.form-info-item__text p { font-size: 14px; color: var(--mid); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 28px; }
.form__group { margin-bottom: 20px; }
.form__group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(167,15,21,.1);
}
.form__group textarea { resize: vertical; min-height: 120px; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__submit {
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.form__submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(167,15,21,.35);
}
.form__notice {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-block {
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}
.service-block:last-child { border-bottom: none; }
.service-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-block__inner--reverse { direction: rtl; }
.service-block__inner--reverse > * { direction: ltr; }
.service-block__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.service-block__label--green { color: var(--green); }
.service-block h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}
.service-block p { font-size: 16px; color: var(--mid); line-height: 1.7; margin-bottom: 16px; }
.service-block ul { margin-bottom: 28px; }
.service-block ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.service-block ul li::before { content: '✓'; color: var(--red); font-weight: 700; }
.service-block--green ul li::before { color: var(--green); }
.service-visual {
  background: var(--light);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(167,15,21,.08) 0%, transparent 60%);
}
.service-visual--green::after {
  background: linear-gradient(135deg, rgba(4,77,69,.12) 0%, transparent 60%);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { padding: 80px 0; }
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-intro__text h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.about-intro__text p { font-size: 16px; color: var(--mid); line-height: 1.7; margin-bottom: 16px; }
.about-visual {
  background: linear-gradient(135deg, var(--red) 0%, var(--green) 100%);
  border-radius: var(--radius-lg);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}
.values { background: var(--dark); padding: 80px 0; }
.values .section__title { color: var(--white); }
.values .section__label { color: var(--gold); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.2);
}
.value-card__icon { font-size: 40px; margin-bottom: 16px; }
.value-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; }
.team { padding: 80px 0; }
.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 640px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.team-card__avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}
.team-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--mid); }

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal-content {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; color: var(--dark); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content strong { color: var(--dark); }

/* ============================================================
   AVIS GOOGLE — MARQUEE INFINI
   ============================================================ */
.reviews { background: var(--dark); padding: 80px 0; overflow: hidden; }
.reviews .section__title { color: var(--white); }
.reviews .section__label { color: var(--gold); }
.reviews__global {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.reviews__stars { color: #fbbf24; font-size: 28px; letter-spacing: 2px; }
.reviews__score { font-size: 48px; font-weight: 900; color: var(--white); line-height: 1; }
.reviews__meta { text-align: left; }
.reviews__meta p { font-size: 14px; color: rgba(255,255,255,.5); }
.reviews__meta strong { font-size: 16px; color: rgba(255,255,255,.8); }
.reviews__google-logo {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  margin-left: 8px;
}

.marquee-wrap {
  position: relative;
  margin-bottom: 16px;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--dark), transparent); }

.marquee {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeLeft 40s linear infinite;
}
.marquee--right {
  animation: marqueeRight 40s linear infinite;
}
.marquee:hover, .marquee--right:hover { animation-play-state: paused; }

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 300px;
  flex-shrink: 0;
  transition: background var(--transition);
}
.review-card:hover { background: rgba(255,255,255,.1); }
.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.review-card__name { font-size: 14px; font-weight: 700; color: var(--white); }
.review-card__date { font-size: 12px; color: rgba(255,255,255,.4); }
.review-card__stars { color: #fbbf24; font-size: 14px; margin-bottom: 10px; }
.review-card__text { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cat__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .zones__grid { grid-template-columns: 1fr 1fr; }
  .zone-block:last-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .partners__grid { grid-template-columns: 1fr; }
  .zones__grid { grid-template-columns: 1fr; }
  .zone-block:last-child { grid-column: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .service-block__inner { grid-template-columns: 1fr; }
  .service-block__inner--reverse { direction: ltr; }
  .about-intro__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr 1fr; }
  .team__grid { grid-template-columns: 1fr; max-width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .form__row { grid-template-columns: 1fr; }

  .nav__links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(13,13,13,.98);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    backdrop-filter: blur(12px);
  }
  .nav__links.open { display: flex; }
  .nav__link { width: 100%; padding: 14px 16px; font-size: 16px; }
  .nav__link--cta { text-align: center; margin-top: 8px; }
  .nav__burger { display: flex; }

  .hero__title { font-size: 36px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .why__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
}
