:root {
  --or: #c9a84c;
  --or-dim: #8b6914;
  --or-light: #f0dfa020;
  --noir: #0a0a0a;
  --noir2: #111111;
  --noir3: #161616;
  --border: #222222;
  --border2: #2e2e2e;
  --text: #ffffff;
  --text2: #888888;
  --text3: #444444;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--noir);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
.serif {
  font-family: "Cormorant Garamond", serif;
}
.or {
  color: var(--or);
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  border-bottom: 0.5px solid var(--border);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text);
  text-decoration: none;
}
.logo em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--or);
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  color: var(--text2);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--or);
}

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  background: var(--or);
  color: var(--noir);
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}
.nav-cta:hover {
  opacity: 0.85;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
nav.nav-open .hamburger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
nav.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}
nav.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 0.5px solid var(--border);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0.5px solid #3a3a2a;
  color: var(--or);
  font-size: 11px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  position: relative;
}

.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--or);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

#hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  max-width: 800px;
  position: relative;
}

#hero h1 em {
  font-style: italic;
  color: var(--or);
}

#hero p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 440px;
  margin: 1.5rem auto 2.5rem;
  position: relative;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  position: relative;
}

.btn-primary {
  background: var(--or);
  color: var(--noir);
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-primary:hover {
  opacity: 0.85;
}

.btn-outline {
  background: transparent;
  color: var(--text2);
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 13px;
  border: 0.5px solid var(--border2);
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  border-color: var(--or);
  color: var(--or);
}

/* ── STATS ── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 0.5px solid var(--border);
}

.stat {
  padding: 2rem;
  text-align: center;
  border-right: 0.5px solid var(--border);
}
.stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--or);
  letter-spacing: -2px;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text3);
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* ── SECTIONS ── */
section {
  padding: 5rem 3rem;
  border-bottom: 0.5px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

.full-width {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.section-label {
  font-size: 10px;
  color: var(--or);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 3rem;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.service-card {
  background: var(--noir2);
  padding: 2rem;
  transition: background 0.2s;
}
.service-card:hover {
  background: var(--noir3);
}

.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  color: var(--or);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  border: 0.5px solid var(--border2);
  border-radius: 8px;
  padding: 2rem;
  background: var(--noir2);
}

.price-card.featured {
  border: 1px solid var(--or);
  background: #0f0d06;
}

.price-tag {
  font-size: 10px;
  color: var(--or);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.price-card h3 {
  font-size: 13px;
  font-weight: 400;
  color: var(--text2);
  margin-bottom: 10px;
}

.price-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--text);
  line-height: 1;
}

.price-amount span {
  font-size: 16px;
  font-weight: 300;
  color: var(--text3);
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0;
}

.price-market {
  font-size: 11px;
  color: var(--text3);
  margin-top: 6px;
}

.saving-badge {
  display: inline-block;
  font-size: 10px;
  color: var(--or);
  background: rgba(201, 168, 76, 0.08);
  border: 0.5px solid rgba(201, 168, 76, 0.2);
  padding: 2px 10px;
  border-radius: 10px;
  margin-top: 8px;
}

.price-features {
  list-style: none;
  margin-top: 1.5rem;
  border-top: 0.5px solid var(--border);
  padding-top: 1.5rem;
}

.price-features li {
  font-size: 13px;
  color: var(--text2);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--or);
  flex-shrink: 0;
}

/* ── POURQUOI NOUS ── */
.args-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.arg-card {
  background: var(--noir2);
  border: 0.5px solid var(--border2);
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.arg-card:hover {
  border-color: var(--or-dim);
}

.arg-card.wide {
  grid-column: span 2;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  border-color: rgba(201, 168, 76, 0.25);
  background: #0f0d06;
}

.arg-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--or);
}

.arg-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.arg-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

/* ── TECHNO ── */
.techno-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 2rem;
}

.techno-card {
  background: var(--noir2);
  border: 0.5px solid var(--border2);
  border-radius: 8px;
  padding: 1.5rem;
}

.techno-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--or);
  margin-bottom: 1rem;
}

.techno-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.techno-card p {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.5;
}

/* ── ÉQUIPE ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.team-card {
  background: var(--noir2);
  border: 0.5px solid var(--border2);
  border-radius: 8px;
  padding: 2rem;
}

.team-card.featured {
  border-color: rgba(201, 168, 76, 0.3);
  background: #0f0d06;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 0.5px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--or);
  margin-bottom: 1rem;
}

.role-tag {
  display: inline-block;
  font-size: 10px;
  color: var(--or);
  border: 0.5px solid rgba(201, 168, 76, 0.3);
  padding: 2px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.team-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}

.team-sub {
  font-size: 12px;
  color: var(--text3);
  margin-bottom: 12px;
}

.team-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1rem;
}

.tag {
  font-size: 10px;
  color: var(--text3);
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid var(--border);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ── TIMELINE ── */
.timeline {
  margin-top: 2.5rem;
}

.tl-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 0.5px solid var(--border);
}
.tl-item:last-child {
  border-bottom: none;
}

.tl-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  color: var(--or);
  letter-spacing: 1px;
  width: 24px;
  flex-shrink: 0;
  padding-top: 2px;
}

.tl-content h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.tl-content p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  background: var(--noir2);
  border: 0.5px solid var(--border2);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  transition: border-color 0.2s;
  resize: none;
}
input::placeholder,
textarea::placeholder {
  color: var(--text3);
}
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--or);
}

.btn-submit {
  width: 100%;
  background: var(--or);
  color: var(--noir);
  padding: 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
  letter-spacing: 0.3px;
}
.btn-submit:hover {
  opacity: 0.85;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.whatsapp-card {
  background: #0d1a10;
  border: 0.5px solid #1e3a22;
  border-radius: 8px;
  padding: 1.75rem;
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.wa-icon {
  width: 44px;
  height: 44px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.wa-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.wa-sub {
  font-size: 12px;
  color: var(--text3);
}

.wa-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 11px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  transition: opacity 0.2s;
}
.btn-wa:hover {
  opacity: 0.85;
}

.info-card {
  background: var(--noir2);
  border: 0.5px solid var(--border2);
  border-radius: 8px;
  padding: 1.5rem;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 0.5px solid var(--border);
}
.info-row:last-child {
  border-bottom: none;
}

.info-icon {
  color: var(--or);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.info-row span {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
}
.info-row strong {
  color: var(--text);
  font-weight: 500;
}

/* ── FOOTER ── */
footer {
  padding: 2rem 3rem;
  border-top: 0.5px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .logo {
  font-size: 15px;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  font-size: 12px;
  color: var(--text3);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--or);
}

footer p {
  font-size: 11px;
  color: var(--text3);
}

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  padding: 6rem 2rem;
  border-bottom: 0.5px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 200px;
  background: radial-gradient(
    ellipse,
    rgba(201, 168, 76, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.or-line {
  width: 40px;
  height: 1px;
  background: var(--or);
  margin: 0 auto 2rem;
}

.cta-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ── LOCATION BAR ── */
.location-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 2rem;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  background: #080808;
}

.location-bar span {
  font-size: 12px;
  color: var(--text3);
}
.location-bar strong {
  color: var(--text2);
  font-weight: 500;
}
.location-dot {
  color: var(--or);
  font-size: 18px;
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .hamburger {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--border);
    padding: 0.5rem 1.5rem 1rem;
  }
  nav.nav-open .nav-links {
    display: flex;
  }
  .nav-links li {
    border-bottom: 0.5px solid var(--border);
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 14px;
  }
  section {
    padding: 3rem 1.5rem;
  }
  #hero h1 {
    font-size: 44px;
  }
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat {
    padding: 1.25rem 1rem;
  }
  .services-grid,
  .pricing-grid,
  .args-grid,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .arg-card.wide,
  .duo-banner {
    grid-column: span 1;
    flex-direction: column;
  }
  .techno-grid {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
  }
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--noir3);
  border: 1px solid var(--border2);
  border-left: 3px solid var(--or);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  max-width: 340px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.toast.toast--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.toast.toast--error {
  border-left-color: #c0392b;
}
.toast-icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* ── MENTIONS LÉGALES ── */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
}
.legal-page h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 3rem;
}
.legal-page h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--or);
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.legal-page p,
.legal-page li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text2);
}
.legal-page ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}
.legal-page a {
  color: var(--or);
  text-decoration: none;
}
.legal-page a:hover {
  text-decoration: underline;
}
.legal-back {
  display: inline-block;
  margin-bottom: 3rem;
  font-size: 13px;
  color: var(--text2);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.legal-back:hover {
  color: var(--or);
}
hr {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 2.5rem 0;
}
