/* ============================================================
   OrWeb84 — styles.css
   Palette : Bleu abyssal #0F1C35 + Or solaire #F5A623
============================================================ */

/* ============================================================
   1. RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   2. DESIGN TOKENS
============================================================ */
:root {
  /* Couleurs de marque */
  --brand-deep:    #0F1C35;
  --brand-navy:    #1A2E52;
  --brand-navy-md: #243660;
  --brand-gold:    #F5A623;
  --brand-gold-lt: #FFD07A;
  --brand-ivory:   #F8F6F1;

  /* Fonds */
  --bg-base:    #FFFFFF;
  --bg-subtle:  #F8F6F1;
  --bg-dark:    #0F1C35;

  /* Texte */
  --text-primary:   #0F1C35;
  --text-secondary: #4A5568;
  --text-muted:     #8A94A6;
  --text-inverse:   #FFFFFF;
  --text-gold:      #C8811A;

  /* Bordures */
  --border-light:  rgba(15,28,53,0.08);
  --border-medium: rgba(15,28,53,0.15);
  --border-dark:   rgba(15,28,53,0.25);

  /* Accents */
  --accent:        #F5A623;
  --accent-hover:  #E09418;
  --accent-subtle: rgb(253 201 107);

  /* Espacements */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-pill:100px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.25, 1, 0.5, 1);

  --container: 1200px;
  --nav-h: 72px;
}

/* ============================================================
   3. ANIMATIONS
============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(245,166,35,0.4); }
  70%  { box-shadow: 0 0 0 12px rgba(245,166,35,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,166,35,0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes shimmer-line {
  0%   { left: -100%; }
  100% { left: 100%; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible       { opacity: 1; transform: translateY(0); }
.reveal-delay-1       { transition-delay: 0.1s; }
.reveal-delay-2       { transition-delay: 0.2s; }
.reveal-delay-3       { transition-delay: 0.3s; }
.reveal-delay-4       { transition-delay: 0.4s; }

/* ============================================================
   4. LAYOUT HELPERS
============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.section        { padding: var(--space-2xl) 0; }
.section-dark   { background: var(--bg-dark); color: var(--text-inverse); }
.section-ivory  { background: var(--bg-subtle); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ============================================================
   5. NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-light);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.nav-logo img   { height: 120px; width: auto; }
.nav-links      { display: flex; align-items: center; gap: var(--space-lg); }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s var(--ease-spring);
}
.nav-links a:hover             { color: var(--brand-gold); }
.nav-links a:hover::after      { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: var(--space-sm); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  padding: var(--space-md);
  flex-direction: column;
  gap: var(--space-sm);
  border-bottom: 1px solid var(--border-light);
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary);
}

/* ============================================================
   6. BOUTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  transition: all 0.2s var(--ease-smooth);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #1A0800;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.35);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-medium);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-subtle);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* ============================================================
   7. HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(245,166,35,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(26,46,82,0.8) 0%, transparent 60%),
    linear-gradient(160deg, rgba(15,28,53,0.95) 0%, rgba(15,28,53,0.7) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + var(--space-xl)) var(--space-md) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-gold-lt);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.6s var(--ease-out) both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-gold);
  animation: pulse-ring 2s infinite;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.6s var(--ease-out) 0.1s both;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s var(--ease-out) 0.2s both;
}
.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  animation: fadeInUp 0.6s var(--ease-out) 0.3s both;
}
.hero-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  animation: fadeInUp 0.6s var(--ease-out) 0.4s both;
}
.hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  animation: fadeInScale 0.8s var(--ease-out) 0.2s both;
}
.hero-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 32px 80px rgba(0,0,0,0.5);
  animation: float 6s ease-in-out infinite;
}
.hero-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero-card-1 { bottom: -24px; left: -32px; }
.hero-card-2 { top: -20px; right: -24px; }
.hero-card-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-card-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-deep);
}
.hero-card-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(245,166,35,0.6), transparent);
  animation: float 2s ease-in-out infinite;
}

/* ============================================================
   8. MARQUEE
============================================================ */
.marquee-section {
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: var(--space-xl);
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.marquee-item-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* ============================================================
   9. SERVICES
============================================================ */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
}
.services-intro-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
}
.services-intro-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

/* Carte service avec image pleine largeur */
.service-card {
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(15,28,53,0.14);
}

/* Conteneur image — hauteur fixe */
.service-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--bg-subtle);
  flex-shrink: 0;
}

/* Par défaut : photo réelle → cover centré */
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease-smooth);
  display: block;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.04);
}

/* Images type "icône sur fond sombre" : contain + fond assorti */
.service-img-wrap.img-icon {
  background: #0a1628;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img-wrap.img-icon img {
  object-fit: contain;
  padding: 24px;
}
.service-card:hover .service-img-wrap.img-icon img {
  transform: scale(1.06);
}

/* Image e-commerce (portrait, sujet en haut) */
.service-img-wrap.img-portrait img {
  object-fit: cover;
  object-position: center 20%;
}

/* Image community (fond clair, pleine largeur) */
.service-img-wrap.img-community {
  background: #f0ede8;
}
.service-img-wrap.img-community img {
  object-fit: contain;
  object-position: center;
  padding: 16px 0;
}

/* Badge doré flottant sur l'image */
.service-img-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(15,28,53,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245,166,35,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease-spring), background 0.3s;
}
.service-card:hover .service-img-badge {
  background: var(--accent);
  transform: scale(1.1) rotate(-5deg);
}

/* Barre dorée animée en bas de l'image */
.service-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-smooth);
}
.service-card:hover .service-img-wrap::after {
  transform: scaleX(1);
}

/* Corps texte de la carte */
.service-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.service-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
  flex: 1;
}

/* ============================================================
   10. RÉALISATIONS (carousel)
============================================================ */
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.projects-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}
.carousel-wrap {
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s var(--ease-smooth);
}
.project-card {
  min-width: calc(33.333% - 14px);
  width: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-smooth);
}
.project-card:hover { transform: translateY(-4px); }
.project-img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-smooth);
}
.project-card:hover .project-img { transform: scale(1.04); }
.project-info { padding: 20px; }
.project-year {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.project-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.project-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin-bottom: 14px;
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-gold);
  transition: gap 0.2s;
}
.project-link:hover { gap: 10px; }
.carousel-controls {
  display: flex;
  gap: 12px;
  margin-top: var(--space-lg);
  justify-content: center;
}
.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #1A0800;
}
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.carousel-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

/* ============================================================
   11. TARIFS
============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: var(--space-lg);
}
.pricing-card {
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s var(--ease-smooth);
}
.pricing-card:hover {
  box-shadow: 0 16px 48px rgba(15,28,53,0.1);
  transform: translateY(-4px);
}
.pricing-card.featured {
  background: var(--brand-deep);
  border-color: rgba(245,166,35,0.3);
  color: #fff;
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(245,166,35,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.pricing-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.pricing-badge-standard { background: var(--accent-subtle); color: var(--text-gold); }
.pricing-badge-featured  { background: rgba(245,166,35,0.2); color: var(--brand-gold-lt); }
.pricing-badge-custom    { background: rgba(15,28,53,0.08); color: var(--text-secondary); }
.pricing-name  { font-size: 1.3rem; font-weight: 700; margin-bottom: var(--space-xs); }
.pricing-desc  { font-size: 0.9rem; line-height: 1.6; margin-bottom: var(--space-md); }
.pricing-card:not(.featured) .pricing-desc { color: var(--text-secondary); }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.6); }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--space-md);
}
.pricing-amount {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.pricing-suffix { font-size: 0.9rem; color: var(--text-muted); }
.pricing-card.featured .pricing-suffix { color: rgba(255,255,255,0.5); }
.pricing-divider {
  height: 1px;
  background: var(--border-light);
  margin: var(--space-md) 0;
}
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-lg);
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}
.pricing-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card.featured .pricing-check { background: rgba(245,166,35,0.2); color: var(--brand-gold-lt); }
.pricing-card:not(.featured) .pricing-feature-text { color: var(--text-secondary); }
.pricing-card.featured .pricing-feature-text { color: rgba(255,255,255,0.75); }

/* ============================================================
   12. À PROPOS
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 24px 64px rgba(15,28,53,0.2);
}
.about-accent-card {
  position: absolute;
  bottom: -20px; right: -24px;
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(15,28,53,0.12);
}
.about-accent-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.about-accent-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.about-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}
.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}
.about-values { display: flex; flex-direction: column; gap: 16px; margin-bottom: var(--space-lg); }
.about-value  { display: flex; align-items: flex-start; gap: 14px; }
.about-value-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.about-value-title { font-size: 0.92rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.about-value-desc  { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

/* ============================================================
   13. TÉMOIGNAGES
============================================================ */
.testimonials-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}
.testimonials-sub { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: var(--space-xl); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all 0.25s var(--ease-smooth);
}
.testimonial-card:hover {
  border-color: var(--border-medium);
  box-shadow: 0 8px 32px rgba(15,28,53,0.08);
  transform: translateY(-2px);
}
.testimonial-quote {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent);
  font-family: Georgia, serif;
  margin-bottom: var(--space-sm);
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name  { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.testimonial-role  { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-stars {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

/* ============================================================
   14. CONTACT
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 380px;
  object-fit: cover;
  margin-bottom: var(--space-md);
}
.contact-info-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.contact-info-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}
.contact-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--space-lg); }
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.contact-mailto {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
  margin-bottom: var(--space-lg);
}
.contact-mailto:hover {
  background: var(--brand-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,28,53,0.25);
}
.contact-divider {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  color: var(--text-muted);
  font-size: 0.82rem;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

/* Formulaire */
.contact-form-card {
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(15,28,53,0.06);
}
.form-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}
.form-group { margin-bottom: var(--space-sm); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-label .required { color: var(--accent); }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-base);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.2s;
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-input:hover,
.form-textarea:hover,
.form-select:hover { border-color: var(--border-medium); }
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #1A0800;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.35);
}
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-submit::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer-line 2.5s ease-in-out infinite;
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* Alertes formulaire */
.form-alert {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.form-alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Spinner */
.spinner {
  width: 18px; height: 18px;
  border: 3px solid rgba(26,8,0,0.3);
  border-radius: 50%;
  border-top-color: #1A0800;
  animation: spin 1s ease-in-out infinite;
  display: none;
}
.spinner.visible { display: block; }
.btn-label { display: block; }
.btn-label.hidden { display: none; }

/* ============================================================
   15. FOOTER
============================================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.55);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.footer-logo img {
  height: 72px;
  margin-bottom: var(--space-md);
  
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
}
.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--brand-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer-copy  { font-size: 0.82rem; }
.footer-mail  {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-mail:hover { color: var(--brand-gold); }

/* ============================================================
   16. RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }

  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual  { display: none; }
  .hero-stats   { justify-content: center; }
  .hero-actions { justify-content: center; }

  .services-intro  { grid-template-columns: 1fr; }
  .about-grid      { grid-template-columns: 1fr; }
  .about-img-wrap  { display: none; }
  .contact-grid    { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .form-row        { grid-template-columns: 1fr; }
  .pricing-grid    { grid-template-columns: 1fr; }

  .project-card { min-width: calc(80% - 10px); }
}

@media (max-width: 600px) {
  :root { --space-2xl: 4rem; --space-xl: 2.5rem; }
  .footer-grid        { grid-template-columns: 1fr; }
  .contact-form-card  { padding: 24px; }
}