:root{
  --blue-deep:#16324A;
  --blue:#3E6E93;
  --blue-mid:#5C88AC;
  --blue-tint:#EAF1F6;
  --paper:#FFFFFF;
  --ink:#1C2B36;
  --ink-soft:#5C6B76;
  --line:#DCE6EC;
  --orange:#E8823C;
  --radius-lg:24px;
  --radius-md:14px;
  --radius-pill:999px;
  --maxw:1160px;
  --shadow: 0 12px 28px rgba(22,50,74,0.10);
}

*{ box-sizing:border-box; }
html{ -webkit-font-smoothing:antialiased; }
body{
  margin:0;
  font-family:-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.55;
}
a{ text-decoration:none; color:inherit; }
ul{ margin:0; padding:0; list-style:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }
input,select{ font-family:inherit; }

.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 32px; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border-radius:var(--radius-pill);
  font-weight:700; font-size:15px;
  padding:14px 28px;
  border:none;
  white-space:nowrap;
}
.btn-primary{ background:var(--blue); color:#fff; }
.btn-primary:hover{ background:var(--blue-deep); }
.btn-white{ background:#fff; color:var(--blue-deep); }
.btn-white:hover{ background:var(--blue-tint); }
.btn-outline{ background:#fff; border:1.5px solid var(--line); color:var(--ink); }
.btn-outline:hover{ border-color:var(--blue); color:var(--blue); }
.btn-block{ width:100%; }

/* ---------- header ---------- */
.site-header{
  background:#fff; border-bottom:1px solid var(--line);
  position:sticky; top:0; z-index:50;
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0; gap:24px;
}
.logo{ display:flex; align-items:center; gap:8px; font-size:20px; font-weight:800; color:var(--blue-deep); flex-shrink:0; }
.logo .tld{ color:var(--blue-mid); font-weight:600; }

nav.main-nav{ display:flex; gap:34px; }
nav.main-nav a{
  font-size:13.5px; font-weight:700; color:var(--blue);
  text-align:center; line-height:1.35;
}
nav.main-nav a:hover{ color:var(--blue-deep); }

@media (max-width:920px){ nav.main-nav{ display:none; } }

.menu-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:34px; height:34px; background:none; border:none; cursor:pointer; padding:0; flex-shrink:0;
}
.menu-toggle span{
  display:block; width:100%; height:3px; background:var(--blue-deep); border-radius:2px;
  transition:transform .2s ease, opacity .2s ease;
}
.menu-toggle.open span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity:0; }
.menu-toggle.open span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }

.mobile-nav{ display:none; flex-direction:column; background:#fff; border-top:1px solid var(--line); }
.mobile-nav.open{ display:flex; }
.mobile-nav a{
  padding:16px 24px; font-size:15px; font-weight:700; color:var(--blue-deep);
  border-bottom:1px solid var(--line);
}
.mobile-nav a:last-child{ border-bottom:none; }

@media (max-width:920px){ .menu-toggle{ display:flex; } }
@media (min-width:921px){ .mobile-nav{ display:none !important; } }
@media (max-width:480px){
  .wrap{ padding:0 18px; }
  .header-inner{ gap:12px; }
  .header-inner .btn-primary{ padding:11px 16px; font-size:13.5px; }
}

/* ---------- hero ---------- */
.hero-banner{
  background:var(--blue-tint);
  border-radius:var(--radius-lg);
  padding:14px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  align-items:stretch;
  margin-top:32px;
}
.hero-card{
  background:#fff;
  border-radius:calc(var(--radius-lg) - 8px);
  box-shadow:var(--shadow);
  padding:44px 40px;
  display:flex; flex-direction:column; justify-content:center;
}
.hero-card h1{
  font-size:36px; line-height:1.15; letter-spacing:-0.5px;
  color:var(--blue-deep); margin:0 0 16px;
}
.hero-card p{ color:var(--ink-soft); font-size:16px; margin:0 0 26px; max-width:38ch; }
.hero-illustration{
  border-radius:calc(var(--radius-lg) - 8px);
  overflow:hidden;
  min-height:320px;
}
@media (max-width:860px){
  .hero-banner{ grid-template-columns:1fr; }
  .hero-illustration{ min-height:220px; order:-1; }
}

/* ---------- search bar ---------- */
.search-bar{
  margin:28px auto 0;
  max-width:760px;
  background:#fff;
  border:1.5px solid var(--line);
  border-radius:var(--radius-pill);
  display:flex;
  align-items:center;
  padding:6px 6px 6px 22px;
  box-shadow:var(--shadow);
}
.search-bar .field{ flex:1 1 auto; display:flex; align-items:center; gap:10px; min-width:0; }
.search-bar input{
  border:none; outline:none; font-size:14.5px; width:100%; padding:10px 0; color:var(--ink);
  background:transparent;
}
.search-bar .divider{ width:1px; height:26px; background:var(--line); margin:0 14px; flex-shrink:0; }
.search-bar button{
  flex-shrink:0; background:var(--blue); color:#fff; border:none;
  border-radius:var(--radius-pill); padding:13px 26px; font-weight:700; font-size:14.5px;
  display:flex; align-items:center; gap:8px;
}
.search-bar button:hover{ background:var(--blue-deep); }
@media (max-width:640px){
  .search-bar{ flex-wrap:wrap; border-radius:var(--radius-md); padding:14px; }
  .search-bar .divider{ display:none; }
  .search-bar .field{ width:100%; }
  .search-bar button{ width:100%; justify-content:center; margin-top:6px; }
}

/* ---------- section shell ---------- */
.section{ padding:72px 0; }
.section-title{ font-size:28px; font-weight:800; color:var(--blue-deep); text-align:center; margin:0 0 40px; letter-spacing:-0.4px; }

/* ---------- sponsored card ---------- */
.sponsored{
  margin-top:56px;
  border-radius:var(--radius-lg);
  overflow:hidden;
  position:relative;
  box-shadow:var(--shadow);
}
.sponsored-badge{
  position:absolute; top:18px; left:18px;
  background:rgba(255,255,255,0.92); color:var(--ink-soft);
  font-size:11px; font-weight:800; letter-spacing:0.4px;
  padding:5px 12px; border-radius:var(--radius-pill);
}
.sponsored-inner{
  display:flex; align-items:center; gap:32px;
  padding:36px 40px;
  color:#fff;
  min-height:190px;
}
.sponsored-copy{ max-width:420px; }
.sponsored-copy h2{ font-size:20px; margin:0 0 8px; }
.sponsored-copy p{ font-size:14px; opacity:0.9; margin:0 0 18px; }

/* ---------- blog cards ---------- */
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.blog-card{
  border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow);
  display:flex; flex-direction:column;
}
.blog-card .thumb{ height:160px; }
.blog-card .body{ background:var(--blue); color:#fff; padding:22px; flex:1; display:flex; flex-direction:column; }
.blog-card h3{ font-size:16px; margin:0 0 8px; }
.blog-card p{ font-size:13.5px; opacity:0.9; margin:0 0 18px; flex:1; }
.blog-card .more{ font-size:13.5px; font-weight:700; display:inline-flex; align-items:center; gap:6px; }
@media (max-width:860px){ .blog-grid{ grid-template-columns:1fr; } }

/* ---------- blog listing page ---------- */
.kicker{
  display:block; text-align:center; font-size:12.5px; font-weight:800; letter-spacing:2px;
  text-transform:uppercase; color:var(--blue); margin-bottom:12px;
}
.cat-chip-row{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin:0 0 52px; }
.cat-chip{
  font-size:13.5px; font-weight:700; color:var(--blue-deep);
  background:var(--blue-tint); border:1.5px solid transparent;
  padding:9px 18px; border-radius:var(--radius-pill);
  transition:border-color .15s ease, transform .15s ease;
}
.cat-chip.active{ background:var(--blue); color:#fff; }
.cat-chip:hover{ border-color:var(--blue); transform:translateY(-1px); }

.mag-hero{
  display:grid; grid-template-columns:1.1fr 1fr; gap:0;
  border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow);
  margin-bottom:60px; position:relative;
  transition:box-shadow .2s ease, transform .2s ease;
}
.mag-hero:hover{ box-shadow:0 20px 40px rgba(22,50,74,0.16); transform:translateY(-2px); }
.mag-hero .thumb{ min-height:300px; position:relative; }
.mag-hero .featured-badge{
  position:absolute; top:18px; left:18px;
  background:var(--orange); color:#fff; font-size:11px; font-weight:800;
  letter-spacing:0.5px; text-transform:uppercase; padding:6px 13px; border-radius:var(--radius-pill);
}
.mag-hero .body{ background:#fff; color:var(--ink); padding:44px; display:flex; flex-direction:column; justify-content:center; }
.mag-hero .meta{ margin-bottom:14px; }
.mag-hero h2{ font-size:27px; line-height:1.25; letter-spacing:-0.4px; margin:0 0 16px; color:var(--blue-deep); }
.mag-hero p{ font-size:15px; color:var(--ink-soft); margin:0 0 24px; }
@media (max-width:860px){ .mag-hero{ grid-template-columns:1fr; } .mag-hero .thumb{ min-height:220px; } .mag-hero .body{ padding:32px; } }

.card-meta{ display:flex; align-items:center; gap:10px; margin-bottom:12px; flex-wrap:wrap; }
.card-meta .cat-pill{
  font-size:11px; font-weight:800; letter-spacing:0.3px; text-transform:uppercase;
  background:rgba(255,255,255,0.18); color:#fff; padding:4px 10px; border-radius:var(--radius-pill);
}
.mag-hero .card-meta .cat-pill{ background:var(--blue-tint); color:var(--blue-deep); }
.card-meta .read-time{ font-size:12.5px; opacity:0.85; display:inline-flex; align-items:center; gap:4px; }
.mag-hero .card-meta .read-time{ color:var(--ink-soft); opacity:1; }

.blog-grid .blog-card{ transition:box-shadow .2s ease, transform .2s ease; }
.blog-grid .blog-card:hover{ box-shadow:0 16px 32px rgba(22,50,74,0.14); transform:translateY(-3px); }
.blog-grid .blog-card .thumb{ position:relative; overflow:hidden; }
.blog-grid .blog-card .thumb svg{ transition:transform .25s ease; }
.blog-grid .blog-card:hover .thumb svg{ transform:scale(1.08); }

.load-more-wrap{ text-align:center; margin-top:16px; }
.source-note{ text-align:center; font-size:13px; color:var(--ink-soft); margin-top:4px; }

.see-all-wrap{ text-align:center; margin-top:36px; }

/* ---------- footer ---------- */
.footer-top{ background:var(--blue); color:#fff; padding:44px 0; margin-top:40px; }
.footer-top-inner{ display:flex; justify-content:space-between; align-items:center; gap:48px; flex-wrap:wrap; }
.footer-newsletter{ flex:1 1 260px; max-width:320px; display:flex; flex-direction:column; align-items:center; text-align:center; justify-content:center; }
.newsletter-label{ font-size:14px; font-weight:700; margin-bottom:12px; }
.newsletter-form{ display:flex; align-items:center; background:#fff; border-radius:var(--radius-pill); padding:5px; width:320px; max-width:100%; }
.newsletter-form input{ border:none; outline:none; flex:1; padding:9px 14px; font-size:13.5px; border-radius:var(--radius-pill); }
.newsletter-form button{ background:var(--orange); border:none; color:#fff; width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.newsletter-cgu{ font-size:12px; margin-top:10px; opacity:0.85; display:flex; gap:6px; align-items:center; }
.social-icons{ display:flex; gap:12px; margin-top:20px; }
.social-icons a{
  width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,0.16);
  display:flex; align-items:center; justify-content:center; color:#fff;
  transition:background .15s ease, transform .15s ease;
}
.social-icons a:hover{ background:rgba(255,255,255,0.32); transform:translateY(-2px); }
.footer-col{ flex:1 1 160px; }
.footer-col h4{ font-size:12.5px; font-weight:800; text-transform:uppercase; letter-spacing:0.6px; opacity:0.85; margin:0 0 16px; }
.footer-col a{ display:block; font-size:13.5px; margin-bottom:10px; opacity:0.92; }
.footer-col a:hover{ opacity:1; text-decoration:underline; }
.footer-bottom{ background:var(--blue-deep); color:#B7C6D1; padding:18px 0; font-size:12.5px; }
.footer-bottom-inner{ display:flex; justify-content:center; gap:28px; flex-wrap:wrap; margin-bottom:10px; }
.footer-bottom .legal{ text-align:center; opacity:0.85; }
@media (max-width:760px){ .footer-top-inner{ flex-direction:column; } }

/* ---------- auth page ---------- */
.auth-shell{
  background:var(--blue-tint);
  padding:64px 24px;
  display:flex; justify-content:center;
  position:relative;
  overflow:hidden;
}
.auth-card{
  background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow);
  padding:44px 40px; width:420px; max-width:100%; position:relative; z-index:2;
}
.auth-card h1{ text-align:center; color:var(--blue-deep); font-size:24px; margin:0 0 6px; }
.auth-card .sub{ text-align:center; color:var(--ink-soft); font-size:14px; margin:0 0 26px; }
.sso-row{ display:flex; gap:12px; margin-bottom:22px; }
.sso-btn{
  flex:1; display:flex; flex-direction:column; align-items:center; gap:6px;
  border:1.5px solid var(--line); border-radius:var(--radius-md); padding:12px 8px;
  font-size:12.5px; font-weight:700; color:var(--ink);
}
.sso-btn:hover{ border-color:var(--blue); }
.or-divider{ display:flex; align-items:center; gap:12px; color:var(--ink-soft); font-size:12.5px; margin:8px 0 22px; }
.or-divider::before,.or-divider::after{ content:""; flex:1; height:1px; background:var(--line); }
.form-field{ margin-bottom:18px; }
.form-field label{ display:block; font-size:13px; font-weight:700; color:var(--blue-deep); margin-bottom:6px; }
.form-field input, .form-field select{
  width:100%; border:1.5px solid var(--line); border-radius:var(--radius-md);
  padding:12px 14px; font-size:14px; outline:none;
}
.form-field input:focus, .form-field select:focus{ border-color:var(--blue); }
.row-between{ display:flex; justify-content:space-between; align-items:center; }
.link-small{ font-size:12.5px; color:var(--blue); font-weight:700; }
.link-small:hover{ text-decoration:underline; }
.auth-foot{ text-align:center; font-size:13.5px; margin-top:20px; color:var(--ink-soft); }
.auth-foot a{ color:var(--blue); font-weight:700; }

/* ---------- pricing / offre page ---------- */
.page-title{ font-size:26px; font-weight:800; color:var(--blue-deep); margin:0 0 40px; max-width:44ch; }
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:start; }
@media (max-width:860px){ .two-col{ grid-template-columns:1fr; } }

.feature-box{ border:1.5px solid var(--line); border-radius:var(--radius-lg); padding:30px; }
.feature-box h2{ color:var(--blue-deep); font-size:18px; margin:0 0 18px; }
.feature-box ul li{ display:flex; gap:12px; margin-bottom:14px; font-size:14.5px; color:var(--ink); }
.feature-box ul li .dot{ width:8px; height:8px; border-radius:50%; background:var(--orange); margin-top:7px; flex-shrink:0; }
.feature-box .note{ margin-top:20px; padding-top:18px; border-top:1px solid var(--line); font-size:13px; color:var(--ink-soft); text-align:center; }

.plan{
  display:block;
  border:1.5px solid var(--line); border-radius:var(--radius-md);
  padding:18px 20px; margin-bottom:14px; cursor:pointer;
}
.plan.selected{ border-color:var(--blue); background:var(--blue-tint); }
.plan-head{ display:flex; align-items:center; gap:12px; }
.plan-head input{ width:18px; height:18px; accent-color:var(--blue); }
.plan-head .name{ font-weight:700; font-size:15px; flex:1; }
.plan-head .price{ font-weight:800; color:var(--blue-deep); font-size:15px; }
.plan-terms{ font-size:12.5px; color:var(--ink-soft); margin:8px 0 0 30px; }
.plan-benefits{ margin-top:6px; }
.plan-benefits li{ font-size:13.5px; color:var(--ink); margin-bottom:8px; padding-left:20px; position:relative; }
.plan-benefits li::before{ content:"✓"; position:absolute; left:0; color:var(--blue); font-weight:800; }

.legal-links{ text-align:center; margin-top:36px; font-size:13px; color:var(--blue); }
.legal-links a{ margin:0 10px; }
.legal-links a:hover{ text-decoration:underline; }

/* ---------- accompagnement page ---------- */
.accomp-hero{
  background:var(--blue-tint);
  border-radius:var(--radius-lg);
  padding:56px 48px;
  margin-top:32px;
  text-align:center;
}
.accomp-hero h1{ font-size:34px; color:var(--blue-deep); margin:0 0 14px; letter-spacing:-0.5px; }
.accomp-hero p{ color:var(--ink-soft); font-size:16px; max-width:56ch; margin:0 auto 26px; }

.service-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.service-card{
  border:1.5px solid var(--line); border-radius:var(--radius-md);
  padding:24px; display:flex; flex-direction:column; gap:10px;
}
.service-card:hover{ border-color:var(--blue); }
.service-top{ display:flex; justify-content:space-between; align-items:flex-start; gap:10px; }
.service-card h3{ font-size:16px; margin:0; color:var(--ink); }
.service-price{ font-weight:800; color:var(--blue-deep); font-size:15px; white-space:nowrap; }
.service-card p{ font-size:13.5px; color:var(--ink-soft); margin:0; flex:1; }
.service-card a{ font-size:13.5px; font-weight:700; color:var(--blue); }
@media (max-width:900px){ .service-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .service-grid{ grid-template-columns:1fr; } }

.tier-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:stretch; }
.tier-card{
  border:1.5px solid var(--line); border-radius:var(--radius-lg);
  padding:30px; display:flex; flex-direction:column; position:relative;
}
.tier-card.reco{ border-color:var(--blue); box-shadow:var(--shadow); }
.tier-reco-badge{
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--orange); color:#fff; font-size:11px; font-weight:800;
  padding:5px 14px; border-radius:var(--radius-pill); white-space:nowrap;
}
.tier-card h3{ font-size:19px; margin:0 0 6px; color:var(--blue-deep); }
.tier-card .tier-sub{ font-size:13px; color:var(--ink-soft); margin:0 0 18px; min-height:36px; }
.tier-price{ font-size:32px; font-weight:800; color:var(--blue-deep); margin-bottom:2px; }
.tier-save{ font-size:12.5px; color:var(--orange); font-weight:700; margin-bottom:18px; }
.tier-card ul{ margin-bottom:22px; flex:1; }
.tier-card ul li{ font-size:13.5px; padding-left:20px; position:relative; margin-bottom:10px; color:var(--ink); }
.tier-card ul li::before{ content:"✓"; position:absolute; left:0; color:var(--blue); font-weight:800; }
@media (max-width:900px){ .tier-grid{ grid-template-columns:1fr; } }

.faq-list{ max-width:760px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--line); padding:18px 0; }
.faq-item summary{ font-weight:700; font-size:15px; color:var(--ink); cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-size:20px; color:var(--blue); font-weight:400; }
.faq-item[open] summary::after{ content:"–"; }
.faq-item p{ font-size:14px; color:var(--ink-soft); margin:12px 0 0; max-width:66ch; }

.hero-right{ display:flex; flex-direction:column; gap:20px; }
.hero-right-img{ width:100%; border-radius:var(--radius-lg); box-shadow:var(--shadow); display:block; }
@media (max-width:860px){ .price-panel{ position:static; } }

.page-top-row{ display:flex; justify-content:space-between; align-items:flex-start; gap:28px; margin-top:22px; flex-wrap:wrap; }
.page-top-row .breadcrumb{ margin:8px 0 0; }
.page-top-img{ width:240px; max-width:45%; border-radius:var(--radius-md); box-shadow:var(--shadow); flex-shrink:0; }
@media (max-width:700px){
  .page-top-row{ flex-direction:column-reverse; }
  .page-top-img{ width:100%; max-width:280px; }
}

/* ---------- service detail pages ---------- */
.breadcrumb{ font-size:13px; color:var(--ink-soft); margin:22px 0 0; }
.breadcrumb a{ color:var(--blue); font-weight:600; }

.service-hero{ display:grid; grid-template-columns:1.6fr 1fr; gap:40px; margin-top:20px; align-items:start; }
.service-hero-content h1{ font-size:32px; color:var(--blue-deep); letter-spacing:-0.5px; margin:0 0 16px; }
.service-hero-content .lede{ font-size:16px; color:var(--ink-soft); margin:0 0 8px; max-width:60ch; }
.service-hero-content .telework-tag{
  display:inline-block; margin-top:14px; font-size:12.5px; font-weight:700; color:var(--blue);
  background:var(--blue-tint); padding:6px 14px; border-radius:var(--radius-pill);
}

.price-panel{
  border:1.5px solid var(--line); border-radius:var(--radius-lg); padding:28px;
}
.price-panel .amount{ font-size:32px; font-weight:800; color:var(--blue-deep); }
.price-panel .amount-sub{ font-size:13px; color:var(--ink-soft); margin-bottom:18px; }
.price-panel ul{ margin-bottom:22px; }
.price-panel ul li{ font-size:13.5px; padding-left:20px; position:relative; margin-bottom:10px; color:var(--ink); }
.price-panel ul li::before{ content:"✓"; position:absolute; left:0; color:var(--blue); font-weight:800; }
.price-panel .reassure{ font-size:12px; color:var(--ink-soft); text-align:center; margin-top:12px; }
@media (max-width:860px){ .service-hero{ grid-template-columns:1fr; } .price-panel{ position:static; } }

.process-mini{ display:flex; gap:28px; margin-top:8px; }
.process-mini .step{ flex:1; }
.process-mini .step .n{
  width:30px; height:30px; border-radius:50%; background:var(--blue); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:800; font-size:14px; margin-bottom:12px;
}
.process-mini .step h3{ font-size:14.5px; margin:0 0 6px; color:var(--ink); }
.process-mini .step p{ font-size:13px; color:var(--ink-soft); margin:0; }
@media (max-width:700px){ .process-mini{ flex-direction:column; gap:20px; } }

.cta-band{
  background:var(--blue-deep); color:#fff; border-radius:var(--radius-lg);
  padding:44px 40px; text-align:center; margin:16px 0 0;
}
.cta-band h3{ font-size:22px; margin:0 0 10px; }
.cta-band p{ color:#C7D6E1; font-size:14.5px; margin:0 0 22px; }

.build-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.build-card{
  background:#fff; border:1.5px solid var(--line); border-radius:var(--radius-md);
  padding:28px 24px; min-height:130px; display:flex; flex-direction:column; justify-content:space-between;
  text-decoration:none; transition:border-color .15s ease, transform .15s ease;
}
.build-card:hover{ border-color:var(--blue); transform:translateY(-2px); }
.build-card .name{ font-size:17px; font-weight:700; color:var(--ink); letter-spacing:-0.2px; }
.build-card .sub{ font-size:13px; color:var(--ink-soft); margin-top:8px; }
@media (max-width:760px){ .build-grid{ grid-template-columns:1fr; } }

/* ---------- legal content ---------- */
.legal-content{ max-width:760px; margin:0 auto; }
.legal-content h1{ font-size:30px; color:var(--blue-deep); margin:0 0 8px; letter-spacing:-0.5px; }
.legal-content .legal-updated{ font-size:13px; color:var(--ink-soft); margin:0 0 36px; }
.legal-content h2{ font-size:22px; color:var(--blue-deep); margin:48px 0 18px; letter-spacing:-0.3px; }
.legal-content h3{ font-size:16px; color:var(--ink); margin:28px 0 10px; }
.legal-content p{ font-size:14.5px; color:var(--ink); line-height:1.75; margin:0 0 16px; }
.legal-content ul{ margin:0 0 16px; padding-left:20px; }
.legal-content li{ font-size:14.5px; color:var(--ink); line-height:1.7; margin-bottom:6px; }
.legal-content a{ color:var(--blue); font-weight:600; }
.legal-content strong{ color:var(--ink); }
.legal-content hr{ border:none; border-top:1px solid var(--line); margin:40px 0; }

.founder-section{
  display:grid; grid-template-columns:220px 1fr; gap:44px; align-items:center;
  max-width:760px; margin:0 auto;
}
.founder-photo{
  width:200px; height:200px; border-radius:50%; overflow:hidden;
  background:var(--blue-tint); display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow); flex-shrink:0;
}
.founder-name{ font-size:20px; font-weight:800; color:var(--blue-deep); margin:0 0 4px; }
.founder-role{ font-size:13.5px; font-weight:700; color:var(--blue); text-transform:uppercase; letter-spacing:0.5px; margin:0 0 16px; }
.founder-bio{ font-size:15px; color:var(--ink-soft); line-height:1.65; margin:0 0 12px; }
.founder-bio .placeholder{ background:var(--blue-tint); padding:1px 6px; border-radius:4px; color:var(--blue-deep); font-style:italic; }
@media (max-width:640px){ .founder-section{ grid-template-columns:1fr; text-align:center; } .founder-photo{ margin:0 auto; } }

/* ---------- notre approche (alternating timeline) ---------- */
.approach-wrap{ max-width:620px; margin:0 auto; }
.approach-step{ display:flex; gap:24px; align-items:flex-start; }
.approach-rail{ display:flex; flex-direction:column; align-items:center; width:52px; flex-shrink:0; }
.approach-num{
  width:52px; height:52px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg, var(--blue), var(--blue-deep)); color:#fff;
  font-weight:800; font-size:19px; display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 14px rgba(22,50,74,0.25); position:relative; z-index:1;
}
.approach-connector{ width:2px; flex:1; min-height:44px; background:linear-gradient(var(--blue), var(--line)); margin:2px 0; }
.approach-body{ padding-bottom:44px; flex:1; }
.approach-step:last-child .approach-body{ padding-bottom:0; }
.approach-title-row{ display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.approach-icon-badge{
  width:30px; height:30px; border-radius:50%; background:var(--blue-tint);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.approach-body h3{ font-size:18px; color:var(--ink); margin:0; }
.approach-body p{ font-size:14px; color:var(--ink-soft); margin:0; line-height:1.65; padding-left:40px; }
.approach-step{ transition:transform .15s ease; }
.approach-step:hover{ transform:translateX(4px); }
@media (max-width:600px){ .approach-body p{ padding-left:0; } }

/* ---------- comparison table ---------- */
.compare-wrap{ overflow-x:auto; border-radius:var(--radius-lg); box-shadow:var(--shadow); }
.compare-table{ width:100%; border-collapse:collapse; background:#fff; min-width:640px; }
.compare-table th, .compare-table td{ padding:16px 22px; border-bottom:1px solid var(--line); font-size:14px; }
.compare-table td:first-child, .compare-table th:first-child{ text-align:left; color:var(--ink); min-width:260px; }
.compare-table th:not(:first-child), .compare-table td:not(:first-child){ text-align:center; }
.compare-table thead th{ background:var(--blue-tint); padding-top:22px; padding-bottom:18px; }
.compare-table thead th.highlight{ background:var(--blue); }
.compare-table .tier-name{ display:block; font-size:16px; font-weight:800; color:var(--blue-deep); }
.compare-table th.highlight .tier-name{ color:#fff; }
.compare-table .tier-price{ display:block; font-size:13.5px; font-weight:700; color:var(--blue); margin-top:4px; }
.compare-table th.highlight .tier-price{ color:#EAF1F6; }
.compare-table tbody tr:last-child td{ border-bottom:none; }
.compare-table tbody td.highlight{ background:rgba(78,127,174,0.06); }
.compare-check{ color:var(--blue); font-weight:800; font-size:16px; }
.compare-dash{ color:#C7C2BC; }
.compare-cta td{ padding-top:22px; padding-bottom:26px; }
.compare-cta a{ display:inline-block; }
.story-hero{
  display:grid; grid-template-columns:1.1fr 1fr; gap:48px; align-items:center;
  margin-top:20px;
}
.story-hero h1{ font-size:34px; color:var(--blue-deep); letter-spacing:-0.6px; margin:0 0 18px; line-height:1.2; }
.story-hero p{ font-size:16px; color:var(--ink-soft); margin:0 0 26px; max-width:52ch; }
.story-illustration{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); }
@media (max-width:860px){ .story-hero{ grid-template-columns:1fr; } }

.story-block{ max-width:720px; margin:0 auto; text-align:center; }
.story-block h2{ font-size:26px; color:var(--blue-deep); letter-spacing:-0.4px; margin:0 0 18px; }
.story-block p{ font-size:15.5px; color:var(--ink-soft); line-height:1.65; margin:0 0 16px; }

.pain-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.pain-card{ text-align:center; padding:8px; }
.pain-card .icon-wrap{
  width:64px; height:64px; border-radius:50%; background:var(--blue-tint);
  display:flex; align-items:center; justify-content:center; margin:0 auto 18px;
}
.pain-card h3{ font-size:16px; color:var(--ink); margin:0 0 8px; }
.pain-card p{ font-size:13.5px; color:var(--ink-soft); margin:0; }
@media (max-width:760px){ .pain-grid{ grid-template-columns:1fr; } }

.value-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.value-card{ border:1.5px solid var(--line); border-radius:var(--radius-md); padding:22px; text-align:center; }
.value-card .icon-wrap{
  width:48px; height:48px; border-radius:50%; background:var(--blue-tint);
  display:flex; align-items:center; justify-content:center; margin:0 auto 14px;
}
.value-card h3{ font-size:14.5px; color:var(--ink); margin:0 0 6px; }
.value-card p{ font-size:12.5px; color:var(--ink-soft); margin:0; line-height:1.5; }
@media (max-width:860px){ .value-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .value-grid{ grid-template-columns:1fr; } }

.timeline{ max-width:640px; margin:0 auto; }
.timeline-item{ display:flex; gap:20px; margin-bottom:32px; }
.timeline-item .year{
  flex-shrink:0; width:64px; font-weight:800; color:var(--blue); font-size:17px; text-align:right;
}
.timeline-item .content{ border-left:2px solid var(--line); padding-left:20px; padding-bottom:4px; }
.timeline-item .content h5{ font-size:15.5px; color:var(--ink); margin:0 0 6px; }
.timeline-item .content p{ font-size:13.5px; color:var(--ink-soft); margin:0; }
.timeline-item:last-child .content{ border-left-color:transparent; }
.pay-card{ border:1.5px solid var(--line); border-radius:var(--radius-lg); padding:30px; }
.pay-card h3{ color:var(--blue-deep); font-size:18px; margin:0 0 20px; }
.pay-grid{ display:grid; grid-template-columns:2fr 1fr; gap:14px; }
.pay-grid.three{ grid-template-columns:1fr 1fr 1fr; }
.accepted-methods{ display:flex; gap:10px; margin:18px 0 22px; }
.method-chip{
  border:1px solid var(--line); border-radius:8px; padding:6px 12px;
  font-size:11px; font-weight:800; color:var(--ink-soft); letter-spacing:0.3px;
}
.disclosure{
  background:var(--blue-tint); border-radius:var(--radius-md); padding:14px 16px;
  font-size:12.5px; color:var(--ink); margin:20px 0; line-height:1.5;
}
.summary-line{ display:flex; justify-content:space-between; font-size:14.5px; padding:10px 0; }
.summary-line.total{ font-weight:800; font-size:17px; color:var(--blue-deep); border-top:1.5px solid var(--line); margin-top:8px; padding-top:16px; }
.refund-note{ font-size:12.5px; color:var(--ink-soft); margin-top:16px; text-align:center; }
