/* =========================================================
   Eurorepar ACA — Pointe-à-Pitre — Template ESCALE
   WebStudio Caraïbes
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── Variables ── */
:root {
  --navy:          #0B1F3A;
  --navy-mid:      #132947;
  --navy-light:    #1D3B5E;
  --orange:        #E55A00;
  --orange-hover:  #CC4F00;
  --orange-light:  #FFF0E8;
  --slate:         #5C6B7A;
  --slate-light:   #8A9BAB;
  --bg:            #F4F6F9;
  --bg-card:       #FFFFFF;
  --border:        #DDE3EA;
  --text:          #0D1B2B;
  --text-muted:    #4A5D6E;
  --white:         #FFFFFF;

  --ff-head: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --ff-body: 'Barlow', Arial, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 3px rgba(11,31,58,.08);
  --shadow-md: 0 4px 16px rgba(11,31,58,.10);
  --shadow-lg: 0 8px 32px rgba(11,31,58,.13);

  --max-w: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section-py: clamp(3rem, 6vw, 5rem);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: clamp(.9375rem, 1vw + .75rem, 1.0625rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
img, svg { display: block; max-width: 100%; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 700; line-height: 1.12; letter-spacing: -.01em; }

/* ── Utility ── */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-py); }
.section--bg { background: var(--bg); }
.section--dark { background: var(--navy); color: var(--white); }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7em 1.5em;
  border-radius: var(--radius-sm);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover { background: var(--navy-mid); border-color: var(--navy-mid); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

/* ── Section header ── */
.section-label {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw + 1rem, 2.6rem);
  color: var(--navy);
  margin-bottom: .75rem;
}
.section--dark .section-title { color: var(--white); }
.section-subtitle {
  color: var(--text-muted);
  max-width: 60ch;
  font-size: 1.05rem;
}
.section--dark .section-subtitle { color: rgba(255,255,255,.68); }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 2px 12px rgba(11,31,58,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 40px; width: auto; }

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.site-nav a {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  padding: .45rem .75rem;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,.1); }
.btn-nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: .45rem 1.1rem !important;
}
.btn-nav-cta:hover { background: var(--orange-hover) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy-mid);
    padding: .75rem var(--gutter);
    gap: .25rem;
    box-shadow: var(--shadow-lg);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .6rem .75rem; }
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  background: var(--navy-light);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-block: clamp(3rem, 8vw, 5.5rem);
}
.hero-eyebrow {
  font-family: var(--ff-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.1rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-desc {
  color: rgba(255,255,255,.72);
  max-width: 52ch;
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

/* USP pills in hero */
.hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.75rem;
}
.hero-usp-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: .3em .9em;
  font-family: var(--ff-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
}
.hero-usp-pill svg { width: 13px; height: 13px; fill: var(--orange); flex-shrink: 0; }

@media (max-width: 768px) {
  .hero::after { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { align-items: stretch; }
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--orange);
  padding-block: 1.2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  margin-top: .25rem;
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; padding-block: .5rem; }
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .18s, transform .18s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-card-icon svg { width: 22px; height: 22px; fill: var(--orange); }
.service-card h3 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}
.service-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.55; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

/* ── NETWORK BAND ── */
.network-band {
  background: var(--navy);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.network-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: .6rem 1.4rem;
  margin-bottom: 1.5rem;
}
.network-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.network-badge span {
  font-family: var(--ff-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.network-title {
  font-size: clamp(1.5rem, 2.5vw + .8rem, 2.2rem);
  color: var(--white);
  margin-bottom: .75rem;
}
.network-title em { font-style: normal; color: var(--orange); }
.network-subtitle {
  color: rgba(255,255,255,.62);
  max-width: 55ch;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: 1rem;
}
.network-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin-inline: auto;
}
.network-benefit {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
}
.network-benefit svg { width: 28px; height: 28px; fill: var(--orange); margin: 0 auto .75rem; }
.network-benefit h4 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
}
.network-benefit p { font-size: .82rem; color: rgba(255,255,255,.58); line-height: 1.45; }

@media (max-width: 768px) { .network-benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .network-benefits { grid-template-columns: 1fr; } }

/* ── B2B BAND ── */
.b2b-band {
  background: var(--bg);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.b2b-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.b2b-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3em .9em;
  border-radius: var(--radius-sm);
  margin-bottom: .9rem;
}
.b2b-inner h2 {
  font-size: clamp(1.5rem, 2.5vw + .6rem, 2rem);
  color: var(--navy);
  margin-bottom: .75rem;
}
.b2b-inner p { color: var(--text-muted); margin-bottom: 1.25rem; }
.b2b-list { display: flex; flex-direction: column; gap: .5rem; }
.b2b-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .95rem;
  color: var(--text-muted);
}
.b2b-list li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23E55A00' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: .2em;
}
.b2b-visual { position: relative; }

@media (max-width: 768px) { .b2b-inner { grid-template-columns: 1fr; } }

/* ── REVIEWS ── */
.reviews-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .35rem 1rem;
  font-size: .88rem;
  color: var(--text-muted);
}
.stars { color: #FFC107; font-size: 1rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.review-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .35rem;
}
.review-author { font-family: var(--ff-head); font-weight: 700; color: var(--navy); font-size: 1rem; }
.review-date { font-size: .8rem; color: var(--slate-light); }
.review-stars { color: #FFC107; margin-bottom: .65rem; font-size: 1rem; }
.review-text { font-size: .92rem; color: var(--text-muted); line-height: 1.55; }
.reviews-attribution { margin-top: 1.5rem; font-size: .84rem; color: var(--slate-light); text-align: center; }
.reviews-attribution a { color: var(--orange); }

@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--orange);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(1.5rem, 3vw + .6rem, 2.2rem);
  color: var(--white);
  margin-bottom: .6rem;
}
.cta-strip p { color: rgba(255,255,255,.82); max-width: 52ch; margin: 0 auto 1.75rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.btn-white { background: var(--white); color: var(--orange); border-color: var(--white); }
.btn-white:hover { background: rgba(255,255,255,.9); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.55); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ── VISUAL PLACEHOLDERS ── */
.visual-placeholder {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
  font-family: var(--ff-head);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  min-height: 200px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.visual-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 12px,
    rgba(255,255,255,.03) 12px,
    rgba(255,255,255,.03) 24px
  );
}

/* ── CONTACT SECTION ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .9rem;
  font-size: .97rem;
  color: var(--text-muted);
}
.contact-detail svg { width: 18px; height: 18px; fill: var(--orange); flex-shrink: 0; margin-top: .15em; }
.contact-detail strong { color: var(--text); }
.contact-map {
  margin-top: 1.25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe { display: block; border: none; width: 100%; height: 220px; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field label { font-family: var(--ff-head); font-size: .85rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--navy); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: .97rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(229,90,0,.12);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-honey { display: none; }
.form-submit { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-top: 3rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .logo-text {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: .15rem;
}
.footer-brand .logo-sub {
  font-family: var(--ff-head);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: .75rem;
}
.footer-brand p { font-size: .9rem; line-height: 1.6; color: rgba(255,255,255,.58); }
.footer-nav h4, .footer-contact h4 {
  font-family: var(--ff-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: .9rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .45rem; }
.footer-nav a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: color .15s;
  text-decoration: none;
}
.footer-nav a:hover { color: var(--orange); }
.footer-contact { font-size: .9rem; line-height: 1.7; }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.25rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-bottom a:hover { color: var(--orange); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── INNER PAGES ── */
.page-hero {
  background: var(--navy);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 3px solid var(--orange);
}
.page-hero-eyebrow { font-family: var(--ff-head); font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin-bottom: .6rem; }
.page-hero h1 { font-size: clamp(1.8rem, 3vw + .8rem, 3rem); color: var(--white); }
.page-hero p { color: rgba(255,255,255,.65); max-width: 55ch; margin-top: .65rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .82rem; color: rgba(255,255,255,.45); margin-bottom: 1rem; align-items: center; }
.breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: rgba(255,255,255,.25); }

/* Services page full list */
.services-full { padding-block: var(--section-py); }
.services-category { margin-bottom: 3rem; }
.services-category h2 {
  font-size: 1.4rem;
  color: var(--navy);
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--orange);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.services-category h2 svg { width: 22px; height: 22px; fill: var(--orange); }
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-md);
}
.service-item svg { width: 20px; height: 20px; fill: var(--orange); flex-shrink: 0; margin-top: .1em; }
.service-item-body h4 { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .15rem; }
.service-item-body p { font-size: .87rem; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 600px) { .services-list-grid { grid-template-columns: 1fr; } }

/* A-propos */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.about-story h2 { font-size: clamp(1.4rem, 2vw + .8rem, 2rem); color: var(--navy); margin-bottom: .75rem; }
.about-story p { color: var(--text-muted); margin-bottom: .75rem; }
@media (max-width: 768px) { .about-story { grid-template-columns: 1fr; } }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.value-card { background: var(--bg-card); border: 1px solid var(--border); border-top: 3px solid var(--orange); border-radius: var(--radius-md); padding: 1.5rem; text-align: center; }
.value-card svg { width: 32px; height: 32px; fill: var(--orange); margin: 0 auto .75rem; }
.value-card h3 { font-family: var(--ff-head); font-size: 1.1rem; color: var(--navy); margin-bottom: .4rem; }
.value-card p { font-size: .88rem; color: var(--text-muted); }
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; } }

/* Mentions légales */
.legal-content { max-width: 80ch; margin: 0 auto; }
.legal-content h2 { font-family: var(--ff-head); font-size: 1.3rem; color: var(--navy); margin: 2rem 0 .5rem; }
.legal-content h3 { font-family: var(--ff-head); font-size: 1.05rem; color: var(--navy); margin: 1.25rem 0 .35rem; }
.legal-content p { color: var(--text-muted); margin-bottom: .75rem; font-size: .95rem; }

/* ── REVEAL ANIMATIONS (AnimationDesigner slot) ── */
/* AnimationDesigner */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATION PASS — Template ESCALE · WebStudio Caraïbes
   Navy #0B1F3A / Orange #E55A00 / Barlow Condensed
   ═══════════════════════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes escale-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes escale-scale-in {
  from { opacity: 0; transform: scale(.96) translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes escale-btn-pulse {
  0%   { box-shadow: 0 4px 14px rgba(229,90,0,.32), 0 0 0 0 rgba(229,90,0,.45); }
  60%  { box-shadow: 0 4px 14px rgba(229,90,0,.32), 0 0 0 10px rgba(229,90,0,0); }
  100% { box-shadow: 0 4px 14px rgba(229,90,0,.32), 0 0 0 0 rgba(229,90,0,0); }
}

/* ── Hero page-load entry (above-fold: CSS animation, not scroll-reveal) ── */
.hero-eyebrow { animation: escale-fade-up .5s ease both .15s; }
.hero h1      { animation: escale-fade-up .6s ease both .28s; }
.hero-desc    { animation: escale-fade-up .5s ease both .44s; }
.hero-actions { animation: escale-fade-up .5s ease both .58s; }
.hero-usps    { animation: escale-fade-up .5s ease both .72s; }
.hero-visual  { animation: escale-scale-in .7s ease both .32s; }

/* ── Orange pulse on primary CTAs ── */
.btn-primary {
  transition: background .18s, color .18s, border-color .18s, box-shadow .2s, transform .18s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  animation: escale-btn-pulse .65s ease-out forwards;
}
.btn-nav-cta:hover { animation: escale-btn-pulse .65s ease-out forwards; }

/* ── Stats strip entrance ── */
.stats-strip .stat-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .42s ease, transform .42s ease;
}
.stats-strip.stats-in-view .stat-item              { opacity: 1; transform: none; }
.stats-strip.stats-in-view .stat-item:nth-child(1) { transition-delay: .00s; }
.stats-strip.stats-in-view .stat-item:nth-child(2) { transition-delay: .10s; }
.stats-strip.stats-in-view .stat-item:nth-child(3) { transition-delay: .20s; }
.stats-strip.stats-in-view .stat-item:nth-child(4) { transition-delay: .30s; }

/* ── Enhanced card & benefit hover ── */
.review-card {
  transition: box-shadow .22s ease, transform .22s ease;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.network-benefit {
  transition: box-shadow .22s ease, transform .22s ease, border-top-color .22s ease;
}
.network-benefit:hover {
  box-shadow: 0 4px 18px rgba(229,90,0,.16);
  transform: translateY(-2px);
}
