:root {
  --gold: #E8890A;
  --gold-light: #F5A623;
  --gold-dark: #B8690A;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --silver: #C0C0C0;
  --silver-light: #E8E8E8;
  --text: #F0F0F0;
  --text-muted: #888888;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(10,10,10,0.92);
  border-bottom: 1px solid rgba(232,137,10,0.2);
  backdrop-filter: blur(8px);
}
.nav-logo {
  height: 40px;
  width: auto;
  margin-right: 0.75rem;
  vertical-align: middle;
  object-fit: contain;
}
.nav-brand {
  display: flex;
  align-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-decoration: none;
}
.nav-brand span { color: var(--silver-light); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--silver-light);
  font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 0.5rem 1.5rem;
  background: var(--gold);
  color: var(--black) !important;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 4rem;
  background: radial-gradient(ellipse at 20% 50%, rgba(232,137,10,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(192,192,192,0.04) 0%, transparent 50%),
              var(--black);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='rgba(232,137,10,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-content { position: relative; max-width: 650px; z-index: 1; }
.hero-badge {
  display: inline-block; margin-bottom: 1.5rem;
  padding: 0.3rem 1rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 600;
  border-radius: 2px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5.5rem; line-height: 1;
  color: var(--silver-light);
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}
.hero h1 span { color: var(--gold); display: block; }
.hero-sub {
  font-size: 1.2rem; color: var(--text-muted);
  letter-spacing: 4px; text-transform: uppercase;
  font-weight: 500; margin-bottom: 1.5rem;
}
.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; color: #aaa; line-height: 1.8;
  margin-bottom: 2.5rem; max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; }
.btn-primary {
  padding: 0.9rem 2.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: 2px;
  text-decoration: none; transition: background 0.3s;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  padding: 0.9rem 2.5rem;
  background: transparent;
  color: var(--silver-light);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid rgba(192,192,192,0.4); cursor: pointer; border-radius: 2px;
  text-decoration: none; transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ✅ HERO IMAGE — remplace l'ancienne SVG */
.hero-visual {
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  width: 480px; height: 480px;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0.85;
  border: 1px solid rgba(232,137,10,0.3);
  box-shadow: 0 0 60px rgba(232,137,10,0.1);
}

/* STATS */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(232,137,10,0.15);
  border-bottom: 1px solid rgba(232,137,10,0.15);
  padding: 2rem 4rem;
  display: flex; justify-content: space-around; align-items: center;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; color: var(--gold); letter-spacing: 2px;
  display: block; line-height: 1;
}
.stat-label {
  font-size: 0.75rem; color: var(--text-muted);
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
}
.stat-divider { width: 1px; height: 50px; background: rgba(232,137,10,0.2); }

/* SECTIONS */
section { padding: 6rem 4rem; }
.section-label {
  font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; letter-spacing: 2px;
  color: var(--silver-light); margin-bottom: 1rem;
}
.section-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; color: #888; max-width: 500px; line-height: 1.8;
  margin-bottom: 3rem;
}

/* SERVICES */
#services { background: var(--dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(232,137,10,0.1);
  border: 1px solid rgba(232,137,10,0.1);
}
.service-card {
  background: var(--dark);
  padding: 2.5rem;
  transition: background 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: #141414; }
.service-icon {
  width: 50px; height: 50px; margin-bottom: 1.5rem;
  border: 1px solid rgba(232,137,10,0.3);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 2px;
  color: var(--silver-light); margin-bottom: 0.75rem;
}
.service-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.7;
}

/* WHY US */
#why { background: var(--black); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-visual { position: relative; padding: 3rem; }
.shield-graphic { width: 100%; max-width: 320px; margin: 0 auto; display: block; }
.why-features { display: flex; flex-direction: column; gap: 2rem; }
.feature-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid rgba(232,137,10,0.4);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
}
.feature-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.feature-text h4 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1.1rem; letter-spacing: 1px; color: var(--silver-light);
  margin-bottom: 0.3rem;
}
.feature-text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.6;
}

/* CONTACT */
#contact { background: var(--dark2); }
.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start;
}
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 2rem;
}
.contact-detail svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }
.contact-detail .label {
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600; margin-bottom: 0.2rem;
}
.contact-detail .value { font-size: 1rem; color: var(--silver-light); font-weight: 600; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(192,192,192,0.1);
  border-radius: 2px; padding: 0.85rem 1rem;
  color: var(--text); font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem; width: 100%;
  transition: border-color 0.3s; outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #555; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button {
  padding: 0.9rem;
  background: var(--gold); color: var(--black);
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: 2px;
  transition: background 0.3s;
}
.contact-form button:hover { background: var(--gold-light); }
.contact-form button:disabled { opacity: 0.7; cursor: not-allowed; }

/* FOOTER */
footer {
  background: var(--black);
  border-top: 1px solid rgba(232,137,10,0.15);
  padding: 2rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-left { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo {
  height: 35px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 3px; color: var(--gold);
}
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; color: var(--text-muted);
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; font-weight: 600;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.35s; }
.hero-content > *:nth-child(4) { animation-delay: 0.45s; }
.hero-content > *:nth-child(5) { animation-delay: 0.55s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1rem 2rem; }
  .nav-links { display: none; }
  .hero { padding: 8rem 2rem 4rem; }
  .hero h1 { font-size: 3.5rem; }
  .hero-visual { display: none; }
  .stats-bar { padding: 1.5rem 2rem; flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }
  section { padding: 4rem 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .shield-graphic { max-width: 200px; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-left { justify-content: center; }
}