/* =========================================================
   Repère Solutions — feuille de styles
   Palette dérivée du logo officiel :
   navy #061D3D · #0B2545   |   bleu de marque #1156FD
   ========================================================= */

:root{
  --navy-deep:#061d3d;
  --navy:#0b2545;
  --navy-soft:#12365f;
  --blue:#1156fd;
  --blue-bright:#2b6bff;
  --blue-light:#4d8bff;
  --blue-pale:#e8f0ff;
  --blue-tint:#f4f8ff;

  --text:#1e2b3b;
  --muted:#66758a;
  --muted-2:#5f6e85;
  --line:#e5eaf3;
  --line-soft:#eef2f9;
  --bg:#f7f9fc;
  --white:#fff;

  --shadow-sm:0 2px 10px rgba(11,37,69,.05);
  --shadow-md:0 12px 34px rgba(11,37,69,.08);
  --shadow-lg:0 26px 64px rgba(11,37,69,.14);
  --shadow-blue:0 12px 30px rgba(17,86,253,.26);

  --r-sm:10px;
  --r-md:16px;
  --r-lg:22px;
  --r-xl:28px;

  --header-h:80px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--header-h) + 12px);
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  font-size:16px;
  line-height:1.65;
  color:var(--text);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
img,svg{max-width:100%;display:block}
h1,h2,h3{color:var(--navy);margin-top:0;letter-spacing:-.025em}
p{margin:0 0 16px}
p:last-child{margin-bottom:0}

:focus-visible{
  outline:3px solid var(--blue-bright);
  outline-offset:3px;
  border-radius:6px;
}

.container{width:min(1160px,calc(100% - 48px));margin-inline:auto}

.skip-link{
  position:absolute;
  left:16px;
  top:-64px;
  z-index:300;
  padding:12px 20px;
  border-radius:0 0 var(--r-sm) var(--r-sm);
  background:var(--navy);
  color:#fff;
  font-weight:600;
  font-size:14px;
  transition:top .2s var(--ease);
}
.skip-link:focus{top:0}

/* ---------- éléments partagés ---------- */

.eyebrow{
  margin:0 0 14px;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--blue);
  font-size:12px;
  font-weight:700;
}
.eyebrow.light{color:#7fb0ff}

.rule{
  display:block;
  width:56px;
  height:3px;
  border-radius:99px;
  background:var(--blue);
  margin:22px 0 26px;
}
.rule.center{margin-inline:auto}
.rule.light{background:var(--blue-light)}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 26px;
  border-radius:var(--r-sm);
  font-weight:600;
  font-size:15px;
  transition:transform .18s var(--ease),box-shadow .18s var(--ease),background-color .18s var(--ease);
}
.button .ico{
  width:19px;
  height:19px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  flex:none;
}
.button.primary{
  background:var(--blue);
  color:#fff;
  box-shadow:var(--shadow-blue);
}
.button.primary:hover{background:#0a49e0;transform:translateY(-2px);box-shadow:0 16px 36px rgba(17,86,253,.34)}
.button.ghost{
  background:#fff;
  color:var(--navy);
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
}
.button.ghost:hover{border-color:#c9d8f5;color:var(--blue);transform:translateY(-2px)}

/* apparition au défilement (activée seulement si JS est disponible) */
.js .reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s var(--ease),transform .7s var(--ease);
}
.js .reveal.is-visible{opacity:1;transform:none}

/* =========================================================
   EN-TÊTE
   ========================================================= */

.site-header{
  position:sticky;
  top:0;
  z-index:120;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid transparent;
  transition:border-color .25s var(--ease),box-shadow .25s var(--ease),background-color .25s var(--ease);
}
.site-header.is-stuck{
  border-bottom-color:var(--line);
  box-shadow:0 6px 24px rgba(11,37,69,.06);
  background:rgba(255,255,255,.95);
}

.nav{
  min-height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.brand{display:inline-flex;align-items:center;flex:none}
.brand img{height:46px;width:auto}

.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
  font-size:15px;
  font-weight:500;
}
.nav-links a{
  position:relative;
  color:#42536b;
  padding:6px 0;
  transition:color .18s var(--ease);
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-2px;
  height:2px;
  border-radius:99px;
  background:var(--blue);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .25s var(--ease);
}
.nav-links a:hover{color:var(--blue)}
.nav-links a:hover::after,
.nav-links a.is-active::after{transform:scaleX(1)}
.nav-links a.is-active{color:var(--blue);font-weight:600}

.nav-cta{
  margin-left:4px;
  padding:11px 22px!important;
  border-radius:var(--r-sm);
  background:var(--blue);
  color:#fff!important;
  font-weight:600;
  box-shadow:0 8px 20px rgba(17,86,253,.22);
  transition:background-color .18s var(--ease),transform .18s var(--ease);
}
.nav-cta::after{display:none}
.nav-cta:hover{background:#0a49e0;transform:translateY(-1px)}

.menu-toggle{
  display:none;
  background:none;
  border:0;
  padding:10px;
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width:24px;
  height:2px;
  border-radius:2px;
  background:var(--navy);
  margin:5px 0;
  transition:transform .25s var(--ease),opacity .2s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* =========================================================
   HERO
   ========================================================= */

.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(900px 520px at 78% 8%, rgba(17,86,253,.10), transparent 62%),
    linear-gradient(180deg,#f6f9ff 0%,#fdfeff 62%,#fff 100%);
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:1px;
  background:var(--line-soft);
}

.hero-chevron{
  position:absolute;
  top:6%;
  right:-118px;
  width:min(360px,26vw);
  color:var(--blue);
  opacity:.14;
  transform:rotate(28deg);
  pointer-events:none;
}
.hero-chevron svg{width:100%;height:auto}

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  align-items:center;
  gap:64px;
  padding:104px 0 116px;
}

.hero-copy h1{
  font-size:clamp(38px,4.8vw,60px);
  line-height:1.08;
  letter-spacing:-.035em;
  margin:0;
  max-width:14ch;
}
.hero-copy .lead{
  font-size:17px;
  color:#55657c;
  max-width:52ch;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:34px}

/* --- visuel du hero --- */

.hero-visual{position:relative;min-height:430px}

.hero-visual .halo{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}
.halo-a{
  width:300px;height:300px;
  right:-46px;top:-40px;
  background:radial-gradient(circle,rgba(17,86,253,.16),transparent 68%);
}
.halo-b{
  width:210px;height:210px;
  left:-38px;bottom:-30px;
  background:radial-gradient(circle,rgba(11,37,69,.10),transparent 68%);
}

.window{
  position:relative;
  z-index:2;
  border-radius:var(--r-lg);
  background:linear-gradient(158deg,#0d2c58 0%,#081f3f 100%);
  box-shadow:var(--shadow-lg);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
}
.window-bar{
  display:flex;
  align-items:center;
  gap:8px;
  padding:15px 20px;
  background:rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.window-bar span{
  width:11px;height:11px;
  border-radius:50%;
  background:rgba(255,255,255,.22);
  flex:none;
}
.window-bar span:first-child{background:rgba(255,120,110,.75)}
.window-bar span:nth-child(2){background:rgba(255,196,92,.75)}
.window-bar span:nth-child(3){background:rgba(96,214,140,.75)}
.window-bar em{
  margin-left:8px;
  font-size:12px;
  font-style:normal;
  letter-spacing:.06em;
  color:rgba(255,255,255,.42);
}
.window-body{padding:28px 26px 34px}

.cl{display:flex;align-items:center;gap:10px;margin-bottom:16px}
.cl:last-child{margin-bottom:0}
.cl.indent{padding-left:26px}
.cl.indent2{padding-left:52px}
.cl i{
  display:block;
  height:9px;
  border-radius:99px;
  opacity:.92;
}
.t-key{width:52px;background:linear-gradient(90deg,#4d8bff,#7fb0ff)}
.t-fn{width:88px;background:linear-gradient(90deg,#1156fd,#3f7cff)}
.t-var{width:64px;background:rgba(255,255,255,.28)}
.t-str{width:104px;background:linear-gradient(90deg,rgba(96,214,140,.75),rgba(96,214,140,.4))}
.t-num{width:38px;background:rgba(255,196,92,.6)}

.float-card{
  position:absolute;
  z-index:3;
  display:flex;
  align-items:center;
  gap:13px;
  padding:15px 19px;
  border-radius:var(--r-md);
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-md);
}
.float-a{left:-34px;top:52px}
.float-b{right:-30px;bottom:38px}
.float-card strong{
  display:block;
  font-size:14px;
  color:var(--navy);
  line-height:1.3;
}
.float-card small{
  display:block;
  font-size:12px;
  color:var(--muted-2);
  line-height:1.35;
  margin-top:2px;
}
.fc-ico{
  flex:none;
  width:38px;height:38px;
  border-radius:11px;
  display:grid;
  place-items:center;
  background:var(--blue-pale);
  color:var(--blue);
}
.fc-ico.alt{background:#eaf7ef;color:#1d9a55}
.fc-ico svg{
  width:19px;height:19px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* =========================================================
   SECTIONS GÉNÉRIQUES
   ========================================================= */

.section{padding:104px 0}
.services{background:linear-gradient(180deg,#fbfcff,#fff 42%)}

.section-heading{
  max-width:720px;
  margin:0 auto 56px;
  text-align:center;
}
.section-heading h2{
  font-size:clamp(28px,3.4vw,40px);
  line-height:1.18;
  margin:0;
  max-width:26ch;
  margin-inline:auto;
  text-wrap:balance;
}
.section-sub{
  color:var(--muted);
  font-size:17px;
  max-width:60ch;
  margin-inline:auto;
  text-wrap:pretty;
}

/* =========================================================
   SERVICES
   ========================================================= */

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.service-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:38px 30px 34px;
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  background:#fff;
  box-shadow:var(--shadow-sm);
  transition:transform .26s var(--ease),box-shadow .26s var(--ease),border-color .26s var(--ease);
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
  border-color:#d7e3fa;
}

.service-icon{
  width:60px;height:60px;
  border-radius:18px;
  display:grid;
  place-items:center;
  margin-bottom:22px;
  background:var(--blue-pale);
  color:var(--blue);
  transition:background-color .26s var(--ease),transform .26s var(--ease);
}
.service-card:hover .service-icon{background:#dbe8ff;transform:scale(1.05)}
.service-icon svg{
  width:28px;height:28px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.service-card h3{
  font-size:19px;
  line-height:1.35;
  margin:0 0 14px;
  max-width:22ch;
}
.service-card p{
  margin:0 0 12px;
  color:var(--muted);
  font-size:14.5px;
  line-height:1.7;
}
.service-card p:last-child{margin-bottom:0}

/* --- bandeau formation --- */

.training-strip{
  margin-top:24px;
  padding:34px 38px;
  border-radius:var(--r-lg);
  background:linear-gradient(110deg,var(--blue-tint),#e9f1ff);
  border:1px solid #dde8fc;
  display:flex;
  gap:26px;
  align-items:flex-start;
}
.training-strip h3{font-size:19px;margin:0 0 12px}
.training-strip p{
  margin:0 0 8px;
  color:#5a6a80;
  font-size:14.5px;
  line-height:1.7;
  max-width:78ch;
}
.training-strip p:last-child{margin-bottom:0}
.training-icon{
  flex:none;
  width:62px;height:62px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:#fff;
  color:var(--blue);
  box-shadow:var(--shadow-sm);
}
.training-icon svg{
  width:30px;height:30px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* =========================================================
   APPROCHE
   ========================================================= */

.approach{
  position:relative;
  overflow:hidden;
  padding:104px 0;
  color:#fff;
  background:
    radial-gradient(760px 420px at 84% 14%, rgba(45,110,255,.30), transparent 64%),
    radial-gradient(620px 380px at 10% 88%, rgba(45,110,255,.16), transparent 62%),
    linear-gradient(140deg,var(--navy-deep) 0%,#0c2a55 52%,#0a2450 100%);
}
.constellation{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.constellation svg{width:100%;height:100%}

.approach-inner{
  position:relative;
  z-index:1;
  max-width:800px;
  text-align:center;
}
.approach h2{
  color:#fff;
  font-size:clamp(30px,3.8vw,44px);
  margin:0;
}
.approach p{
  font-size:17px;
  color:#cfdcef;
  max-width:70ch;
  margin-inline:auto;
}
.approach-strong{
  margin-top:22px!important;
  font-weight:600;
  color:#fff!important;
  font-size:17.5px!important;
}

/* =========================================================
   À PROPOS
   ========================================================= */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:center;
}
.about-grid p{color:var(--muted);font-size:16px}

.about-title{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:26px;
}
.about-title img{width:54px;height:auto;flex:none}
.about-title h2{
  font-size:clamp(28px,3.2vw,38px);
  margin:0;
}

.about-points{
  list-style:none;
  margin:30px 0 0;
  padding:0;
  display:grid;
  gap:13px;
}
.about-points li{
  display:flex;
  align-items:center;
  gap:13px;
  font-weight:500;
  color:var(--navy);
  font-size:15.5px;
}
.about-points span{
  flex:none;
  width:26px;height:26px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--blue-pale);
  color:var(--blue);
}
.about-points svg{
  width:14px;height:14px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.about-visual{position:relative}
.about-frame{
  border-radius:var(--r-xl);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  aspect-ratio:3/2;
  background:var(--navy);
}
.af-art{width:100%;height:100%;display:block}

.about-badge{
  position:absolute;
  left:-24px;
  bottom:-24px;
  padding:18px 26px;
  border-radius:var(--r-md);
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-md);
  text-align:center;
}
.about-badge strong{
  display:block;
  font-size:19px;
  color:var(--navy);
  line-height:1.2;
}
.about-badge small{
  display:block;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--blue);
  font-weight:600;
  margin-top:3px;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact{background:linear-gradient(180deg,#fff,var(--blue-tint));padding-bottom:110px}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  max-width:1000px;
  margin-inline:auto;
}
.contact-item{
  display:flex;
  align-items:center;
  gap:18px;
  padding:26px 28px;
  border-radius:var(--r-md);
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  transition:transform .22s var(--ease),box-shadow .22s var(--ease),border-color .22s var(--ease);
}
a.contact-item:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:#cfdffb;
}
.ci-ico{
  flex:none;
  width:52px;height:52px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--blue-pale);
  color:var(--blue);
}
.ci-ico svg{
  width:23px;height:23px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.75;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.ci-body{min-width:0}
.ci-body small{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.13em;
  color:var(--muted-2);
  font-weight:600;
  margin-bottom:4px;
}
.ci-body strong{
  display:block;
  font-size:15.5px;
  font-weight:600;
  color:var(--navy);
  overflow-wrap:anywhere;
}
a.contact-item .ci-body strong{color:var(--blue)}

/* =========================================================
   PIED DE PAGE
   ========================================================= */

.site-footer{
  background:var(--navy-deep);
  color:#fff;
  padding:52px 0 44px;
}
.footer-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:14px;
}
.footer-logo{height:46px;width:auto}
.footer-tag{
  margin:0;
  font-size:12.5px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#8fabd4;
}
.footer-contact{
  font-style:normal;
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  font-size:14px;
  line-height:1.6;
  color:#c3d4ec;
}
.footer-contact a{
  color:#fff;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.28);
  transition:border-color .2s var(--ease);
}
.footer-contact a:hover{border-bottom-color:#fff}
.footer-contact .fc-sep{
  margin:0 8px;
  color:#7e9cc8;
}

.footer-copy{
  margin:10px 0 0;
  font-size:13.5px;
  color:#a8bedd;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.1);
  width:min(100%,560px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width:1080px){
  .hero-grid{gap:48px;padding:88px 0 96px}
  .float-a{left:-14px}
  .float-b{right:-10px}
  .about-grid{gap:52px}
}

@media (max-width:940px){
  :root{--header-h:72px}
  .container{width:min(1160px,calc(100% - 36px))}

  .menu-toggle{display:block}
  .nav-links{
    position:absolute;
    top:calc(var(--header-h) + 8px);
    left:18px;right:18px;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    padding:14px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--r-md);
    box-shadow:var(--shadow-lg);
    display:none;
  }
  .nav-links.open{display:flex}
  .nav-links a{padding:12px 14px;border-radius:var(--r-sm)}
  .nav-links a::after{display:none}
  .nav-links a.is-active{background:var(--blue-pale)}
  .nav-cta{text-align:center;margin:6px 0 0}

  .hero-grid,.about-grid{grid-template-columns:1fr}
  .hero-grid{gap:56px;padding:64px 0 76px}
  .hero-copy h1{max-width:18ch}
  .hero-visual{min-height:auto;max-width:560px;margin-inline:auto;width:100%}
  .hero-chevron{width:min(400px,52vw);opacity:.09;right:-110px}

  .service-grid{grid-template-columns:repeat(2,1fr)}
  .section{padding:82px 0}
  .approach{padding:82px 0}

  .about-visual{max-width:560px;margin-inline:auto;width:100%}
  .about-badge{left:auto;right:-14px;bottom:-20px}

  .contact-grid{grid-template-columns:1fr;max-width:560px}
}

@media (max-width:600px){
  .container{width:min(1160px,calc(100% - 28px))}
  body{font-size:15.5px}

  .brand img{height:38px}
  .hero-grid{padding:52px 0 64px;gap:44px}
  .hero-copy h1{font-size:clamp(30px,8vw,40px);max-width:none}
  .hero-copy .lead{font-size:15.5px}
  .hero-actions{gap:10px}
  .button{width:100%;min-height:50px}

  .window-body{padding:22px 20px 26px}
  .cl{margin-bottom:13px;gap:8px}
  .t-fn{width:70px}.t-str{width:78px}.t-var{width:50px}.t-key{width:42px}
  .float-card{padding:12px 15px;gap:11px}
  .float-card strong{font-size:13px}
  .float-card small{font-size:11px}
  .fc-ico{width:33px;height:33px;border-radius:10px}
  .fc-ico svg{width:16px;height:16px}
  .float-a{left:-8px;top:24px}
  .float-b{right:-8px;bottom:20px}
  .halo-a,.halo-b{display:none}

  .section{padding:64px 0}
  .approach{padding:64px 0}
  .section-heading{margin-bottom:38px}
  .service-grid{grid-template-columns:1fr;gap:16px}
  .service-card{padding:30px 24px}

  .training-strip{
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding:28px 24px;
    gap:18px;
  }

  .about-title{gap:14px;margin-bottom:20px}
  .about-title img{width:44px}
  .about-badge{
    position:static;
    margin:18px auto 0;
    display:inline-block;
  }
  .about-visual{text-align:center}

  .contact-item{padding:20px 22px;gap:15px}
  .ci-ico{width:46px;height:46px}

  .footer-logo{height:38px}
  .site-footer{padding:42px 0 36px}
  .footer-contact{font-size:13.5px}
  .footer-contact .fc-sep{margin:0 6px}
}

/* =========================================================
   PRÉFÉRENCES & IMPRESSION
   ========================================================= */

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

@media print{
  .site-header,.menu-toggle,.hero-visual,.hero-chevron,
  .constellation,.about-visual,.skip-link{display:none!important}
  body{color:#000;background:#fff}
  .approach{background:#fff;color:#000;padding:24px 0}
  .approach h2,.approach p,.approach-strong{color:#000!important}
  .site-footer{background:#fff;color:#000;border-top:1px solid #ccc}
  .footer-tag,.footer-copy{color:#333}
  .section{padding:24px 0}
  .service-card,.contact-item{break-inside:avoid;box-shadow:none}
  .js .reveal{opacity:1!important;transform:none!important}
}
