/* ============================================================
   TOKENS
   ============================================================ */
:root{
  --white:#FFFFFF;
  --black:#0A0B0D;
  --ink:#14151A;
  --blue:#2F5DFF;
  --blue-dark:#1E42D0;
  --green:#0E9F5A;
  --grey-50:#F6F7F9;
  --grey-100:#EEF0F3;
  --grey-200:#E2E5EA;
  --grey-400:#9AA1AC;
  --grey-600:#5B6270;
  --font-display:'Space Grotesk', 'Arial Narrow', sans-serif;
  --font-body:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container:1240px;
  --radius-s:4px;
  --radius-m:8px;
  --nav-h:72px;
  --ease:cubic-bezier(.22,.8,.32,1);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth; -webkit-text-size-adjust:100%;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  line-height:1.5;
  overflow-x:hidden;
  min-width:320px;
}
img,svg{display:block;max-width:100%;}
button{font-family:inherit;cursor:pointer;background:none;border:none;color:inherit;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
input,select,textarea{font-family:inherit;font-size:16px;}
.container{max-width:var(--container);margin:0 auto;padding:0 24px;}
@media (max-width:640px){.container{padding:0 20px;}}

h1,h2,h3,h4{font-family:var(--font-display);font-weight:600;letter-spacing:-0.01em;line-height:1.08;}
h1{font-size:clamp(2.6rem,6vw,5rem);}
h2{font-size:clamp(2rem,4.2vw,3.2rem);}
h3{font-size:clamp(1.25rem,2vw,1.6rem);}
p{color:var(--grey-600);}
.eyebrow-num{font-family:var(--font-display);font-weight:600;color:var(--blue);}

/* focus visibility */
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,[tabindex]:focus-visible{
  outline:2.5px solid var(--blue); outline-offset:3px; border-radius:2px;
}

/* Touch targets */
.tap{min-height:44px;min-width:44px;display:inline-flex;align-items:center;justify-content:center;}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  font-family:var(--font-display);
  font-weight:600;
  font-size:0.95rem;
  padding:14px 28px;
  min-height:48px;
  border-radius:2px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  white-space:nowrap;
}
.btn:active{transform:scale(.97);}
.btn-primary{background:var(--black);color:var(--white);}
.btn-primary:hover{background:var(--blue);}
.btn-outline{background:transparent;color:var(--black);border:1.5px solid var(--black);}
.btn-outline:hover{background:var(--black);color:var(--white);}
.btn-blue{background:var(--blue);color:var(--white);}
.btn-blue:hover{background:var(--blue-dark);}
.btn-ghost{color:var(--black);border-bottom:1.5px solid var(--black);border-radius:0;padding:8px 2px;}
.btn-ghost:hover{color:var(--blue);border-color:var(--blue);}
.btn-sm{padding:10px 18px;min-height:40px;font-size:.85rem;}

/* ============================================================
   NAV
   ============================================================ */
#mainNav{
  position:fixed;top:0;left:0;right:0;z-index:500;
  height:var(--nav-h);
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid var(--grey-200);
  transition:transform .3s var(--ease);
}
#mainNav.nav-hidden{transform:translateY(-100%);}
.nav-inner{
  height:100%;
  display:flex;align-items:center;justify-content:space-between;
  max-width:var(--container);margin:0 auto;padding:0 24px;
}
.nav-logo{display:flex;align-items:center;gap:10px;font-family:var(--font-display);font-weight:700;font-size:1.15rem;letter-spacing:-0.01em;}
.nav-logo img{height:42px;width:auto;display:block;}
@media (max-width:480px){.nav-logo img{height:36px;}}
.nav-links{display:flex;align-items:center;gap:2px;list-style:none;}
.nav-links button{
  padding:10px 14px;font-size:.86rem;font-weight:600;font-family:var(--font-display);
  color:var(--grey-600);border-radius:2px;position:relative;min-height:44px;
  transition:color .2s;
}
.nav-links button::after{
  content:'';position:absolute;left:14px;right:14px;bottom:6px;height:2px;background:var(--blue);
  transform:scaleX(0);transform-origin:left;transition:transform .25s var(--ease);
}
.nav-links button:hover{color:var(--black);}
.nav-links button.active{color:var(--black);}
.nav-links button.active::after{transform:scaleX(1);}
.nav-actions{display:flex;align-items:center;gap:8px;}
.icon-btn{width:44px;height:44px;display:flex;align-items:center;justify-content:center;border-radius:2px;color:var(--black);}
.icon-btn:hover{background:var(--grey-100);}
.hamburger{display:none;flex-direction:column;gap:5px;width:44px;height:44px;align-items:center;justify-content:center;}
.hamburger span{display:block;width:22px;height:2px;background:var(--black);transition:transform .3s var(--ease),opacity .3s var(--ease);}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hamburger.open span:nth-child(2){opacity:0;}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

@media (max-width:960px){
  .nav-links{display:none;}
  .hamburger{display:flex;}
}

/* mobile menu */
#mobileMenu{
  position:fixed;inset:0;z-index:600;background:var(--black);
  display:flex;flex-direction:column;
  transform:translateX(100%);transition:transform .35s var(--ease);
  padding:calc(var(--nav-h) + 8px) 28px 40px;
}
#mobileMenu.open{transform:translateX(0);}
#mobileMenu ul{display:flex;flex-direction:column;gap:4px;margin-top:20px;}
#mobileMenu button{
  font-family:var(--font-display);font-size:1.7rem;font-weight:600;color:var(--white);
  padding:14px 0;text-align:left;border-bottom:1px solid rgba(255,255,255,.12);width:100%;min-height:44px;
}
#mobileMenu .mm-close{position:absolute;top:16px;right:16px;color:var(--white);}
#mobileMenu .mm-foot{margin-top:auto;color:var(--grey-400);font-size:.85rem;}
#mobileMenu .mm-foot a{color:var(--white);}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
#searchOverlay{
  position:fixed;inset:0;z-index:700;background:rgba(10,11,13,.7);
  display:flex;align-items:flex-start;justify-content:center;
  opacity:0;visibility:hidden;transition:opacity .25s var(--ease);
  padding:80px 20px 20px;
}
#searchOverlay.open{opacity:1;visibility:visible;}
.search-panel{
  width:100%;max-width:680px;background:var(--white);border-radius:var(--radius-m);
  overflow:hidden;max-height:80vh;display:flex;flex-direction:column;
  transform:translateY(-16px);transition:transform .3s var(--ease);
}
#searchOverlay.open .search-panel{transform:translateY(0);}
.search-input-row{display:flex;align-items:center;gap:12px;padding:18px 20px;border-bottom:1px solid var(--grey-200);}
.search-input-row svg{flex-shrink:0;color:var(--grey-600);}
#searchInput{flex:1;border:none;outline:none;font-size:1.15rem;font-family:var(--font-display);color:var(--black);}
#searchInput::placeholder{color:var(--grey-400);}
.search-close{flex-shrink:0;}
.search-results{overflow-y:auto;padding:8px;}
.search-hint{padding:24px 20px;color:var(--grey-400);font-size:.9rem;}
.search-result{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  width:100%;text-align:left;padding:14px 16px;border-radius:var(--radius-s);min-height:44px;
}
.search-result:hover{background:var(--grey-50);}
.search-result .sr-name{font-weight:600;color:var(--black);font-size:.98rem;}
.search-result .sr-dept{font-size:.78rem;color:var(--grey-400);margin-top:2px;}
.search-result .sr-arrow{color:var(--blue);flex-shrink:0;}

/* ============================================================
   HERO
   ============================================================ */
#home{
  min-height:100vh;
  display:flex;align-items:center;
  padding:calc(var(--nav-h) + 40px) 0 80px;
  position:relative;
  background:var(--white);
}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:60px;align-items:center;}
@media (max-width:960px){.hero-grid{grid-template-columns:1fr;gap:48px;}}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;font-family:var(--font-display);
  font-size:.82rem;font-weight:600;color:var(--blue);margin-bottom:22px;
}
.hero-eyebrow .dot{width:7px;height:7px;border-radius:50%;background:var(--green);}
.hero-headline{margin-bottom:24px;}
.hero-headline .line2{color:var(--blue);}
.hero-sub{font-family:var(--font-display);font-size:clamp(1.1rem,1.8vw,1.4rem);color:var(--black);font-weight:500;margin-bottom:20px;line-height:1.3;}
.hero-desc{font-size:1.05rem;max-width:520px;margin-bottom:36px;}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;}

.hero-ecosystem{position:relative;aspect-ratio:1/1;max-width:480px;margin:0 auto;width:100%;}
.eco-svg{width:100%;height:100%;}
.eco-hub{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:34%;aspect-ratio:1/1;background:var(--black);border-radius:50%;
  display:flex;align-items:center;justify-content:center;flex-direction:column;
  color:var(--white);text-align:center;padding:10px;z-index:3;
}
.eco-hub strong{font-family:var(--font-display);font-size:clamp(.8rem,2.2vw,1.15rem);font-weight:700;line-height:1.15;}
.eco-hub span{font-size:.6rem;letter-spacing:.06em;color:var(--grey-400);margin-top:4px;}
.eco-node{
  position:absolute;width:15%;aspect-ratio:1/1;border-radius:50%;
  background:var(--white);border:1.5px solid var(--grey-200);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-weight:600;font-size:.65rem;color:var(--grey-600);
  transition:transform .25s var(--ease), border-color .2s, color .2s, background .2s;
  z-index:2;
}
.eco-node:hover,.eco-node:focus-visible{border-color:var(--blue);color:var(--blue);transform:scale(1.14);background:var(--white);}
@media (max-width:640px){.eco-node{font-size:.55rem;}}

/* ============================================================
   SECTION SHELL
   ============================================================ */
section{padding:100px 0;}
@media (max-width:640px){section{padding:64px 0;}}
.section-head{max-width:720px;margin-bottom:56px;}
.section-head p{margin-top:18px;font-size:1.05rem;max-width:600px;}
.reveal{opacity:0;transform:translateY(22px);transition:opacity .6s var(--ease), transform .6s var(--ease);}
.reveal.in{opacity:1;transform:translateY(0);}

#about{background:var(--grey-50);}

/* ============================================================
   ABOUT CARDS
   ============================================================ */
.about-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
@media (max-width:860px){.about-cards{grid-template-columns:1fr;}}
.about-card{
  background:var(--white);border:1px solid var(--grey-200);border-radius:var(--radius-m);
  padding:32px 28px;text-align:left;transition:border-color .2s,box-shadow .2s;
  cursor:pointer;
}
.about-card:hover,.about-card:focus-visible{border-color:var(--black);}
.about-card .ac-tag{font-family:var(--font-display);font-size:.75rem;font-weight:700;letter-spacing:.06em;color:var(--blue);margin-bottom:14px;display:block;}
.about-card h3{margin-bottom:10px;}
.about-card p{font-size:.92rem;margin-bottom:16px;}
.about-card .ac-more{font-size:.82rem;font-weight:600;color:var(--black);display:flex;align-items:center;gap:6px;}
.about-card .ac-body{
  max-height:0;overflow:hidden;transition:max-height .35s var(--ease);
}
.about-card.open .ac-body{max-height:400px;}
.about-card .ac-body ul{padding-top:14px;border-top:1px solid var(--grey-200);margin-top:14px;display:flex;flex-direction:column;gap:8px;}
.about-card .ac-body li{font-size:.88rem;color:var(--grey-600);padding-left:16px;position:relative;}
.about-card .ac-body li::before{content:'';position:absolute;left:0;top:8px;width:6px;height:1.5px;background:var(--blue);}
.about-card .ac-more svg{transition:transform .3s;}
.about-card.open .ac-more svg{transform:rotate(180deg);}

/* ============================================================
   ECOSYSTEM / DEPARTMENTS
   ============================================================ */
.dept-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;}
@media (max-width:960px){.dept-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:520px){.dept-grid{grid-template-columns:1fr;}}
.dept-card{
  background:var(--white);border:1px solid var(--grey-200);border-radius:var(--radius-m);
  padding:24px 22px;text-align:left;transition:border-color .2s var(--ease), transform .2s var(--ease), background .2s;
  display:flex;flex-direction:column;gap:14px;min-height:150px;
}
.dept-card:hover,.dept-card:focus-visible{border-color:var(--black);transform:translateY(-3px);}
.dept-card .dc-num{font-family:var(--font-display);font-weight:700;font-size:.85rem;color:var(--blue);}
.dept-card h4{font-family:var(--font-display);font-size:1.02rem;font-weight:600;line-height:1.25;}
.dept-card .dc-desc{font-size:.82rem;color:var(--grey-400);margin-top:auto;}
.dept-card .dc-open{font-size:.78rem;font-weight:600;color:var(--black);display:flex;align-items:center;gap:5px;margin-top:4px;}

/* ============================================================
   JOURNEY
   ============================================================ */
.journey-track{
  display:flex;overflow-x:auto;gap:0;padding-bottom:20px;scroll-snap-type:x proximity;
  -webkit-overflow-scrolling:touch;
}
.journey-track::-webkit-scrollbar{height:6px;}
.journey-track::-webkit-scrollbar-thumb{background:var(--grey-200);border-radius:4px;}
.journey-step{
  scroll-snap-align:start;flex:0 0 auto;width:190px;padding:20px 18px;
  border-right:1px solid var(--grey-200);position:relative;text-align:left;
  transition:background .2s;
}
.journey-step:last-child{border-right:none;}
.journey-step:hover,.journey-step:focus-visible{background:var(--grey-50);}
.journey-step .js-idx{font-family:var(--font-display);font-size:.72rem;color:var(--grey-400);font-weight:600;}
.journey-step h4{font-family:var(--font-display);font-size:1.05rem;font-weight:600;margin-top:10px;}
.journey-step .js-arrow{position:absolute;right:-1px;top:50%;transform:translateY(-50%);color:var(--grey-200);z-index:1;}
.journey-step:last-child .js-arrow{display:none;}
.journey-progress{height:2px;background:var(--grey-200);position:relative;margin-top:0;border-radius:2px;overflow:hidden;}
.journey-progress-bar{height:100%;width:0%;background:var(--blue);transition:width .3s var(--ease);}
.journey-hint{margin-top:14px;font-size:.82rem;color:var(--grey-400);}

/* ============================================================
   FINDER
   ============================================================ */
.finder-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;}
@media (max-width:860px){.finder-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:520px){.finder-grid{grid-template-columns:1fr;}}
.finder-opt{
  border:1.5px solid var(--grey-200);border-radius:var(--radius-m);padding:20px;
  text-align:left;font-family:var(--font-display);font-weight:600;font-size:.98rem;
  display:flex;align-items:center;justify-content:space-between;gap:10px;min-height:44px;
  transition:border-color .2s,color .2s,background .2s;
}
.finder-opt:hover,.finder-opt:focus-visible{border-color:var(--blue);color:var(--blue);}
.finder-opt.active{background:var(--black);color:var(--white);border-color:var(--black);}
.finder-opt svg{flex-shrink:0;opacity:.5;}

#finderResult{
  margin-top:28px;border:1px solid var(--grey-200);border-radius:var(--radius-m);
  padding:28px;display:none;background:var(--grey-50);
}
#finderResult.show{display:block;}
#finderResult h3{margin-bottom:14px;}
#finderResult .fr-chips{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:20px;}
.chip{
  background:var(--white);border:1px solid var(--grey-200);border-radius:20px;
  padding:8px 16px;font-size:.85rem;font-weight:500;color:var(--ink);
}

/* ============================================================
   WHY US
   ============================================================ */
#why{background:var(--black);color:var(--white);}
#why .section-head h2{color:var(--white);}
#why .section-head p{color:var(--grey-400);}
.compare-wrap{display:grid;grid-template-columns:1fr auto 1fr;gap:32px;align-items:center;}
@media (max-width:820px){.compare-wrap{grid-template-columns:1fr;}}
.compare-col{border:1px solid rgba(255,255,255,.14);border-radius:var(--radius-m);padding:28px;}
.compare-col h3{font-size:.95rem;letter-spacing:.04em;color:var(--grey-400);margin-bottom:18px;font-family:var(--font-display);text-transform:uppercase;}
.compare-col.old ul{display:flex;flex-direction:column;gap:0;}
.compare-col.old li{
  padding:12px 0;border-bottom:1px solid rgba(255,255,255,.1);color:var(--grey-400);font-size:.95rem;
  display:flex;align-items:center;gap:10px;opacity:0;transform:translateX(-10px);
  transition:opacity .4s var(--ease),transform .4s var(--ease);
}
.compare-col.old li.in{opacity:1;transform:translateX(0);}
.compare-col.old li .x{color:#ff6b6b;font-weight:700;}
.compare-col.new{background:var(--blue);border-color:var(--blue);}
.compare-col.new h3{color:rgba(255,255,255,.75);}
.compare-col.new ul{display:flex;flex-direction:column;gap:14px;}
.compare-col.new li{font-family:var(--font-display);font-weight:600;font-size:1.15rem;display:flex;align-items:center;gap:12px;
  opacity:0;transform:translateX(10px);transition:opacity .4s var(--ease),transform .4s var(--ease);}
.compare-col.new li.in{opacity:1;transform:translateX(0);}
.compare-col.new li .check{width:22px;height:22px;border-radius:50%;background:rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.compare-vs{font-family:var(--font-display);font-weight:700;color:var(--grey-400);font-size:1.1rem;text-align:center;}

/* ============================================================
   HOW WE WORK
   ============================================================ */
.how-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
@media (max-width:860px){.how-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:520px){.how-grid{grid-template-columns:1fr;}}
.how-step{
  border:1px solid var(--grey-200);border-radius:var(--radius-m);padding:26px 22px;text-align:left;
  transition:border-color .2s,transform .2s;min-height:44px;
}
.how-step:hover,.how-step:focus-visible{border-color:var(--black);transform:translateY(-3px);}
.how-step .hs-num{font-family:var(--font-display);font-weight:700;font-size:1.4rem;color:var(--blue);display:block;margin-bottom:14px;}
.how-step h4{font-family:var(--font-display);font-size:1.08rem;margin-bottom:8px;}
.how-step p{font-size:.88rem;}
.how-detail{
  margin-top:24px;border:1px solid var(--grey-200);border-radius:var(--radius-m);padding:24px 28px;
  background:var(--grey-50);display:none;
}
.how-detail.show{display:block;}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industry-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;}
@media (max-width:860px){.industry-grid{grid-template-columns:repeat(3,1fr);}}
@media (max-width:560px){.industry-grid{grid-template-columns:repeat(2,1fr);}}
.industry-card{
  border:1px solid var(--grey-200);border-radius:var(--radius-m);padding:20px 16px;text-align:left;
  min-height:44px;transition:border-color .2s,background .2s;
}
.industry-card:hover,.industry-card:focus-visible{border-color:var(--blue);background:var(--grey-50);}
.industry-card span{font-family:var(--font-display);font-weight:600;font-size:.92rem;}

/* ============================================================
   CONTACT
   ============================================================ */
#contact{background:var(--grey-50);}
.contact-wrap{display:grid;grid-template-columns:.9fr 1.1fr;gap:60px;}
@media (max-width:860px){.contact-wrap{grid-template-columns:1fr;gap:36px;}}
.contact-info h2{margin-bottom:20px;}
.contact-info p{margin-bottom:28px;max-width:420px;}
.contact-list{display:flex;flex-direction:column;gap:16px;}
.contact-list li{font-size:.95rem;color:var(--ink);display:flex;gap:10px;align-items:flex-start;}
.contact-list strong{font-family:var(--font-display);display:block;font-size:.78rem;color:var(--grey-400);text-transform:uppercase;letter-spacing:.04em;margin-bottom:2px;}

#contactForm{background:var(--white);border:1px solid var(--grey-200);border-radius:var(--radius-m);padding:32px;}
.form-row{margin-bottom:18px;}
.form-row label{display:block;font-size:.8rem;font-weight:600;color:var(--grey-600);margin-bottom:6px;font-family:var(--font-display);}
.form-row input,.form-row select,.form-row textarea{
  width:100%;padding:13px 14px;border:1.5px solid var(--grey-200);border-radius:var(--radius-s);
  outline:none;transition:border-color .2s;background:var(--white);color:var(--ink);
}
.form-row input:focus,.form-row select:focus,.form-row textarea:focus{border-color:var(--blue);}
.form-row .err{color:#d92d20;font-size:.78rem;margin-top:5px;display:none;}
.form-row.invalid input,.form-row.invalid select{border-color:#d92d20;}
.form-row.invalid .err{display:block;}
#contactForm button[type=submit]{width:100%;margin-top:6px;}
.form-success{
  display:none;text-align:center;padding:40px 20px;
}
.form-success.show{display:block;}
.form-success .fs-icon{width:56px;height:56px;border-radius:50%;background:var(--green);color:var(--white);display:flex;align-items:center;justify-content:center;margin:0 auto 18px;}
.form-success h3{margin-bottom:8px;}
.form-success p{max-width:360px;margin:0 auto;}

/* ============================================================
   MODAL
   ============================================================ */
#modalRoot{
  position:fixed;inset:0;z-index:800;
  display:flex;align-items:flex-end;justify-content:center;
  opacity:0;visibility:hidden;transition:opacity .3s var(--ease);
}
#modalRoot.open{opacity:1;visibility:visible;}
.modal-backdrop{position:absolute;inset:0;background:rgba(10,11,13,.6);}
.modal-panel{
  position:relative;background:var(--white);width:100%;max-width:760px;max-height:88vh;
  border-radius:var(--radius-m) var(--radius-m) 0 0;
  overflow-y:auto;transform:translateY(100%);transition:transform .35s var(--ease);
  padding:0 0 40px;
}
@media (min-width:760px){
  #modalRoot{align-items:center;}
  .modal-panel{border-radius:var(--radius-m);max-height:84vh;transform:translateY(24px) scale(.98);}
}
#modalRoot.open .modal-panel{transform:translateY(0) scale(1);}
.modal-head{
  position:sticky;top:0;background:var(--white);z-index:2;
  display:flex;align-items:flex-start;justify-content:space-between;gap:16px;
  padding:28px 28px 20px;border-bottom:1px solid var(--grey-200);
}
.modal-head .mh-num{font-family:var(--font-display);font-weight:700;color:var(--blue);font-size:.85rem;display:block;margin-bottom:6px;}
.modal-close{flex-shrink:0;}
.modal-body{padding:24px 28px 8px;}
.modal-body > p.modal-desc{margin-bottom:22px;font-size:1rem;}

.modal-disclaimer{
  margin-top:24px;padding:14px 16px;background:var(--grey-50);border-left:3px solid var(--blue);
  font-size:.8rem;color:var(--grey-600);border-radius:0 var(--radius-s) var(--radius-s) 0;
}

/* accordion */
.acc-group{border-top:1px solid var(--grey-200);}
.acc-group:last-child{border-bottom:1px solid var(--grey-200);}
.acc-trigger{
  width:100%;display:flex;align-items:center;justify-content:space-between;
  padding:16px 2px;text-align:left;font-family:var(--font-display);font-weight:600;font-size:1rem;min-height:44px;
}
.acc-trigger svg{transition:transform .3s var(--ease);flex-shrink:0;color:var(--grey-400);}
.acc-group.open .acc-trigger svg{transform:rotate(45deg);color:var(--blue);}
.acc-panel{max-height:0;overflow:hidden;transition:max-height .35s var(--ease);}
.acc-group.open .acc-panel{max-height:1000px;}
.acc-panel-inner{padding:0 2px 18px;display:flex;flex-wrap:wrap;gap:8px;}
.svc-chip{background:var(--grey-50);border:1px solid var(--grey-200);border-radius:20px;padding:8px 14px;font-size:.83rem;color:var(--ink);}

/* modal footer cta */
.modal-cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px;padding-top:24px;border-top:1px solid var(--grey-200);}

/* toast */
#toast{
  position:fixed;bottom:24px;left:50%;transform:translateX(-50%) translateY(20px);
  background:var(--black);color:var(--white);padding:14px 22px;border-radius:var(--radius-s);
  font-size:.9rem;font-weight:500;opacity:0;visibility:hidden;transition:opacity .3s,transform .3s;z-index:900;
  display:flex;align-items:center;gap:10px;
}
#toast.show{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);}

/* ============================================================
   FOOTER
   ============================================================ */
footer{background:var(--black);color:var(--grey-400);padding:64px 0 32px;}
.footer-top{display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:32px;padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,.1);}
.footer-brand{max-width:380px;}
.footer-brand .fb-logo{background:var(--white);display:inline-flex;padding:14px 18px;border-radius:var(--radius-s);margin-bottom:18px;}
.footer-brand .fb-logo img{height:40px;width:auto;display:block;}
.footer-tag{font-family:var(--font-display);color:var(--white);font-weight:600;font-size:1.5rem;margin-top:24px;line-height:1.25;}
.footer-tag span{color:var(--blue);}
.footer-nav{display:flex;gap:60px;flex-wrap:wrap;}
.footer-nav-col h5{color:var(--white);font-family:var(--font-display);font-size:.8rem;letter-spacing:.05em;margin-bottom:14px;text-transform:uppercase;}
.footer-nav-col button{display:block;padding:6px 0;font-size:.88rem;color:var(--grey-400);min-height:auto;}
.footer-nav-col button:hover{color:var(--white);}
.footer-bottom{padding-top:28px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;font-size:.8rem;}

/* skip link */
.skip-link{
  position:absolute;left:-999px;top:0;background:var(--black);color:var(--white);padding:12px 20px;z-index:1000;
}
.skip-link:focus{left:12px;top:12px;}

/* scroll progress bar */
#scrollProgress{position:fixed;top:0;left:0;height:3px;background:var(--blue);z-index:900;width:0%;}