/* ============================================================
   The Career Lab — Premium Brand Stylesheet
   Brand: Navy #071A3D  |  Orange #F5A623  |  White #FFFFFF
   ============================================================ */

:root{
  --navy:#071A3D;
  --navy-2:#0B244F;
  --navy-3:#102C5C;
  --navy-deep:#040F26;
  --orange:#F5A623;
  --orange-2:#ffb949;
  --white:#FFFFFF;
  --ink:#0d1b33;
  --muted:#5b6478;
  --muted-2:#8a93a6;
  --line:#e7eaf1;
  --bg-soft:#f5f7fb;
  --bg-soft-2:#eef2f9;
  --radius:18px;
  --radius-sm:12px;
  --radius-lg:28px;
  --shadow-sm:0 4px 16px rgba(7,26,61,.06);
  --shadow:0 18px 50px rgba(7,26,61,.10);
  --shadow-lg:0 40px 90px rgba(7,26,61,.18);
  --maxw:1200px;
  --ease:cubic-bezier(.2,.7,.2,1);
  --font:'Plus Jakarta Sans','Inter',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;font-family:var(--font);color:var(--ink);
  background:var(--white);line-height:1.6;-webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{line-height:1.12;margin:0;color:var(--navy);font-weight:800;letter-spacing:-.02em}
p{margin:0 0 1rem}
.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 24px}
section{position:relative}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:.55rem;cursor:pointer;border:0;
  font-family:inherit;font-weight:700;font-size:.98rem;line-height:1;
  padding:.95rem 1.5rem;border-radius:999px;transition:all .25s var(--ease);
  white-space:nowrap;
}
.btn svg{width:18px;height:18px}
.btn-primary{background:var(--orange);color:var(--navy);box-shadow:0 10px 26px rgba(245,166,35,.32)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 16px 36px rgba(245,166,35,.45);background:var(--orange-2)}
.btn-navy{background:var(--navy);color:#fff}
.btn-navy:hover{transform:translateY(-2px);background:var(--navy-3);box-shadow:var(--shadow)}
.btn-ghost{background:transparent;color:var(--navy);border:1.5px solid var(--line)}
.btn-ghost:hover{border-color:var(--navy);transform:translateY(-2px)}
.btn-light{background:rgba(255,255,255,.12);color:#fff;border:1.5px solid rgba(255,255,255,.4);backdrop-filter:blur(6px)}
.btn-light:hover{background:rgba(255,255,255,.2);transform:translateY(-2px)}
.btn-lg{padding:1.1rem 1.9rem;font-size:1.05rem}
.btn-block{width:100%;justify-content:center}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:900;background:rgba(255,255,255,.86);
  backdrop-filter:saturate(160%) blur(14px);border-bottom:1px solid var(--line);
  transition:box-shadow .3s var(--ease),background .3s;
}
.site-header.scrolled{box-shadow:0 10px 30px rgba(7,26,61,.08)}
.site-header .container{max-width:1320px}
.nav{display:flex;align-items:center;height:82px;gap:1rem}
.nav-logo{flex:0 0 auto;display:flex;align-items:center;margin-right:1.6rem}
.nav-logo img{height:42px;width:auto;display:block;flex:0 0 auto}
.nav-menu{display:flex;align-items:center;gap:.05rem;list-style:none;margin:0 0 0 auto;padding:0;flex:0 1 auto}
.nav-cta{flex:0 0 auto;margin-left:1.4rem}
.nav-menu a.nav-link{
  display:inline-flex;align-items:center;gap:.2rem;padding:.5rem .55rem;border-radius:10px;
  font-size:.83rem;font-weight:600;color:#33405c;transition:.2s;position:relative;white-space:nowrap;
}
.nav-menu a.nav-link:hover{color:var(--navy);background:var(--bg-soft)}
.nav-menu a.nav-link.active{color:var(--navy)}
.nav-menu a.nav-link.active::after{
  content:"";position:absolute;left:.55rem;right:.55rem;bottom:.24rem;height:2px;
  background:var(--orange);border-radius:2px;
}
.nav-cta{display:flex;align-items:center;gap:.6rem;margin-left:1.4rem}
.nav-cta .btn{padding:.8rem 1.25rem;font-size:.9rem}
.has-dropdown{position:relative}
.dropdown{
  position:absolute;top:calc(100% + 10px);left:50%;transform:translateX(-50%) translateY(8px);
  background:#fff;border:1px solid var(--line);border-radius:16px;box-shadow:var(--shadow);
  padding:.5rem;min-width:560px;opacity:0;visibility:hidden;transition:.22s var(--ease);
  display:grid;grid-template-columns:1fr 1fr;gap:.15rem;z-index:950;
}
.has-dropdown:hover .dropdown{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.dropdown a{
  display:flex;flex-direction:column;padding:.6rem .75rem;border-radius:10px;transition:.18s;
}
.dropdown a:hover{background:var(--bg-soft)}
.dropdown a b{font-size:.9rem;color:var(--navy);font-weight:700}
.dropdown a span{font-size:.76rem;color:var(--muted)}
.dropdown-head{grid-column:1/-1;padding:.5rem .75rem;font-size:.72rem;letter-spacing:.12em;
  text-transform:uppercase;color:var(--muted-2);font-weight:700}
.nav-toggle{display:none;background:none;border:0;cursor:pointer;padding:8px;color:var(--navy)}
.nav-toggle svg{width:28px;height:28px}

/* mobile drawer */
.mobile-nav{
  position:fixed;inset:0 0 0 auto;width:min(380px,86vw);background:#fff;z-index:1000;
  transform:translateX(100%);transition:transform .35s var(--ease);
  box-shadow:var(--shadow-lg);display:flex;flex-direction:column;padding:1.3rem;overflow-y:auto;
}
.mobile-nav.open{transform:translateX(0)}
.mobile-nav .m-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem}
.mobile-nav .m-head img{height:34px}
.mobile-nav a{padding:.85rem .4rem;font-weight:600;color:#2a3855;border-bottom:1px solid var(--line)}
.mobile-nav a.m-sub{padding-left:1.3rem;font-size:.9rem;color:var(--muted);font-weight:500;border-bottom:1px dashed var(--line)}
.mobile-nav .m-cta{margin-top:1.1rem}
.scrim{position:fixed;inset:0;background:rgba(7,26,61,.5);z-index:999;opacity:0;visibility:hidden;transition:.3s}
.scrim.open{opacity:1;visibility:visible}
.m-close{background:none;border:0;cursor:pointer;color:var(--navy)}
.m-close svg{width:26px;height:26px}

/* ---------- Hero ---------- */
.hero{
  background:radial-gradient(1200px 600px at 80% -10%,rgba(245,166,35,.18),transparent 60%),
             linear-gradient(160deg,var(--navy) 0%,var(--navy-deep) 100%);
  color:#fff;padding:5.5rem 0 5rem;overflow:hidden;position:relative;
}
.hero::before{content:"";position:absolute;inset:0;
  background-image:radial-gradient(rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:26px 26px;opacity:.5;mask-image:linear-gradient(180deg,#000,transparent)}
.hero .container{position:relative;z-index:2;display:grid;grid-template-columns:1.05fr .95fr;
  gap:3rem;align-items:center}
.hero h1{color:#fff;font-size:clamp(2.2rem,4.4vw,3.5rem);line-height:1.05}
.hero h1 .hl{color:var(--orange)}
.hero p.lead{color:#c2ccde;font-size:1.18rem;max-width:38ch;margin:1.3rem 0 2rem}
.hero-actions{display:flex;gap:.9rem;flex-wrap:wrap}
.hero-stats{display:flex;gap:2.2rem;margin-top:2.6rem}
.hero-stats .num{font-size:1.7rem;font-weight:800;color:#fff}
.hero-stats .lbl{font-size:.82rem;color:#9fabc2}
.eyebrow{display:inline-flex;align-items:center;gap:.5rem;font-size:.78rem;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;color:var(--orange);
  background:rgba(245,166,35,.12);border:1px solid rgba(245,166,35,.3);
  padding:.45rem .9rem;border-radius:999px;margin-bottom:1.3rem}
.eyebrow.dark{color:#b06f00;background:rgba(245,166,35,.14);border-color:rgba(245,166,35,.35)}

/* placeholders */
.ph{
  position:relative;border-radius:var(--radius-lg);overflow:hidden;
  background:
    linear-gradient(135deg,rgba(245,166,35,.14),rgba(255,255,255,.05)),
    repeating-linear-gradient(45deg,rgba(255,255,255,.04) 0 14px,rgba(255,255,255,.07) 14px 28px);
  border:1.5px dashed rgba(255,255,255,.32);
  display:flex;align-items:center;justify-content:center;text-align:center;
  color:#cdd6e6;font-weight:700;letter-spacing:.04em;min-height:340px;padding:2rem;
}
.ph.light{background:
    linear-gradient(135deg,rgba(7,26,61,.05),rgba(245,166,35,.07)),
    repeating-linear-gradient(45deg,rgba(7,26,61,.022) 0 14px,rgba(7,26,61,.045) 14px 28px);
  border:1.5px dashed #c3ccdd;color:#7d879b}
.ph .ph-inner{display:flex;flex-direction:column;align-items:center;gap:.7rem}
.ph .ph-ico{width:54px;height:54px;border-radius:14px;background:var(--orange);
  color:var(--navy);display:flex;align-items:center;justify-content:center}
.ph .ph-ico svg{width:28px;height:28px}
.ph .ph-tag{font-size:.74rem;letter-spacing:.16em;text-transform:uppercase;opacity:.8}

/* ---------- Real images ---------- */
.shot{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);background:var(--navy-2);line-height:0;position:relative}
.shot img{width:100%;height:auto;display:block}
.shot.tall img{height:100%;object-fit:cover}
.shot-banner{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);line-height:0}
.shot-banner img{width:100%;height:auto;display:block}
.imgcard{padding:0;overflow:hidden;display:flex;flex-direction:column}
.imgcard-top{height:190px;overflow:hidden;flex:0 0 auto}
.imgcard-top img{width:100%;height:100%;object-fit:cover;display:block;transition:.5s var(--ease)}
.imgcard:hover .imgcard-top img{transform:scale(1.07)}
.imgcard-body{padding:1.6rem;display:flex;flex-direction:column;flex:1 1 auto}
.imgcard-body .ico{margin-top:-3.4rem;position:relative;z-index:2;background:var(--orange);color:var(--navy);box-shadow:0 8px 20px rgba(7,26,61,.2);border:0}
.m-photo{height:250px;overflow:hidden}
.m-photo img{width:100%;height:100%;object-fit:cover;display:block;transition:.5s var(--ease)}
.mentor:hover .m-photo img{transform:scale(1.05)}
.photo-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.photo-grid .shot img{height:210px;object-fit:cover}

/* ---------- Generic section ---------- */
.section{padding:5.5rem 0}
.section.tight{padding:4rem 0}
.section.soft{background:var(--bg-soft)}
.section.navy{background:linear-gradient(160deg,var(--navy),var(--navy-deep));color:#fff}
.section.navy h2,.section.navy h3{color:#fff}
.sec-head{max-width:680px;margin:0 auto 3rem;text-align:center}
.sec-head.left{margin-left:0;text-align:left}
.sec-head h2{font-size:clamp(1.7rem,3vw,2.5rem)}
.sec-head p{color:var(--muted);font-size:1.1rem;margin-top:1rem}
.section.navy .sec-head p{color:#b6c1d6}

/* ---------- Cards / grids ---------- */
.grid{display:grid;gap:1.4rem}
.g-2{grid-template-columns:repeat(2,1fr)}
.g-3{grid-template-columns:repeat(3,1fr)}
.g-4{grid-template-columns:repeat(4,1fr)}
.card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:1.8rem;transition:.3s var(--ease);box-shadow:var(--shadow-sm);height:100%;
}
.card:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:#d7deeb}
.card .ico{
  width:52px;height:52px;border-radius:14px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(140deg,rgba(245,166,35,.18),rgba(245,166,35,.05));
  color:#c47f00;margin-bottom:1.1rem;border:1px solid rgba(245,166,35,.25);
}
.card .ico svg{width:26px;height:26px}
.card h3{font-size:1.18rem;margin-bottom:.5rem}
.card p{color:var(--muted);font-size:.96rem;margin:0}
.card.navy{background:var(--navy-2);border-color:rgba(255,255,255,.08);color:#c8d1e2}
.card.navy h3{color:#fff}
.card-link{display:inline-flex;align-items:center;gap:.35rem;color:#c47f00;font-weight:700;
  font-size:.9rem;margin-top:1rem}
.card-link svg{width:16px;height:16px;transition:.2s}
.card:hover .card-link svg{transform:translateX(4px)}

/* category card with image header */
.cat-card{padding:0;overflow:hidden;display:flex;flex-direction:column}
.cat-card .ph{border-radius:0;border:0;border-bottom:1px solid var(--line);min-height:180px}
.cat-card .cc-body{padding:1.5rem}
.cat-card .cc-body h3{font-size:1.12rem}

/* steps */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;counter-reset:step}
.step{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.7rem;
  position:relative;box-shadow:var(--shadow-sm);transition:.3s}
.step:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.step .n{font-size:.8rem;font-weight:800;color:var(--orange);letter-spacing:.1em}
.step h3{font-size:1.1rem;margin:.5rem 0 .4rem}
.step p{color:var(--muted);font-size:.92rem;margin:0}
.step .num-badge{position:absolute;top:1.4rem;right:1.4rem;width:38px;height:38px;border-radius:50%;
  background:var(--navy);color:#fff;display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:.95rem}

/* logos strip */
.logos{display:flex;flex-wrap:wrap;gap:.8rem;justify-content:center}
.logo-chip{background:#fff;border:1px solid var(--line);border-radius:999px;padding:.7rem 1.4rem;
  font-weight:700;color:#46536f;font-size:.92rem;box-shadow:var(--shadow-sm);display:flex;
  align-items:center;gap:.5rem}
.logo-chip .dot{width:8px;height:8px;border-radius:50%;background:var(--orange)}
.section.navy .logo-chip{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.12);color:#d7dfee}

/* feature list */
.feat{display:flex;gap:1rem;align-items:flex-start}
.feat .tick{flex:0 0 auto;width:30px;height:30px;border-radius:9px;background:rgba(245,166,35,.16);
  color:#c47f00;display:flex;align-items:center;justify-content:center;margin-top:2px}
.feat .tick svg{width:18px;height:18px}
.feat h4{font-size:1.02rem;margin-bottom:.2rem;color:var(--navy)}
.feat p{font-size:.92rem;color:var(--muted);margin:0}
.section.navy .feat h4{color:#fff}.section.navy .feat p{color:#b6c1d6}
.section.navy .feat .tick{background:rgba(245,166,35,.2);color:var(--orange)}

/* split */
.split{display:grid;grid-template-columns:1fr 1fr;gap:3.4rem;align-items:center}
.split.reverse .split-media{order:2}

/* pills */
.pill-row{display:flex;flex-wrap:wrap;gap:.6rem}
.pill{background:var(--bg-soft);border:1px solid var(--line);border-radius:999px;padding:.5rem 1rem;
  font-size:.85rem;font-weight:600;color:#3c4a66}
.section.navy .pill{background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.12);color:#cdd6e6}

/* stat band */
.stat-band{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;text-align:center}
.stat-band .num{font-size:2.4rem;font-weight:800;color:var(--navy)}
.stat-band .num .u{color:var(--orange)}
.stat-band .lbl{color:var(--muted);font-size:.92rem;font-weight:600}
.section.navy .stat-band .num{color:#fff}.section.navy .stat-band .lbl{color:#aab6cd}

/* mentor card */
.mentor{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow-sm);transition:.3s}
.mentor:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.mentor .ph{min-height:230px;border-radius:0;border:0;border-bottom:1px solid var(--line)}
.mentor .m-body{padding:1.3rem}
.mentor .m-body h3{font-size:1.08rem}
.mentor .role{color:#c47f00;font-weight:700;font-size:.86rem;margin:.25rem 0 .1rem}
.mentor .company{color:var(--muted);font-size:.86rem}
.mentor .m-meta{display:flex;gap:.5rem;flex-wrap:wrap;margin-top:.9rem}
.mentor .tagk{font-size:.72rem;font-weight:700;background:var(--bg-soft);border:1px solid var(--line);
  padding:.3rem .6rem;border-radius:999px;color:#46536f}

/* testimonial */
.quote{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:2rem;
  box-shadow:var(--shadow-sm);position:relative}
.quote .stars{color:var(--orange);font-size:1rem;letter-spacing:2px;margin-bottom:.8rem}
.quote p{font-size:1.02rem;color:#2c3a57;font-style:italic}
.quote .who{display:flex;align-items:center;gap:.8rem;margin-top:1.1rem}
.quote .ava{width:46px;height:46px;border-radius:50%;background:linear-gradient(140deg,var(--navy),var(--navy-3));
  color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800}
.quote .who b{display:block;color:var(--navy);font-size:.95rem}
.quote .who span{color:var(--muted);font-size:.82rem}

/* accordion / FAQ */
.acc{border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;background:#fff}
.acc-item+ .acc-item{border-top:1px solid var(--line)}
.acc-q{width:100%;text-align:left;background:none;border:0;cursor:pointer;font-family:inherit;
  padding:1.25rem 1.5rem;font-weight:700;color:var(--navy);font-size:1.02rem;display:flex;
  justify-content:space-between;align-items:center;gap:1rem}
.acc-q .pm{flex:0 0 auto;width:26px;height:26px;border-radius:8px;background:var(--bg-soft);
  display:flex;align-items:center;justify-content:center;color:var(--orange);font-size:1.3rem;
  transition:.25s}
.acc-item.open .pm{background:var(--orange);color:#fff;transform:rotate(45deg)}
.acc-a{max-height:0;overflow:hidden;transition:max-height .3s var(--ease);color:var(--muted)}
.acc-a .pad{padding:0 1.5rem 1.3rem;font-size:.96rem}

/* CTA band */
.cta-band{background:linear-gradient(135deg,var(--navy),var(--navy-3));border-radius:var(--radius-lg);
  padding:3.5rem;color:#fff;text-align:center;position:relative;overflow:hidden}
.cta-band::after{content:"";position:absolute;width:340px;height:340px;border-radius:50%;
  background:radial-gradient(circle,rgba(245,166,35,.4),transparent 70%);top:-120px;right:-80px}
.cta-band h2{color:#fff;font-size:clamp(1.6rem,3vw,2.3rem);position:relative}
.cta-band p{color:#c2ccde;max-width:50ch;margin:1rem auto 1.8rem;position:relative}
.cta-actions{display:flex;gap:.9rem;justify-content:center;flex-wrap:wrap;position:relative}

/* breadcrumb */
.crumb{font-size:.84rem;color:var(--muted-2);padding:1.1rem 0;display:flex;gap:.5rem;flex-wrap:wrap}
.crumb a:hover{color:var(--orange)}
.crumb .sep{opacity:.5}

/* page hero (inner) */
.page-hero{background:radial-gradient(900px 400px at 85% -20%,rgba(245,166,35,.16),transparent 60%),
  linear-gradient(160deg,var(--navy),var(--navy-deep));color:#fff;padding:3.4rem 0 4rem}
.page-hero h1{color:#fff;font-size:clamp(2rem,4vw,3rem);max-width:18ch}
.page-hero p{color:#c2ccde;font-size:1.15rem;max-width:60ch;margin-top:1.1rem}
.page-hero .eyebrow{margin-bottom:1rem}

/* forms */
.form-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:2.4rem;box-shadow:var(--shadow)}
.field{margin-bottom:1.1rem}
.field label{display:block;font-weight:700;font-size:.85rem;color:var(--navy);margin-bottom:.4rem}
.field input,.field select,.field textarea{
  width:100%;padding:.85rem 1rem;border:1.5px solid var(--line);border-radius:12px;
  font-family:inherit;font-size:.96rem;color:var(--ink);background:#fff;transition:.2s}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:0;border-color:var(--orange);box-shadow:0 0 0 4px rgba(245,166,35,.14)}
.field textarea{min-height:120px;resize:vertical}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:1.1rem}
.form-note{font-size:.8rem;color:var(--muted-2);margin-top:.4rem}

/* footer */
.site-footer{background:linear-gradient(180deg,var(--navy-deep),#02080f);color:#aeb9cd;padding:4rem 0 1.6rem}
.foot-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:2.4rem}
.site-footer img.f-logo{height:46px;margin-bottom:1.1rem}
.site-footer p.f-about{font-size:.92rem;color:#94a1ba;max-width:34ch}
.foot-col h4{color:#fff;font-size:.82rem;letter-spacing:.12em;text-transform:uppercase;margin-bottom:1.1rem}
.foot-col a{display:block;padding:.32rem 0;font-size:.92rem;color:#a7b3c9;transition:.2s}
.foot-col a:hover{color:var(--orange);transform:translateX(3px)}
.foot-contact li{display:flex;gap:.6rem;align-items:flex-start;margin-bottom:.7rem;font-size:.9rem;list-style:none}
.foot-contact{padding:0;margin:0}
.foot-contact svg{width:18px;height:18px;color:var(--orange);flex:0 0 auto;margin-top:2px}
.f-social{display:flex;gap:.6rem;margin-top:1.2rem}
.f-social a{width:38px;height:38px;border-radius:10px;background:rgba(255,255,255,.06);
  display:flex;align-items:center;justify-content:center;transition:.2s}
.f-social a:hover{background:var(--orange);color:var(--navy);transform:translateY(-3px)}
.f-social svg{width:18px;height:18px}
.foot-bottom{border-top:1px solid rgba(255,255,255,.08);margin-top:3rem;padding-top:1.4rem;
  display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;font-size:.84rem;color:#7c89a3}
.foot-bottom a:hover{color:var(--orange)}

/* ---------- Modal (Dashboard) ---------- */
.modal-scrim{position:fixed;inset:0;background:rgba(4,9,22,.66);backdrop-filter:blur(6px);
  z-index:1100;display:flex;align-items:center;justify-content:center;padding:24px;
  opacity:0;visibility:hidden;transition:.3s}
.modal-scrim.open{opacity:1;visibility:visible}
.modal{background:#fff;border-radius:26px;max-width:560px;width:100%;overflow:hidden;
  box-shadow:var(--shadow-lg);transform:translateY(24px) scale(.97);transition:.35s var(--ease)}
.modal-scrim.open .modal{transform:none}
.modal-top{background:linear-gradient(140deg,var(--navy),var(--navy-deep));padding:2.2rem 2.2rem 1.8rem;
  color:#fff;position:relative;overflow:hidden}
.modal-top::after{content:"";position:absolute;width:240px;height:240px;border-radius:50%;
  background:radial-gradient(circle,rgba(245,166,35,.45),transparent 70%);top:-100px;right:-70px}
.modal-badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(245,166,35,.16);
  border:1px solid rgba(245,166,35,.4);color:var(--orange);font-weight:700;font-size:.72rem;
  letter-spacing:.12em;text-transform:uppercase;padding:.4rem .85rem;border-radius:999px;
  position:relative;z-index:2;margin-bottom:1rem}
.modal-top h3{color:#fff;font-size:1.5rem;position:relative;z-index:2}
.modal-body{padding:2rem 2.2rem 2.2rem}
.modal-body p{color:var(--muted);font-size:1rem}
.modal-feats{display:grid;grid-template-columns:1fr 1fr;gap:.7rem;margin:1.3rem 0 1.7rem}
.modal-feats div{display:flex;gap:.5rem;align-items:center;font-size:.88rem;font-weight:600;color:#3c4a66}
.modal-feats svg{width:16px;height:16px;color:var(--orange);flex:0 0 auto}
.modal-actions{display:flex;gap:.8rem;flex-wrap:wrap}
.modal-close{position:absolute;top:1.1rem;right:1.1rem;z-index:3;width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,.14);border:0;cursor:pointer;color:#fff;display:flex;align-items:center;
  justify-content:center;transition:.2s}
.modal-close:hover{background:rgba(255,255,255,.28);transform:rotate(90deg)}
.modal-close svg{width:20px;height:20px}
.modal .success-state{display:none;text-align:center;padding:1rem 0}
.modal.done .modal-feats,.modal.done .modal-actions,.modal.done>.modal-body>p:first-of-type{display:none}
.modal.done .success-state{display:block}

/* ---------- Lead popups ---------- */
.popup{position:fixed;z-index:1050;background:#fff;border-radius:22px;box-shadow:var(--shadow-lg);
  overflow:hidden;transition:.4s var(--ease)}
.popup-corner{bottom:24px;right:24px;width:380px;max-width:calc(100vw - 32px);
  transform:translateY(30px);opacity:0;visibility:hidden}
.popup-corner.open{transform:none;opacity:1;visibility:visible}
.popup-bar{height:6px;background:linear-gradient(90deg,var(--orange),#ffce7a)}
.popup-inner{padding:1.5rem 1.6rem 1.7rem;position:relative}
.popup .p-close{position:absolute;top:.7rem;right:.7rem;width:30px;height:30px;border-radius:50%;
  background:var(--bg-soft);border:0;cursor:pointer;color:var(--muted);display:flex;align-items:center;
  justify-content:center;transition:.2s}
.popup .p-close:hover{background:#e3e8f2;color:var(--navy)}
.popup .p-close svg{width:18px;height:18px}
.popup .p-ico{width:46px;height:46px;border-radius:13px;background:rgba(245,166,35,.16);color:#c47f00;
  display:flex;align-items:center;justify-content:center;margin-bottom:.9rem}
.popup .p-ico svg{width:24px;height:24px}
.popup h4{font-size:1.15rem;margin-bottom:.4rem}
.popup p{font-size:.9rem;color:var(--muted);margin-bottom:1rem}
.p-form{display:flex;gap:.5rem;align-items:stretch}
.p-form input{flex:1 1 auto;min-width:0;height:50px;padding:0 1rem;border:1.5px solid var(--line);
  border-radius:12px;font-family:inherit;font-size:.95rem;color:var(--ink);background:#fff;transition:.2s}
.p-form input::placeholder{color:var(--muted-2)}
.p-form input:focus{outline:0;border-color:var(--orange);box-shadow:0 0 0 4px rgba(245,166,35,.14)}
.p-form .btn{height:50px;padding:0 1.3rem;flex:0 0 auto;border-radius:12px}
@media(max-width:480px){.p-form{flex-direction:column}.p-form .btn{width:100%;justify-content:center}}

/* exit intent center popup */
.popup-center{position:fixed;inset:0;z-index:1080;display:flex;align-items:center;justify-content:center;
  padding:24px;background:rgba(4,9,22,.6);backdrop-filter:blur(5px);opacity:0;visibility:hidden;transition:.3s}
.popup-center.open{opacity:1;visibility:visible}
.popup-center .pc-card{background:#fff;border-radius:24px;max-width:480px;width:100%;overflow:hidden;
  box-shadow:var(--shadow-lg);transform:scale(.96);transition:.35s var(--ease);text-align:center}
.popup-center.open .pc-card{transform:none}
.pc-top{background:linear-gradient(140deg,var(--navy),var(--navy-deep));padding:2rem;color:#fff;position:relative}
.pc-top h3{color:#fff;font-size:1.5rem}
.pc-top .pc-ey{color:var(--orange);font-weight:700;font-size:.76rem;letter-spacing:.14em;
  text-transform:uppercase;margin-bottom:.6rem}
.pc-body{padding:1.8rem 2rem 2rem}
.pc-body p{color:var(--muted)}
.pc-body .p-form{margin-top:1rem}

/* toast */
.toast{position:fixed;bottom:24px;left:50%;transform:translateX(-50%) translateY(80px);z-index:1200;
  background:var(--navy);color:#fff;padding:.95rem 1.4rem;border-radius:14px;box-shadow:var(--shadow-lg);
  display:flex;align-items:center;gap:.7rem;font-weight:600;font-size:.95rem;opacity:0;transition:.4s var(--ease)}
.toast.show{transform:translateX(-50%);opacity:1}
.toast svg{width:20px;height:20px;color:var(--orange)}

/* reveal animation */
.reveal{opacity:0;transform:translateY(26px);transition:.7s var(--ease)}
.reveal.in{opacity:1;transform:none}

/* utility */
.text-center{text-align:center}
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.6rem}.mt-4{margin-top:2.4rem}
.mb-0{margin-bottom:0}
.lead-muted{color:var(--muted);font-size:1.08rem}
.divider{height:1px;background:var(--line);margin:2.5rem 0}
.badge-soft{display:inline-block;background:rgba(245,166,35,.14);color:#b06f00;font-weight:700;
  font-size:.78rem;padding:.35rem .8rem;border-radius:999px;border:1px solid rgba(245,166,35,.3)}

/* ---------- Responsive ---------- */
@media(max-width:1279px){
  .nav-menu{display:none}
  .nav-toggle{display:flex}
}
@media(max-width:1080px){
  .hero .container{grid-template-columns:1fr;gap:2.4rem}
  .split{grid-template-columns:1fr;gap:2rem}
  .split.reverse .split-media{order:0}
  .g-4{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
  .stat-band{grid-template-columns:repeat(2,1fr)}
  .foot-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .container{padding:0 18px}
  .section{padding:3.6rem 0}
  .g-2,.g-3,.g-4,.steps{grid-template-columns:1fr}
  .field-row{grid-template-columns:1fr}
  .hero-stats{gap:1.4rem;flex-wrap:wrap}
  .cta-band{padding:2.2rem 1.4rem}
  .stat-band{grid-template-columns:1fr 1fr}
  .foot-grid{grid-template-columns:1fr}
  .modal-feats{grid-template-columns:1fr}
  .cta-actions{flex-direction:column}
  .cta-actions .btn{width:100%;justify-content:center}
  .hero-actions .btn{width:100%;justify-content:center}
}
