/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #C4006A;
  --pink-light: #E8007A;
  --pink-dark: #9A0053;
  --pink-muted: rgba(196, 0, 106, 0.12);
  --black: #0F0F0F;
  --dark: #1A1A1A;
  --dark-2: #252525;
  --dark-3: #2E2E2E;
  --gray: #606060;
  --gray-2: #8A8A8A;
  --gray-light: #E8E8E8;
  --off-white: #F7F7F7;
  --white: #FFFFFF;
  --font: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-lg: 20px;
}

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

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

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

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

/* ===== NAVIGATION ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

#header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gray-light);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
}

.nav-logo { display: flex; align-items: center; }
.logo-img { height: 80px; width: auto; object-fit: contain; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; }
.logo-on-light { display: none; }
.logo-on-dark { display: block; }
#header.scrolled .logo-on-dark { display: none; }
#header.scrolled .logo-on-light { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  transition: all var(--transition);
}

#header:not(.scrolled) .nav-link { color: rgba(255,255,255,0.85); }
#header:not(.scrolled) .nav-link:hover { color: white; background: rgba(255,255,255,0.12); }
#header.scrolled .nav-link:hover { background: var(--off-white); color: var(--pink); }

.nav-cta {
  background: var(--pink) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 8px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--pink-light) !important; transform: translateY(-2px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
#header.scrolled .nav-toggle span { background: var(--dark); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding-top: 96px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0F0F0F 0%, #1A0010 50%, #0F0F0F 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,0,106,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,0,106,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,0,106,0.4) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,0,106,0.2) 0%, transparent 70%);
  bottom: -100px; left: 20%;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 120px;
}

.hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.hero-text-col {
  flex: 1 1 0;
  min-width: 0;
}

.hero-logo-col {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-big-logo {
  width: clamp(252px, 30.8vw, 448px);
  opacity: 0.95;
  filter: drop-shadow(0 0 40px rgba(196,0,106,0.5));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,0,106,0.15);
  border: 1px solid rgba(196,0,106,0.3);
  color: #FF6BAE;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--pink-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.5); } }

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 700px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--pink-light), #FF9AC3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  width: fit-content;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.12);
}

.hero-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(196,0,106,0.8), transparent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim { 0% { opacity:0; transform:scaleY(0); transform-origin:top; } 50% { opacity:1; } 100% { opacity:0; transform:scaleY(1); transform-origin:top; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pink);
  color: white;
  border-color: var(--pink);
}
.btn-primary:hover { background: var(--pink-light); border-color: var(--pink-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,0,106,0.4); }
.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ===== QUAL STRIP ===== */
.qual-strip {
  background: var(--pink);
  overflow: hidden;
  padding: 14px 0;
}
.qual-strip-inner {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: strip 25s linear infinite;
  width: max-content;
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.qual-sep { opacity: 0.5; }
@keyframes strip { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--dark); color: white; }
.section-alt { background: var(--off-white); padding-bottom: 140px; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  background: var(--pink-muted);
  color: var(--pink);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag--light {
  background: rgba(196,0,106,0.25);
  color: #FF9AC3;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-sub {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.75;
  text-wrap: pretty;
}
.section-dark .section-title { color: white; }
.section-dark .section-sub { color: rgba(255,255,255,0.55); }

/* ===== SERVICES GRID ===== */
#expertises { padding: 12px 0 20px; }
#expertises .section-header { margin-bottom: 10px; }
#expertises .section-tag { margin-bottom: 8px; }
#expertises .section-title { margin-bottom: 0; font-size: clamp(1.5rem, 3vw, 2.1rem); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.service-card--wide { grid-column: span 1; }

.service-card {
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: rgba(196,0,106,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-photo {
  width: calc(100% + 32px);
  margin: -16px -16px 12px -16px;
  height: 150px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  flex-shrink: 0;
}
.service-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.5s ease;
}
.service-card:hover .service-photo img { transform: scale(1.04); }
.service-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  background: linear-gradient(to top, rgba(255,255,255,0.85), transparent);
}

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
  line-height: 1.2;
}
.service-card p {
  font-size: 0.74rem;
  color: var(--gray);
  line-height: 1.4;
  margin-bottom: 8px;
  flex: 1;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: auto;
}
.service-tags span {
  background: var(--off-white);
  color: var(--gray);
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* carte wide : pleine largeur sur desktop, meme hauteur que les autres cartes */
.service-card--wide {
  grid-column: span 3;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 283px;
  padding: 0;
}
.service-card--wide .service-photo {
  width: 392px;
  flex-shrink: 0;
  margin: 0;
  height: 100%;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.service-card--wide .service-photo::after { display: none; }
.service-card--wide .service-photo img { height: 100%; }
.service-card--wide .service-content {
  padding: 14px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.service-card--wide .service-content p { margin-bottom: 0; flex: 0 1 auto; }
.service-card--wide .service-tags { margin-top: 0; }

/* ===== À PROPOS ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: visible;
  margin-bottom: 24px;
}
.about-img-bg {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-img-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(196,0,106,0.05) 0px, rgba(196,0,106,0.05) 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(-45deg, rgba(196,0,106,0.05) 0px, rgba(196,0,106,0.05) 1px, transparent 1px, transparent 20px);
}
.about-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

.about-card-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--pink);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(196,0,106,0.4);
}
.float-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.float-icon svg { width: 20px; height: 20px; }
.about-card-float strong { display: block; font-size: 0.9rem; font-weight: 700; }
.about-card-float span { display: block; font-size: 0.75rem; opacity: 0.8; }

.about-counter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.counter-box {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.counter-box--accent { border-color: rgba(196,0,106,0.4); background: rgba(196,0,106,0.1); }
.counter-box .counter {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
}
.counter-box span:last-child {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-content { color: white; }
.about-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-content > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.value-dot {
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.value-item strong { display: block; font-size: 0.95rem; color: white; margin-bottom: 2px; }
.value-item span { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

.about-info {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-row { display: flex; gap: 16px; font-size: 0.85rem; }
.info-label { color: var(--pink); font-weight: 600; min-width: 100px; }
.info-val { color: rgba(255,255,255,0.65); }

/* ===== QUALIFICATIONS ===== */
section[id] { scroll-margin-top: 96px; }
#qualifications { padding: 44px 0 56px; }
#qualifications .section-header { margin-bottom: 28px; }

.qual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

#qualifications .qual-card { padding: 20px 20px 16px; }

.qual-card {
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.qual-card:hover {
  border-color: rgba(196,0,106,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.qual-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.qual-cat {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  background: var(--off-white);
  display: inline-block;
  padding: 3px 9px;
  border-radius: 4px;
}
.qual-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
  line-height: 1.4;
  text-wrap: balance;
}
.qual-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  text-wrap: pretty;
  flex: 1;
}
.qual-card p em {
  color: var(--pink-dark);
  font-style: normal;
  font-weight: 700;
}

.qual-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-light);
  margin-top: auto;
}
.qual-level {
  background: var(--pink);
  color: white;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.qual-amount {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
  white-space: nowrap;
}

.qual-validity {
  background: linear-gradient(135deg, rgba(196,0,106,0.06), rgba(196,0,106,0.02));
  border: 1px solid rgba(196,0,106,0.2);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.validity-icon { color: var(--pink); flex-shrink: 0; }
.validity-icon svg { width: 28px; height: 28px; }
.qual-validity strong { display: block; font-size: 0.95rem; color: var(--dark); margin-bottom: 4px; }
.qual-validity span { font-size: 0.82rem; color: var(--gray); }

/* ===== RÉFÉRENCES ===== */
.ref-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
}

.ref-card {
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
}
.ref-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.ref-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.ref-badge {
  background: var(--pink-muted);
  color: var(--pink);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.ref-lines {
  font-size: 0.8rem;
  color: var(--gray-2);
  font-weight: 500;
  white-space: nowrap;
}
.ref-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}
.ref-card > p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 24px;
}

.ref-list {
  margin-bottom: 28px;
}
.ref-list li {
  font-size: 0.85rem;
  color: var(--gray);
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid var(--gray-light);
}
.ref-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--pink);
  border-radius: 50%;
}
.ref-list li:last-child { border: none; }

.ref-scope h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.scope-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.scope-tags span {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  color: var(--gray);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}

.ref-card--highlight {
  background: linear-gradient(145deg, var(--dark) 0%, var(--pink-dark) 100%);
  border-color: rgba(196,0,106,0.3);
  color: white;
}
.ref-card-inner { height: 100%; display: flex; flex-direction: column; gap: 36px; }

.ref-kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.kpi {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}
.kpi-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--pink-light);
  line-height: 1;
}
.kpi-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.ref-zones { display: flex; flex-direction: column; gap: 16px; }
.zone-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.zone-item:last-child { border: none; padding-bottom: 0; }
.zone-dot {
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.zone-item strong { display: block; color: white; font-size: 0.9rem; margin-bottom: 3px; }
.zone-item span { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info { color: white; }
.contact-info > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(196,0,106,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--pink-light);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item strong { display: block; color: white; font-size: 0.9rem; margin-bottom: 4px; }
.contact-item span { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.contact-email-link { font-size: 0.85rem; color: var(--pink-light); text-decoration: none; line-height: 1.6; }
.contact-email-link:hover { text-decoration: underline; }

.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
}

input, select, textarea {
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--dark);
  background: white;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--gray-2); }
input:focus, select:focus, textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(196,0,106,0.1);
}
textarea { resize: vertical; min-height: 120px; }
select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23606060' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(0,180,90,0.1);
  border: 1px solid rgba(0,180,90,0.3);
  color: #007A3A;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: white; padding: 32px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  padding-bottom: 24px;
}

.footer-brand-bar {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.footer-logo { height: 80px; width: auto; flex-shrink: 0; }
.footer-brand-inner p { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin: 0; flex: 1; }
.footer-siren { font-size: 0.75rem; color: rgba(255,255,255,0.3); font-family: monospace; white-space: nowrap; }

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--pink-light); }

.footer-address { margin-top: 20px; }
.footer-address strong { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-address span { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; }

.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-qual-line {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  padding: 6px 0 14px;
  letter-spacing: 0.04em;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
.reveal[data-delay="6"] { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
/* ===== TABLET (≤1024px) ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: span 2; flex-direction: column; }
  .service-card--wide .service-photo { width: 100%; height: 220px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .service-card--wide .service-photo::after { display: block; }
  .qual-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand-inner { gap: 20px; }
  .hero-inner { gap: 32px; }
  .hero-big-logo { width: clamp(180px, 24vw, 300px); }
}

/* ===== MOBILE (≤768px) ===== */
@media (max-width: 768px) {
  .nav { justify-content: flex-end; }
  .nav-links {
    display: none;
    position: fixed;
    top: 96px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 20px 24px 32px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { color: var(--dark) !important; background: none !important; font-size: 1rem; padding: 12px 16px !important; }
  .nav-link:hover { background: var(--off-white) !important; color: var(--pink) !important; }
  .nav-links li:has(.nav-cta) { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-light); }
  .nav-cta { background: var(--pink) !important; color: white !important; text-align: center; }
  .nav-toggle { display: flex; }

  .hero-inner { flex-direction: column; gap: 32px; text-align: center; }
  .hero-logo-col { order: -1; }
  .hero-big-logo { width: clamp(140px, 55vw, 240px); }
  .hero-actions { justify-content: center; }
  .hero-content { padding-top: 40px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; width: 100%; justify-content: center; }
  .stat-divider { display: none; }
  .stat { padding: 0; flex: 1; min-width: 80px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: span 1; flex-direction: column; }
  .service-card--wide .service-photo { width: 100%; height: 220px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-counter-grid { grid-template-columns: 1fr 1fr; }

  .qual-grid { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand-inner { flex-direction: column; align-items: center; gap: 12px; }
  .footer-brand-inner p { text-align: center; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .footer-logo { height: 60px; }
  .footer-links { text-align: center; }
  .footer-links ul { align-items: center; }

  .section { padding: 60px 0; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .video-section { aspect-ratio: 4/3; max-height: 420px; }
}

/* ===== SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {
  .nav { height: 76px; }
  .nav-links { top: 76px; }
  .hero { padding-top: 76px; }
  .hero-big-logo { width: clamp(120px, 60vw, 200px); }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .contact-form-wrap { padding: 24px 16px; }
  .about-img-wrap { height: 220px; }
  .qual-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .video-section { aspect-ratio: 1/1; max-height: 340px; }
}

/* ===== VIDEO SECTION ===== */
.video-section {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.2) 100%);
}

/* Shrink qual-num font so 03001-01 fits */
.qual-num {
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.02em;
}
