/* ============================================================
   AGM BÂTIMENT — Design System
   Navy #0E1E42 · Gold #F5A800 · Cream #F6F4EF
   Display: Playfair Display · Body: Hanken Grotesk
   ============================================================ */

:root{
  /* Brand */
  --navy:        #0E1E42;
  --navy-900:    #0A1631;
  --navy-800:    #14264f;
  --navy-700:    #1d3565;
  --navy-line:   #2a3d6b;
  --gold:        #F5A800;
  --gold-soft:   #FFC23D;
  --gold-deep:   #D88E00;

  /* Neutrals */
  --white:       #ffffff;
  --cream:       #F6F4EF;
  --cream-2:     #EFEBE3;
  --ink:         #1b2233;   /* near-navy text on light */
  --body:        #4d5564;   /* body gray */
  --muted:       #828a99;
  --line:        #e4e0d8;   /* hairline on light */
  --line-2:      #d9d4ca;

  /* Type */
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* Layout */
  --wrap: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 6px;
  --radius-lg: 14px;

  --shadow-sm: 0 2px 10px rgba(14,30,66,.06);
  --shadow-md: 0 18px 50px -20px rgba(14,30,66,.28);
  --shadow-lg: 0 40px 90px -30px rgba(10,22,49,.45);

  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--body);
  background:var(--white);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }

h1,h2,h3,h4{
  font-family:var(--display);
  color:var(--navy);
  font-weight:800;
  line-height:1.06;
  letter-spacing:-.01em;
  margin:0;
  text-wrap:balance;
}
p{ margin:0; text-wrap:pretty; }

/* ---------- Utilities ---------- */
.wrap{ width:100%; max-width:var(--wrap); margin:0 auto; padding-inline:var(--gut); }
.section{ padding-block:clamp(64px,9vw,128px); }
.center{ text-align:center; }
.gold{ color:var(--gold); }

.eyebrow{
  display:inline-flex; align-items:center; gap:12px;
  font-family:var(--sans);
  font-size:13px; font-weight:700; letter-spacing:.22em; text-transform:uppercase;
  color:var(--gold-deep);
  margin:0 0 22px;
}
.eyebrow::before{ content:""; width:30px; height:2px; background:var(--gold); display:inline-block; }
.eyebrow.center{ }
.center .eyebrow{ justify-content:center; }
.on-dark .eyebrow{ color:var(--gold); }

.display-1{ font-size:clamp(40px,6.4vw,82px); }
.display-2{ font-size:clamp(32px,4.6vw,58px); }
.display-3{ font-size:clamp(26px,3vw,38px); }

.lead{ font-size:clamp(18px,1.5vw,21px); color:var(--body); line-height:1.7; }
.on-dark, .on-dark p, .on-dark .lead{ color:rgba(255,255,255,.82); }
.on-dark h1,.on-dark h2,.on-dark h3,.on-dark h4{ color:#fff; }

.kicker-num{ font-family:var(--display); font-size:13px; color:var(--gold); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--sans); font-weight:700; font-size:15.5px; letter-spacing:.01em;
  padding:16px 28px; border-radius:var(--radius); border:1.5px solid transparent;
  transition:transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  line-height:1.1; text-align:center;
}
.btn svg{ width:18px; height:18px; }
.btn-gold{ background:var(--gold); color:var(--navy); box-shadow:0 10px 26px -10px rgba(245,168,0,.7); }
.btn-gold:hover{ background:var(--gold-soft); transform:translateY(-2px); box-shadow:0 16px 34px -12px rgba(245,168,0,.8); }
.btn-navy{ background:var(--navy); color:#fff; }
.btn-navy:hover{ background:var(--navy-700); transform:translateY(-2px); }
.btn-outline{ border-color:rgba(255,255,255,.35); color:#fff; }
.btn-outline:hover{ border-color:var(--gold); color:var(--gold); }
.btn-outline-dark{ border-color:var(--line-2); color:var(--navy); background:#fff; }
.btn-outline-dark:hover{ border-color:var(--navy); transform:translateY(-2px); }
.btn-lg{ padding:19px 34px; font-size:16.5px; }
.btn-block{ width:100%; }

.arrow-link{
  display:inline-flex; align-items:center; gap:10px; font-weight:700;
  color:var(--navy); letter-spacing:.01em;
}
.arrow-link svg{ width:18px; height:18px; transition:transform .3s var(--ease); color:var(--gold-deep); }
.arrow-link:hover svg{ transform:translateX(6px); }
.on-dark .arrow-link{ color:#fff; }
.on-dark .arrow-link svg{ color:var(--gold); }

/* ============================================================
   HEADER — transparent overlay, solidifies on scroll
   ============================================================ */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:transparent;
  border-bottom:1px solid transparent;
  transition:background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled{
  background:var(--navy);
  border-bottom-color:var(--navy-line);
  box-shadow:0 12px 34px -22px rgba(0,0,0,.8);
}
.site-header .bar{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  height:88px;
}
.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand img{ height:46px; width:auto; }
.nav{ display:flex; align-items:center; gap:10px; margin-left:auto; }
.nav a{
  font-weight:600; font-size:15px; letter-spacing:.06em; text-transform:uppercase; white-space:nowrap;
  color:rgba(255,255,255,.85); padding:10px 14px; border-radius:var(--radius);
  transition:color .2s, background .2s; position:relative;
}
.nav a:hover{ color:#fff; }
.nav a.active{ color:var(--gold); }

/* Frosted-glass Contact pill (ref-style) — .nav a.nav-cta to beat .nav a specificity */
.nav a.nav-cta{
  margin-left:18px; white-space:nowrap; text-transform:none;
  display:inline-flex; align-items:center; gap:12px;
  padding:15px 26px; border-radius:16px;
  font-weight:700; font-size:15.5px; letter-spacing:.01em; line-height:1;
  color:#fff;
  background:rgba(245,168,0,.16);
  border:1px solid rgba(245,168,0,.55);
  -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px);
  box-shadow:0 8px 26px -14px rgba(245,168,0,.6);
  transition:background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.nav a.nav-cta svg{ width:17px; height:17px; transition:transform .3s var(--ease); }
.nav a.nav-cta:hover{
  background:var(--gold); color:var(--navy); border-color:var(--gold);
  transform:translateY(-2px); box-shadow:0 16px 34px -14px rgba(245,168,0,.85);
}
.nav a.nav-cta:hover svg{ transform:translate(3px,3px); }

.menu-toggle{ display:none; background:none; border:0; padding:8px; }
.menu-toggle span{ display:block; width:26px; height:2px; background:#fff; margin:5px 0; transition:.3s; }

@media(max-width:760px){
  .nav{ display:none; }
  .menu-toggle{ display:block; }
  .nav.open{
    display:flex; flex-direction:column; align-items:stretch; gap:4px;
    position:absolute; top:88px; left:0; right:0; background:var(--navy-900);
    padding:18px var(--gut) 28px; border-bottom:1px solid var(--navy-line);
  }
  .nav.open a{ padding:14px 8px; font-size:16px; }
  .nav.open a.nav-cta{ margin:12px 0 0; justify-content:center; background:var(--gold); color:var(--navy); border-color:var(--gold); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{ position:relative; background:var(--navy-900); overflow:hidden; min-height:min(92vh,820px); display:flex; align-items:center; }
.hero-video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; z-index:0; background:var(--navy-900); }
.hero-overlay{ position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    linear-gradient(90deg, rgba(10,22,49,.92) 0%, rgba(10,22,49,.72) 38%, rgba(10,22,49,.32) 68%, rgba(10,22,49,.18) 100%),
    linear-gradient(0deg, rgba(10,22,49,.65) 0%, transparent 42%);
}
.hero-inner{ position:relative; z-index:2; width:100%; padding-top:calc(88px + clamp(36px,5vw,64px)); padding-bottom:clamp(48px,7vw,88px); }
.hero-copy{ display:flex; flex-direction:column; justify-content:center; max-width:640px; }
.hero-zone{
  display:inline-flex; align-items:center; gap:10px; align-self:flex-start;
  background:rgba(245,168,0,.14); border:1px solid rgba(245,168,0,.4);
  color:var(--gold); padding:8px 16px; border-radius:100px;
  font-size:13.5px; font-weight:600; letter-spacing:.03em; margin-bottom:28px;
  -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px);
}
.hero-zone svg{ width:15px; height:15px; }
.hero h1{ font-size:clamp(40px,5.6vw,74px); line-height:1.1; color:#fff; text-shadow:0 2px 30px rgba(0,0,0,.35); }
.hero h1 em{ font-style:italic; color:var(--gold); }
.hero-sub{ margin-top:26px; max-width:44ch; font-size:clamp(17px,1.4vw,20px); color:rgba(255,255,255,.86); text-shadow:0 1px 18px rgba(0,0,0,.4); }
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:38px; }
.hero-trust{ display:flex; flex-wrap:wrap; gap:28px; margin-top:46px; padding-top:30px; border-top:1px solid rgba(255,255,255,.18); }
.hero-trust .t{ display:flex; align-items:center; gap:11px; color:rgba(255,255,255,.9); font-size:14.5px; font-weight:500; }
.hero-trust svg{ width:20px; height:20px; color:var(--gold); flex-shrink:0; }

@media(max-width:880px){
  .hero{ min-height:auto; }
  .hero-inner{ padding-top:calc(88px + 40px); padding-bottom:64px; }
  .hero-copy{ max-width:none; }
  .hero-overlay{ background:linear-gradient(0deg, rgba(10,22,49,.92) 0%, rgba(10,22,49,.55) 55%, rgba(10,22,49,.45) 100%); }
}

/* ============================================================
   SERVICES GRID (home)
   ============================================================ */
.svc-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; }
@media(min-width:760px){ .svc-grid{ grid-template-columns:repeat(5,1fr); } }
.svc-card{
  background:#fff; padding:30px 24px 28px; display:flex; flex-direction:column; gap:14px;
  min-height:208px; position:relative; transition:background .3s var(--ease), transform .3s var(--ease);
  text-align:left; border:0; width:100%; font-family:inherit; cursor:pointer; color:inherit;
}
.svc-card:hover{ background:var(--navy); }
.svc-card:hover .svc-num,.svc-card:hover h3,.svc-card:hover .svc-ico{ color:#fff; }
.svc-card:hover .svc-ico{ border-color:var(--gold); background:rgba(245,168,0,.15); }
.svc-card:hover .svc-go{ opacity:1; transform:translateX(0); }
.svc-num{ font-family:var(--display); font-size:14px; color:var(--gold-deep); font-weight:700; transition:color .3s; }
.svc-ico{ width:46px; height:46px; border-radius:10px; display:grid; place-items:center; background:var(--cream); border:1px solid var(--line); color:var(--navy); transition:.3s var(--ease); }
.svc-ico svg{ width:24px; height:24px; }
.svc-card h3{ font-size:18.5px; line-height:1.18; margin-top:auto; transition:color .3s; }
.svc-go{ position:absolute; right:22px; bottom:26px; color:var(--gold); opacity:0; transform:translateX(-6px); transition:.3s var(--ease); }
.svc-go svg{ width:20px; height:20px; }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
@media(max-width:900px){ .ba-grid{ grid-template-columns:1fr; max-width:520px; margin-inline:auto; } }
.ba-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .35s var(--ease), box-shadow .35s var(--ease); }
.ba-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.ba-compare{ position:relative; aspect-ratio:4/3; overflow:hidden; user-select:none; touch-action:none; }
.ba-compare image-slot{ position:absolute; inset:0; width:100%; height:100%; }
.ba-after{ position:absolute; inset:0; clip-path:inset(0 0 0 50%); z-index:2; }
.ba-tag{ position:absolute; top:14px; z-index:4; font-size:11px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; padding:6px 11px; border-radius:4px; backdrop-filter:blur(4px); }
.ba-tag.before{ left:14px; background:rgba(10,22,49,.78); color:#fff; }
.ba-tag.after{ right:14px; background:var(--gold); color:var(--navy); }
.ba-handle{ position:absolute; top:0; bottom:0; left:50%; width:3px; background:var(--gold); z-index:3; transform:translateX(-50%); }
.ba-knob{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:46px; height:46px; border-radius:50%; background:var(--gold); color:var(--navy); display:grid; place-items:center; box-shadow:0 6px 18px rgba(0,0,0,.3); cursor:ew-resize; z-index:5; }
.ba-knob svg{ width:22px; height:22px; }
.ba-meta{ padding:20px 22px 22px; }
.ba-meta .loc{ font-size:12.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-deep); }
.ba-meta h3{ font-size:20px; margin:8px 0 6px; }
.ba-meta p{ font-size:14.5px; color:var(--muted); }

/* ============================================================
   FOUR FEATURE BOXES (home)
   ============================================================ */
.boxes{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }
@media(max-width:820px){ .boxes{ grid-template-columns:1fr; } }
.box{ border-radius:var(--radius-lg); padding:38px; display:flex; flex-direction:column; min-height:260px; position:relative; overflow:hidden; }
.box h3{ font-size:clamp(24px,2.4vw,30px); }
.box .arrow-link{ margin-top:auto; padding-top:22px; }

/* who-are-we */
.box-who{ background:var(--navy); color:#fff; grid-row:span 2; min-height:auto; }
.box-who .who-media{ position:relative; border-radius:10px; overflow:hidden; margin-top:24px; aspect-ratio:16/10; flex:1; }
.box-who .who-media image-slot{ position:absolute; inset:0; width:100%; height:100%; filter:grayscale(.35) brightness(.82); }
.box-who h3{ color:#fff; }
.box-who p{ color:rgba(255,255,255,.78); margin-top:14px; }

/* ambassador */
.box-amb{ background:linear-gradient(160deg,#16284f,#0A1631); color:#fff; border:1px solid var(--navy-line); }
.box-amb h3{ color:#fff; }
.box-amb .amb-amt{ font-family:var(--display); font-size:clamp(34px,4vw,48px); color:var(--gold); font-weight:800; line-height:1; margin:6px 0 4px; }
.box-amb p{ color:rgba(255,255,255,.78); margin-top:10px; font-size:15px; }
.box-amb ul{ list-style:none; padding:0; margin:18px 0 0; display:flex; flex-direction:column; gap:9px; }
.box-amb li{ display:flex; align-items:center; gap:10px; font-size:14.5px; color:rgba(255,255,255,.85); }
.box-amb li svg{ width:16px; height:16px; color:var(--gold); flex-shrink:0; }

/* stats */
.box-stats{ background:var(--gold); color:var(--navy); }
.box-stats h3{ color:var(--navy); }
.stat-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px 18px; margin-top:6px; }
.stat .n{ font-family:var(--display); font-size:clamp(34px,4vw,46px); font-weight:800; line-height:1; color:var(--navy); }
.stat .l{ font-size:13.5px; font-weight:600; color:rgba(14,30,66,.78); margin-top:6px; line-height:1.3; }

/* why choose */
.box-why{ background:#fff; border:1px solid var(--line); }
.why-list{ list-style:none; padding:0; margin:18px 0 0; display:flex; flex-direction:column; gap:2px; }
.why-list li{ display:flex; align-items:center; gap:16px; padding:15px 0; border-top:1px solid var(--line); }
.why-list li:first-child{ border-top:0; }
.why-ico{ width:42px; height:42px; border-radius:10px; background:var(--cream); border:1px solid var(--line); display:grid; place-items:center; color:var(--navy); flex-shrink:0; }
.why-ico svg{ width:21px; height:21px; }
.why-list b{ color:var(--navy); font-family:var(--sans); font-weight:700; font-size:16px; display:block; }
.why-list span{ font-size:13.5px; color:var(--muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-band{ background:var(--navy); position:relative; overflow:hidden; }
.cta-band::before{ content:""; position:absolute; right:-60px; top:-60px; width:340px; height:340px; border:1px solid var(--navy-line); border-radius:50%; }
.cta-band::after{ content:""; position:absolute; right:40px; bottom:-120px; width:260px; height:260px; border:1px solid var(--navy-line); border-radius:50%; }
.cta-inner{ display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; position:relative; z-index:2; }
.cta-inner h2{ color:#fff; font-size:clamp(28px,3.4vw,44px); max-width:18ch; }
.cta-inner .lead{ color:rgba(255,255,255,.75); margin-top:12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background:var(--navy-900); color:rgba(255,255,255,.62); padding-block:64px 30px; font-size:14.5px; }
.foot-grid{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1.3fr; gap:40px; }
@media(max-width:880px){ .foot-grid{ grid-template-columns:1fr 1fr; gap:36px 28px; } }
@media(max-width:520px){ .foot-grid{ grid-template-columns:1fr; } }
.site-footer img.flogo{ height:48px; margin-bottom:18px; }
.site-footer h4{ color:#fff; font-family:var(--sans); font-size:13px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; margin-bottom:18px; }
.site-footer a{ color:rgba(255,255,255,.62); transition:color .2s; }
.site-footer a:hover{ color:var(--gold); }
.flist{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:12px; }
.foot-contact li{ display:flex; gap:11px; margin-bottom:14px; align-items:flex-start; }
.foot-contact a{ overflow-wrap:anywhere; word-break:break-word; min-width:0; }
.foot-contact svg{ width:18px; height:18px; color:var(--gold); flex-shrink:0; margin-top:2px; }
.foot-bottom{ display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-top:48px; padding-top:24px; border-top:1px solid var(--navy-line); font-size:13px; color:rgba(255,255,255,.45); }
.foot-bottom a{ color:rgba(255,255,255,.55); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero{ background:var(--navy); position:relative; overflow:hidden; padding-top:calc(88px + clamp(48px,7vw,88px)); padding-bottom:clamp(56px,8vw,104px); }
.page-hero::after{ content:""; position:absolute; right:-80px; top:50%; transform:translateY(-50%); width:420px; height:420px; border:1px solid var(--navy-line); border-radius:50%; opacity:.6; }
.page-hero .crumb{ font-size:13px; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); font-weight:700; margin-bottom:18px; }
.page-hero h1{ color:#fff; font-size:clamp(36px,5vw,64px); max-width:20ch; }
.page-hero p{ color:rgba(255,255,255,.78); margin-top:20px; max-width:56ch; font-size:clamp(17px,1.4vw,20px); }
.page-hero .btn{ margin-top:34px; }
.page-hero-inner{ position:relative; z-index:2; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sec-head{ max-width:640px; margin-bottom:clamp(40px,5vw,64px); }
.sec-head.center{ margin-inline:auto; }
.sec-head h2{ font-size:clamp(30px,4vw,52px); }
.sec-head p{ margin-top:18px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.reveal.d1{ transition-delay:.08s; } .reveal.d2{ transition-delay:.16s; }
.reveal.d3{ transition-delay:.24s; } .reveal.d4{ transition-delay:.32s; }
@media(prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ============================================================
   GENERIC HELPERS
   ============================================================ */
.bg-cream{ background:var(--cream); }
.bg-navy{ background:var(--navy); }
.divider-gold{ width:54px; height:3px; background:var(--gold); border-radius:3px; }
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,5vw,72px); align-items:center; }
@media(max-width:840px){ .grid-2{ grid-template-columns:1fr; } }

/* ============================================================
   MODALE SERVICES
   ============================================================ */
.svc-modal{ position:fixed; inset:0; z-index:1000; display:flex; align-items:center; justify-content:center; padding:24px; }
.svc-modal[hidden]{ display:none; }
.svc-modal-backdrop{ position:absolute; inset:0; background:rgba(10,22,49,.62); backdrop-filter:blur(4px); }
.svc-modal-dialog{
  position:relative; z-index:2; width:100%; max-width:620px; max-height:88vh; overflow-y:auto;
  background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg);
  padding:clamp(28px,4vw,44px);
}
/* Entrance: transform-only pop — opacity stays 1 so the dialog is ALWAYS visible,
   even if the iframe isn't compositing and the animation is frozen mid-keyframe. */
.svc-modal.open .svc-modal-dialog{ animation:svcIn .4s var(--ease); }
@keyframes svcIn{ from{ transform:translateY(16px) scale(.98); } to{ transform:none; } }
.svc-modal-close{
  position:absolute; top:18px; right:18px; width:42px; height:42px; border-radius:10px;
  border:1px solid var(--line); background:var(--cream); color:var(--navy); display:grid; place-items:center;
  transition:.2s var(--ease);
}
.svc-modal-close:hover{ background:var(--navy); color:#fff; border-color:var(--navy); }
.svc-modal-close svg{ width:20px; height:20px; }
.svc-modal-head{ display:flex; align-items:flex-start; gap:18px; padding-right:40px; padding-bottom:24px; margin-bottom:24px; border-bottom:1px solid var(--line); }
.svc-modal-num{ font-family:var(--display); font-size:clamp(34px,5vw,46px); font-weight:800; color:var(--cream-2); line-height:.85; }
.svc-modal-ico{ width:58px; height:58px; border-radius:13px; background:var(--navy); color:var(--gold); display:grid; place-items:center; flex-shrink:0; }
.svc-modal-ico svg{ width:30px; height:30px; }
.svc-modal-head h2{ font-size:clamp(24px,3vw,32px); }
.svc-modal-head p{ color:var(--muted); font-size:15px; margin-top:6px; }
.svc-modal-list{ list-style:none; padding:0; margin:0; display:grid; grid-template-columns:1fr 1fr; gap:14px 26px; }
@media(max-width:540px){ .svc-modal-list{ grid-template-columns:1fr; } }
.svc-modal-list li{ display:flex; gap:12px; align-items:flex-start; font-size:15px; }
.svc-modal-list li svg{ width:20px; height:20px; color:var(--gold); flex-shrink:0; margin-top:3px; }
.svc-modal-list li b{ color:var(--navy); font-weight:700; }
.svc-modal-foot{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-top:30px; padding-top:24px; border-top:1px solid var(--line); }
@media(prefers-reduced-motion:reduce){
  .svc-modal.open .svc-modal-backdrop, .svc-modal.open .svc-modal-dialog{ animation:none; }
}
body.modal-open{ overflow:hidden; }
