/* ═══════════════════════════════════════════════════════
   AG CAMBODIA — MAIN STYLESHEET
   ───────────────────────────────────────────────────────
   Pour modifier les couleurs du site, changez uniquement
   les variables dans la section :root ci-dessous.
   ═══════════════════════════════════════════════════════ */

/* ──────────────────────────────────
   1. VARIABLES — COULEURS & TOKENS
   ────────────────────────────────── */
:root {
  /* Couleurs principales — modifiez ici pour changer tout le site */
  --navy:        #0A4658;   /* Bleu navy principal */
  --navy-mid:    #0F6680;   /* Bleu intermédiaire (hover) */
  --navy-light:  #148BAF;   /* Bleu clair */
  --gold:        #D4A843;   /* Or cambodgien */
  --gold-light:  #F5E6B8;   /* Or clair (fonds) */
  --gold-dark:   #B8882A;   /* Or foncé (hover) */
  --white:       #FFFFFF;
  --off-white:   #F7F5F0;   /* Fond principal des sections claires */
  --ink:         #1A1A2E;   /* Texte principal */
  --ink-soft:    #4A4A6A;   /* Texte secondaire */
  --ink-muted:   #8A8AA0;   /* Texte discret */
  --border:      #E2DDD6;   /* Bordures */
  --border-soft: #EEE9E2;   /* Bordures légères */

  /* Rayons des coins */
  --radius-sm:  5px;
  --radius:     12px;
  --radius-lg:  20px;

  /* Ombres */
  --shadow-sm:  0 1px 4px rgba(10,70,88,.08);
  --shadow:     0 4px 20px rgba(10,70,88,.12);
  --shadow-lg:  0 12px 48px rgba(10,70,88,.18);

  /* Typographie */
  --font-body:    'Inter', sans-serif;
  --font-display: 'Roboto', sans-serif;
}

/* ──────────────────────────────────
   2. RESET & BASE
   ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ──────────────────────────────────
   3. LAYOUT
   ────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ──────────────────────────────────
   4. BOUTONS
   ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 11px 22px;
  cursor: pointer;
  transition: all .18s;
  text-decoration: none;
  border: none;
  letter-spacing: .01em;
  white-space: nowrap;
}
.btn-gold         { background: var(--gold); color: var(--navy); }
.btn-gold:hover   { background: var(--gold-dark); color: #fff; }
.btn-navy         { background: var(--navy); color: #fff; }
.btn-navy:hover   { background: var(--navy-mid); }
.btn-ghost        { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-ghost:hover  { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline      { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover{ background: var(--navy); color: #fff; }

/* ──────────────────────────────────
   5. TYPOGRAPHIE COMMUNE
   ────────────────────────────────── */
.eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: .55rem;
}
.eyebrow::after {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: .65rem;
}
.section-h2 em { color: var(--navy); font-style: normal; }
.section-sub {
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 54ch;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ──────────────────────────────────
   6. NAVBAR
   ────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10,70,88,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,168,67,.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1;
}
.nav-logo-tagline {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-links a:hover { color: #fff; }
/* Dropdown */
.nav-links .has-sub { position: relative; }
.nav-links .has-sub:hover .sub-menu { display: block; }
.sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  background: #fff;
  border-radius: var(--radius);
  padding: .5rem 0;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 300;
}
.sub-menu a {
  display: block;
  padding: .55rem 1.1rem;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 400;
  transition: background .12s;
}
.sub-menu a:hover { background: var(--off-white); color: var(--navy); }
.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-phone:hover { color: #fff; }

/* ──────────────────────────────────
   7. HERO
   ────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  background: #05232C;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(20,139,175,.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 60%, rgba(212,168,67,.08) 0%, transparent 60%),
    linear-gradient(160deg, #05232C 0%, #0A4658 45%, #062B36 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,.012) 40px, rgba(255,255,255,.012) 41px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(212,168,67,.025) 40px, rgba(212,168,67,.025) 41px);
}
.hero-angkor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  pointer-events: none;
  z-index: 3;
  opacity: .12;
}
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 5rem 0 3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-eyebrow-line { width: 28px; height: 1.5px; background: var(--gold); }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 1.35rem;
}
.hero-h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 46ch;
}
.hero-ctas { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.hero-trust-avs { display: flex; }
.trust-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(212,168,67,.25);
  color: var(--gold);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-left: -9px;
}
.trust-av:first-child { margin-left: 0; }
.hero-wave { position: relative; z-index: 5; margin-top: -2px; line-height: 0; }
.hero-wave svg { display: block; width: 100%; }

/* Hero risk cards */
.hero-risks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.risk-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(4px);
}
.risk-card:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(212,168,67,.4);
}
.risk-card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(212,168,67,.15);
  border: 1px solid rgba(212,168,67,.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem;
}
.risk-card-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: .3rem; }
.risk-card-desc  { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; }
.risk-card.wide {
  grid-column: span 2;
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(212,168,67,.12);
  border-color: rgba(212,168,67,.35);
}
.risk-card.wide .risk-card-icon { margin-bottom: 0; flex-shrink: 0; }

/* ──────────────────────────────────
   8. STATS BAR
   ────────────────────────────────── */
.stats-bar { background: var(--gold); padding: 2rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item { padding: .5rem 1rem; position: relative; }
.stat-item + .stat-item::before {
  content: '';
  position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(10,70,88,.2);
}
.stat-val {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700;
  color: var(--navy);
  line-height: 1; margin-bottom: .3rem;
}
.stat-val sup { font-size: 1.4rem; }
.stat-lbl { font-size: 13px; color: rgba(10,70,88,.75); font-weight: 500; line-height: 1.35; }

/* ──────────────────────────────────
   9. SEGMENTATION
   ────────────────────────────────── */
.segment { padding: 5rem 0; background: #fff; }
.seg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.seg-card {
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border);
  transition: box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.seg-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.seg-card.corp::before  { background: var(--navy); }
.seg-card.expat::before { background: var(--gold); }
.seg-card:hover { box-shadow: var(--shadow); border-color: var(--navy); }
.seg-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  margin-bottom: 1.25rem;
}
.seg-card.corp  .seg-badge { background: #E8F0FA; color: var(--navy); }
.seg-card.expat .seg-badge { background: var(--gold-light); color: var(--gold-dark); }
.seg-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.seg-card.corp  .seg-icon { background: #E8F0FA; }
.seg-card.expat .seg-icon { background: var(--gold-light); }
.seg-title { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.seg-sub   { font-size: 14px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 1.4rem; }
.seg-pills { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.6rem; }
.seg-pill  {
  font-size: 12px; border-radius: 20px; padding: 4px 11px;
  font-weight: 500; border: 1px solid var(--border);
  color: var(--ink-soft); background: #fff;
}
.seg-card.corp  .seg-pill { border-color: #C5D8F0; color: var(--navy-mid); background: #EEF4FB; }
.seg-card.expat .seg-pill { border-color: #E8D5A0; color: var(--gold-dark); background: #FBF5E2; }
.seg-link {
  font-size: 14px; font-weight: 600; color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; transition: gap .15s;
}
.seg-link:hover { gap: 10px; }

/* ──────────────────────────────────
   10. GRILLE PRODUITS (ALL RISKS)
   ────────────────────────────────── */
.all-risks { padding: 5rem 0; background: var(--off-white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  text-decoration: none;
  display: block;
}
.product-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.product-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  background: #EEF4FB;
}
.product-category { font-size: 10.5px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: .3rem; }
.product-title    { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: .45rem; }
.product-desc     { font-size: 13px; color: var(--ink-muted); line-height: 1.6; margin-bottom: 1rem; }
.product-cta      { font-size: 13px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 5px; }
.product-card.cta-card {
  background: var(--navy);
  border-color: var(--navy);
  display: flex; flex-direction: column; justify-content: space-between;
}
.product-card.cta-card .product-icon   { background: rgba(212,168,67,.2); }
.product-card.cta-card .product-category { color: var(--gold); }
.product-card.cta-card .product-title  { color: #fff; font-size: 18px; }
.product-card.cta-card .product-desc   { color: rgba(255,255,255,.6); }

/* ──────────────────────────────────
   11. COMMENT ÇA MARCHE
   ────────────────────────────────── */
.how { padding: 5rem 0; background: #fff; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 16px);
}
.step {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-soft);
  transition: border-color .2s;
}
.step:hover { border-color: var(--navy); }
.step-num-wrap {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  position: relative; z-index: 1;
}
.step-num  { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: #fff; }
.step-title{ font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.step-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* ──────────────────────────────────
   12. PARTENAIRES
   ────────────────────────────────── */
.partners { padding: 3.5rem 0; background: var(--navy); }
.partners-label {
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  text-align: center; margin-bottom: 1.75rem;
}
.partners-logos { text-align: center; margin-bottom: 1.5rem; }
.partners-logos img { max-height: 90px; margin: 0 auto; opacity: .8; filter: brightness(0) invert(1); }
.partners-grid { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.partner-chip {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px; padding: .6rem 1.1rem;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8);
  transition: all .15s;
}
.partner-chip:hover { background: rgba(212,168,67,.15); border-color: rgba(212,168,67,.4); color: #fff; }
.partner-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ──────────────────────────────────
   13. POURQUOI AG CAMBODIA
   ────────────────────────────────── */
.why { padding: 5rem 0; background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  background: var(--navy);
}
.why-visual img { width: 100%; height: 100%; object-fit: cover; }
.why-visual svg { width: 100%; height: 100%; }
.why-list  { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 1.75rem; }
.why-item  { display: flex; gap: .9rem; align-items: flex-start; }
.why-icon  {
  width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
  background: #EEF4FB;
  display: flex; align-items: center; justify-content: center;
}
.why-item-title{ font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: .25rem; }
.why-item-desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

/* ──────────────────────────────────
   14. TÉMOIGNAGES
   ────────────────────────────────── */
.testimonials { padding: 5rem 0; background: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.review {
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow .2s;
}
.review:hover { box-shadow: var(--shadow-sm); }
.review.featured {
  background: var(--navy);
  border-color: var(--navy);
  grid-row: span 2;
  display: flex; flex-direction: column;
}
.review-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: .75rem; }
.review-text  { font-size: 14px; line-height: 1.72; margin-bottom: 1rem; font-style: italic; flex: 1; }
.review.featured  .review-text { color: rgba(255,255,255,.8); }
.review:not(.featured) .review-text { color: var(--ink-soft); }
.review-author { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.rev-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.review.featured  .rev-av { background: rgba(212,168,67,.25); color: var(--gold); }
.review:not(.featured) .rev-av { background: #EEF4FB; color: var(--navy); }
.rev-name { font-size: 14px; font-weight: 700; }
.review.featured  .rev-name { color: #fff; }
.review:not(.featured) .rev-name { color: var(--ink); }
.rev-meta { font-size: 12px; }
.review.featured  .rev-meta { color: rgba(255,255,255,.5); }
.review:not(.featured) .rev-meta { color: var(--ink-muted); }

/* ──────────────────────────────────
   15. FORMULAIRE DE DEVIS
   ────────────────────────────────── */
.quote-section {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #05232C 0%, #0A4658 100%);
  position: relative; overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(212,168,67,.025) 50px, rgba(212,168,67,.025) 51px);
}
.quote-wrap {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
  position: relative; z-index: 1;
}
.quote-intro .section-h2 { color: #fff; }
.quote-intro .eyebrow    { color: var(--gold); opacity: .9; }
.quote-intro .eyebrow::after { background: var(--gold); }
.quote-intro p { color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.7; margin-bottom: 2rem; }
.quote-features { display: flex; flex-direction: column; gap: .85rem; }
.qf-row  { display: flex; align-items: flex-start; gap: .75rem; }
.qf-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }
.qf-text { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.55; }
.quote-contacts { margin-top: 2rem; display: flex; gap: .75rem; flex-wrap: wrap; }
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}
.form-card h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: .3rem; }
.form-card > p { font-size: 13px; color: var(--ink-muted); margin-bottom: 1.4rem; }
.form-tabs { display: flex; gap: .3rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.tab {
  font-size: 12.5px; padding: 6px 13px; border-radius: 20px;
  cursor: pointer; font-family: var(--font-body); font-weight: 500;
  border: 1px solid var(--border); background: #fff;
  color: var(--ink-soft); transition: all .15s;
}
.tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  margin-bottom: .7rem;
}
.form-field { display: flex; flex-direction: column; gap: 4px; }
.form-field label { font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.form-field input,
.form-field select {
  height: 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  padding: 0 .85rem;
  width: 100%;
  outline: none;
  transition: border-color .15s;
}
.form-field input:focus,
.form-field select:focus { border-color: var(--navy); }
.form-submit {
  width: 100%; margin-top: 1rem;
  background: var(--navy); color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: .9rem;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background .15s;
}
.form-submit:hover { background: var(--navy-mid); }
.form-note {
  font-size: 12px; color: var(--ink-muted);
  text-align: center; margin-top: .75rem;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}

/* ──────────────────────────────────
   16. FOOTER
   ────────────────────────────────── */
.site-footer {
  background: #031D27;
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: .9rem; text-decoration: none;
}
.footer-logo img   { height: 58px; width: auto; }
.footer-logo-name  { font-size: 16px; font-weight: 700; color: #fff; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 1rem; }
.footer-badge {
  display: inline-block;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px; padding: 3px 10px;
  font-size: 11px; color: rgba(255,255,255,.4);
}
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: .9rem; letter-spacing: .02em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contacts { display: flex; flex-direction: column; gap: .7rem; }
.fc-row { display: flex; align-items: flex-start; gap: .6rem; font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.5; }
.fc-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.5rem; font-size: 12px; color: rgba(255,255,255,.3);
  flex-wrap: wrap; gap: .75rem;
}
.footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; transition: color .15s; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }
.footer-bottom-links { display: flex; gap: 1.25rem; }

/* ──────────────────────────────────
   17. PAGE INTÉRIEURE — HERO SIMPLE
   ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #05232C 0%, #0A4658 100%);
  padding: 4rem 0 3.5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 41px);
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 1.25rem; }
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }
.page-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: #fff;
  line-height: 1.2; margin-bottom: .75rem;
}
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,.65); max-width: 52ch; line-height: 1.7; }

/* ──────────────────────────────────
   18. ANIMATIONS
   ────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp .65s ease forwards; }
.d1 { animation-delay: .10s; }
.d2 { animation-delay: .22s; }
.d3 { animation-delay: .34s; }
.d4 { animation-delay: .44s; }

/* Scroll reveal — géré par script.js */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────
   19. RESPONSIVE
   ────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid, .seg-grid, .why-grid,
  .quote-wrap, .footer-grid { grid-template-columns: 1fr; }
  .hero-risks    { margin-top: 2.5rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: 1fr 1fr; }
  .review.featured{ grid-row: auto; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .steps-grid    { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}
@media (max-width: 640px) {
  .nav-links     { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .container     { padding: 0 1.1rem; }
  .hero-content  { padding: 3rem 0 2rem; }
  .hero          { min-height: auto; }
  .form-row      { grid-template-columns: 1fr; }
}
