
:root{
  --navy:#0a2c52; --navy2:#123a68; --gold:#0070c8; --gold-d:#005ba3;
  --sky:#7fb9ee;
  --paper:#eef3fa; --card:#ffffff; --ink:#0e2138; --muted:#516079;
  --line:#dce5f1;
  --green:#2f8f5b; --amber:#d39a25; --red:#c0392b;
  --shadow:0 18px 44px rgba(10,44,82,.13);
  --r:16px; --maxw:1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0; font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  color:var(--ink); background:var(--paper); line-height:1.6; -webkit-font-smoothing:antialiased}
a{color:inherit}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 24px}
.eyebrow{color:var(--gold-d); font-weight:800; letter-spacing:.18em; font-size:12px; text-transform:uppercase}
.btn{display:inline-flex; align-items:center; gap:9px; cursor:pointer; text-decoration:none; font-weight:800;
  font-size:15px; padding:13px 24px; border-radius:999px; border:none; font-family:inherit; transition:transform .12s, box-shadow .2s}
.btn-gold{background:var(--gold); color:#fff}
.btn-gold:hover{transform:translateY(-1px); box-shadow:0 10px 24px rgba(0,112,200,.42)}
.btn-ghost{background:transparent; color:var(--navy); border:1.5px solid #cdd5e1}
.btn-ghost:hover{border-color:var(--navy)}
.btn-light{background:#fff; color:var(--navy)}
.btn-light:hover{transform:translateY(-1px); box-shadow:0 10px 24px rgba(0,0,0,.18)}
.btn:focus-visible{outline:3px solid var(--gold); outline-offset:3px}

/* ---------- NAV ---------- */
header{position:sticky; top:0; z-index:50; background:rgba(238,243,250,.92); backdrop-filter:blur(10px); border-bottom:1px solid var(--line)}
.nav{display:flex; align-items:center; justify-content:space-between; height:70px}
.brand{display:flex; align-items:center; gap:9px; font-weight:900; font-size:22px; letter-spacing:.02em; color:var(--navy); text-decoration:none}
.brand .dot{width:9px; height:9px; border-radius:50%; background:var(--gold); display:inline-block; margin-bottom:-1px}
.brand .logo-img{height:46px; width:auto; display:block}
.foot .brand .logo-img{height:40px}
.nav-links{display:flex; align-items:center; gap:30px}
.nav-links a{text-decoration:none; color:var(--muted); font-weight:600; font-size:15px}
.nav-links a:hover{color:var(--navy)}
.nav-cta{display:flex; align-items:center; gap:14px}
.burger{display:none; background:none; border:none; cursor:pointer; padding:8px; flex-direction:column; gap:5px}
.burger span{width:24px; height:2px; background:var(--navy); border-radius:2px}

/* ---------- HERO ---------- */
.hero{padding:72px 0 80px}
.hero-grid{display:grid; grid-template-columns:1.05fr .95fr; gap:54px; align-items:center}
.hero h1{font-size:clamp(32px,4.6vw,52px); line-height:1.08; margin:16px 0 18px; font-weight:900; letter-spacing:-.02em; color:var(--navy)}
.hero h1 .hl{color:var(--gold-d)}
.hero p.lead{font-size:clamp(16px,1.7vw,19px); color:var(--muted); margin:0 0 30px; max-width:540px}
.hero-cta{display:flex; gap:14px; flex-wrap:wrap; align-items:center}
.hero-note{margin-top:18px; font-size:13.5px; color:var(--muted)}
.hero-note b{color:var(--navy)}

/* signature: rotating question card */
.qcard{background:var(--card); border:1px solid var(--line); border-radius:var(--r); box-shadow:var(--shadow); padding:26px; position:relative; overflow:hidden}
.qcard::before{content:""; position:absolute; top:0; left:0; right:0; height:5px; background:linear-gradient(90deg,var(--green) 0 33%,var(--amber) 33% 66%,var(--red) 66% 100%)}
.qcard .qlabel{color:var(--gold-d); font-weight:800; letter-spacing:.14em; font-size:11px; text-transform:uppercase; margin:6px 0 10px}
.qcard .qq{font-size:20px; font-weight:800; color:var(--navy); line-height:1.3; min-height:78px}
.ans{display:flex; gap:11px; align-items:flex-start; padding:12px 14px; border-radius:11px; margin-top:12px; font-size:14px; line-height:1.45}
.ans .tag{flex:0 0 auto; font-weight:800; font-size:10.5px; letter-spacing:.04em; padding:3px 8px; border-radius:6px; margin-top:1px}
.ans.good{background:#eaf5ee} .ans.good .tag{background:var(--green); color:#fff} .ans.good .tx{color:#235c3f}
.ans.flag{background:#fbecea} .ans.flag .tag{background:var(--red); color:#fff} .ans.flag .tx{color:#7a2a22}
.qfade{transition:opacity .4s ease}
.qdots{display:flex; gap:7px; margin-top:18px; justify-content:center}
.qdots i{width:7px; height:7px; border-radius:50%; background:#d3dae5; cursor:pointer; transition:background .2s}
.qdots i.on{background:var(--gold)}

/* ---------- SECTION SHELL ---------- */
section{padding:80px 0}
.section-head{max-width:680px; margin-bottom:44px}
.section-head.center{margin:0 auto 48px; text-align:center}
.section-head h2{font-size:clamp(26px,3.3vw,38px); line-height:1.15; margin:14px 0 12px; font-weight:900; letter-spacing:-.01em; color:var(--navy)}
.section-head p{font-size:17px; color:var(--muted); margin:0}

/* ---------- PROBLEM ---------- */
.problem{background:#fff; border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.qlist{display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin:6px 0 26px}
.qitem{display:flex; gap:13px; align-items:flex-start; background:var(--paper); border:1px solid var(--line); border-radius:12px; padding:16px 18px}
.qitem .qm{flex:0 0 auto; width:26px; height:26px; border-radius:50%; background:#eef1f7; color:var(--gold-d); font-weight:900; display:grid; place-items:center; font-size:15px}
.qitem span{font-weight:600; color:#2b3650; font-size:15px}
.punch{font-size:clamp(18px,2.2vw,23px); font-weight:800; color:var(--navy); border-left:4px solid var(--gold); padding-left:18px; max-width:680px}
.punch b{color:var(--gold-d)}

/* ---------- HOW (method) ---------- */
.steps{display:grid; grid-template-columns:repeat(3,1fr); gap:22px}
.step{background:var(--card); border:1px solid var(--line); border-radius:var(--r); padding:28px 24px}
.step .sn{font-size:13px; font-weight:900; color:var(--gold-d); letter-spacing:.1em}
.step h3{font-size:20px; margin:10px 0 8px; color:var(--navy)}
.step p{margin:0; color:var(--muted); font-size:15px}
.lights{display:flex; gap:8px; margin-top:16px}
.lights b{display:flex; align-items:center; gap:6px; font-size:12px; font-weight:700; color:var(--muted)}
.lights i{width:11px; height:11px; border-radius:50%}
.lg{background:var(--green)} .la{background:var(--amber)} .lr{background:var(--red)}

/* ---------- AREAS ---------- */
.areas-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.area-card{background:var(--card); border:1px solid var(--line); border-radius:var(--r); padding:24px; transition:transform .14s, box-shadow .2s}
.area-card:hover{transform:translateY(-3px); box-shadow:var(--shadow)}
.area-card .an{width:40px; height:40px; border-radius:11px; background:var(--navy); color:#fff; font-weight:900; display:grid; place-items:center; font-size:17px; margin-bottom:14px}
.area-card h3{margin:0 0 6px; font-size:17.5px; color:var(--navy)}
.area-card p{margin:0; color:var(--muted); font-size:14.5px}

/* ---------- PRECHECK BAND ---------- */
.band{background:var(--navy); color:#fff; border-radius:24px; padding:54px 48px; text-align:center; position:relative; overflow:hidden}
.band::after{content:""; position:absolute; inset:0 0 auto 0; height:5px; background:linear-gradient(90deg,var(--green),var(--amber),var(--red))}
.band .eyebrow{color:var(--sky)}
.band h2{font-size:clamp(26px,3.4vw,40px); margin:14px 0 12px; font-weight:900; color:#fff; line-height:1.12}
.band p{color:#c5cedd; font-size:18px; max-width:560px; margin:0 auto 28px}
.band .meta{display:flex; gap:24px; justify-content:center; flex-wrap:wrap; color:#9fb0c6; font-size:14px; margin-bottom:28px}
.band .meta b{color:#fff}
.band small{display:block; margin-top:16px; color:#8595ad; font-size:13px}

/* ---------- HANDBOOK ---------- */
.book-grid{display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center}
.book-list{list-style:none; padding:0; margin:18px 0 0}
.book-list li{display:flex; gap:12px; align-items:flex-start; padding:11px 0; border-bottom:1px solid var(--line); font-size:15.5px; color:#2b3650}
.book-list li::before{content:"✓"; color:var(--green); font-weight:900; flex:0 0 auto}
.book-visual{background:var(--navy); border-radius:var(--r); padding:38px 34px; color:#fff; box-shadow:var(--shadow)}
.book-visual .bk-kick{color:var(--sky); letter-spacing:.26em; font-size:11px; font-weight:800}
.book-visual .bk-title{font-size:34px; font-weight:900; margin:10px 0 4px}
.book-visual .bk-sub{color:#aab8cd; font-size:14px; margin-bottom:22px}
.book-visual .bk-mod{display:flex; justify-content:space-between; padding:10px 0; border-top:1px solid rgba(255,255,255,.12); font-size:14px; color:#dde4ef}
.book-visual .bk-mod span:last-child{color:#8595ad}

/* ---------- AUDIENCE ---------- */
.aud-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px}
.aud{background:var(--card); border:1px solid var(--line); border-radius:14px; padding:22px 20px; text-align:center}
.aud .ai{font-size:22px; margin-bottom:6px}
.aud h4{margin:0; font-size:15.5px; color:var(--navy)}
.aud-note{text-align:center; margin-top:26px; font-size:16px; color:var(--muted)}
.aud-note b{color:var(--navy)}

/* ---------- FAQ ---------- */
.faq{max-width:760px; margin:0 auto}
.fitem{border:1px solid var(--line); border-radius:12px; background:var(--card); margin-bottom:12px; overflow:hidden}
.fq{display:flex; justify-content:space-between; align-items:center; gap:16px; width:100%; text-align:left; cursor:pointer;
  background:none; border:none; padding:19px 22px; font-size:16.5px; font-weight:700; color:var(--navy); font-family:inherit}
.fq .ico{flex:0 0 auto; font-size:20px; color:var(--gold-d); transition:transform .2s}
.fitem.open .fq .ico{transform:rotate(45deg)}
.fa{max-height:0; overflow:hidden; transition:max-height .3s ease}
.fa p{margin:0; padding:0 22px 20px; color:var(--muted); font-size:15.5px}

/* ---------- FINAL CTA ---------- */
.final{text-align:center; padding:90px 0}
.final h2{font-size:clamp(28px,3.8vw,44px); font-weight:900; color:var(--navy); margin:0 0 10px; letter-spacing:-.01em}
.final p{color:var(--muted); font-size:18px; margin:0 0 28px}

/* ---------- FOOTER ---------- */
footer{background:var(--navy); color:#aeb9cb; padding:46px 0 40px}
.foot{display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap}
.foot .brand{color:#fff}
.foot a{color:#aeb9cb; text-decoration:none; font-size:14px; margin-left:22px}
.foot a:hover{color:#fff}
.foot .copy{font-size:13px; color:#7e8aa0; margin-top:18px; width:100%; border-top:1px solid rgba(255,255,255,.1); padding-top:18px}

/* ---------- PRICING / TRAINING ---------- */
.pricing{max-width:940px; margin:0 auto}
.price-card{display:grid; grid-template-columns:1.45fr 1fr; background:var(--card); border:1px solid var(--line);
  border-radius:22px; overflow:hidden; box-shadow:var(--shadow)}
.pc-left{padding:36px 36px}
.pc-left h3{margin:0 0 4px; font-size:23px; color:var(--navy)}
.pc-sub{margin:0 0 20px; color:var(--gold-d); font-weight:800; font-size:14px}
.pc-list{list-style:none; padding:0; margin:0}
.pc-list li{display:flex; gap:11px; align-items:flex-start; padding:9px 0; font-size:15px; color:#2b3650; border-bottom:1px solid #f0f2f6}
.pc-list li:last-child{border-bottom:none}
.pc-list li::before{content:"✓"; color:var(--green); font-weight:900; flex:0 0 auto}
.pc-right{background:var(--navy); color:#fff; padding:36px 30px; display:flex; flex-direction:column; justify-content:center; text-align:center}
.pc-price{font-size:48px; font-weight:900; letter-spacing:-.02em; line-height:1}
.pc-price span{font-size:23px; color:var(--sky); font-weight:800}
.pc-meta{color:#9fb0c6; font-size:14px; margin:9px 0 24px}
.pc-cta{justify-content:center; width:100%}
.pc-note{margin-top:16px; font-size:13px; color:#9fb0c6}
.pc-note a{color:#fff}

/* ---------- RESPONSIVE ---------- */
@media (max-width:920px){
  .hero-grid{grid-template-columns:1fr; gap:38px}
  .steps{grid-template-columns:1fr}
  .areas-grid{grid-template-columns:1fr 1fr}
  .book-grid{grid-template-columns:1fr; gap:32px}
  .aud-grid{grid-template-columns:1fr 1fr}
  .price-card{grid-template-columns:1fr}
}
@media (max-width:680px){
  .nav-links{display:none}
  .nav-links.open{display:flex; position:absolute; top:70px; left:0; right:0; flex-direction:column; gap:0;
    background:#fff; border-bottom:1px solid var(--line); padding:8px 0}
  .nav-links.open a{padding:14px 24px; border-top:1px solid var(--line)}
  .burger{display:flex}
  .nav-cta .btn{display:none}
  section{padding:60px 0}
  .qlist{grid-template-columns:1fr}
  .areas-grid{grid-template-columns:1fr}
  .aud-grid{grid-template-columns:1fr 1fr}
  .band{padding:40px 24px}
  .foot{flex-direction:column; align-items:flex-start}
  .foot a{margin:0 22px 0 0}
}
@media (prefers-reduced-motion:reduce){*{transition:none !important; animation:none !important; scroll-behavior:auto}}


/* ============ MULTI-PAGE COMPONENTS ============ */
/* page hero */
.phero{padding:56px 0 40px; border-bottom:1px solid var(--line); background:linear-gradient(180deg,#fff,var(--paper))}
.phero .eyebrow{margin-bottom:12px}
.phero h1{font-size:clamp(30px,4vw,44px); font-weight:900; color:var(--navy); margin:0 0 12px; letter-spacing:-.01em; line-height:1.1}
.phero p{font-size:18px; color:var(--muted); max-width:660px; margin:0}
.narrow{max-width:780px}

/* rich footer */
.foot-grid{display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:34px; padding-bottom:30px}
.foot-brand p{color:#9fb0c6; font-size:14px; max-width:260px; margin:14px 0 0}
.foot-col h4{color:#fff; font-size:14px; margin:0 0 14px; letter-spacing:.02em}
.foot-col a{display:block; color:#aeb9cb; text-decoration:none; font-size:14px; margin-bottom:10px}
.foot-col a:hover{color:#fff}

/* forms */
.form-card{background:var(--card); border:1px solid var(--line); border-radius:var(--r); padding:30px; box-shadow:var(--shadow)}
.field{margin-bottom:16px}
.field label{display:block; font-size:13px; font-weight:700; color:#37445c; margin-bottom:6px}
.field input,.field select,.field textarea{width:100%; padding:13px 15px; border:1.5px solid var(--line); border-radius:10px;
  font-size:15px; font-family:inherit; color:var(--ink); background:#fff}
.field input:focus,.field select:focus,.field textarea:focus{outline:none; border-color:var(--gold)}
.field textarea{min-height:120px; resize:vertical}
.field input.err,.field select.err,.field textarea.err{border-color:var(--red); background:#fdf3f2}
.row2{display:grid; grid-template-columns:1fr 1fr; gap:16px}
.checkrow{display:flex; gap:10px; align-items:flex-start; margin:10px 0; font-size:13.5px; color:var(--muted)}
.checkrow input{margin-top:3px; flex:0 0 auto}
.checkrow a{color:var(--gold-d)}
.err-msg{color:var(--red); font-size:12.5px; margin-top:5px; display:none}
.err-msg.show{display:block}
.summary{background:var(--paper); border:1px solid var(--line); border-radius:12px; padding:18px 20px; margin-bottom:18px}
.summary .row{display:flex; justify-content:space-between; align-items:center; padding:5px 0; font-size:15px; color:#2b3650}
.summary .total{border-top:1px solid var(--line); margin-top:6px; padding-top:10px; font-weight:900; font-size:18px; color:var(--navy)}
.form-note{font-size:13px; color:var(--muted); margin-top:14px; text-align:center}

/* sessions / calendar */
.sessions{display:flex; flex-direction:column; gap:16px; max-width:820px}
.session{display:flex; align-items:center; gap:24px; background:var(--card); border:1px solid var(--line);
  border-radius:var(--r); padding:22px 26px; box-shadow:0 6px 18px rgba(10,44,82,.06)}
.ses-date{flex:0 0 auto; text-align:center; min-width:88px}
.ses-date .d{font-size:30px; font-weight:900; color:var(--navy); line-height:1}
.ses-date .mo{font-size:13px; font-weight:700; color:var(--gold-d); text-transform:uppercase; letter-spacing:.08em}
.ses-mid{flex:1}
.ses-mid h3{margin:0 0 5px; font-size:18px; color:var(--navy)}
.ses-meta{display:flex; gap:16px; flex-wrap:wrap; color:var(--muted); font-size:14px}
.ses-right{flex:0 0 auto; text-align:right; display:flex; flex-direction:column; align-items:flex-end; gap:8px}
.seat{font-size:12.5px; font-weight:700; color:var(--green)}
.seat.low{color:var(--red)}
.seat.full{color:var(--muted)}

/* articles */
.art-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px}
.art-card{background:var(--card); border:1px solid var(--line); border-radius:var(--r); padding:24px; display:flex; flex-direction:column;
  transition:transform .14s, box-shadow .2s; text-decoration:none; color:inherit}
.art-card:hover{transform:translateY(-3px); box-shadow:var(--shadow)}
.art-cat{font-size:11.5px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-d); margin-bottom:10px}
.art-card h3{margin:0 0 8px; font-size:18px; color:var(--navy); line-height:1.3}
.art-card p{margin:0 0 16px; color:var(--muted); font-size:14.5px; flex:1}
.art-more{font-weight:800; color:var(--gold); font-size:14px}

/* testimonials */
.quote-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:20px}
.quote{background:var(--card); border:1px solid var(--line); border-radius:var(--r); padding:26px; box-shadow:0 6px 18px rgba(10,44,82,.06)}
.quote .stars{color:var(--gold); letter-spacing:2px; margin-bottom:10px}
.quote p{font-size:16px; color:#28344b; margin:0 0 16px; line-height:1.55}
.quote .who{font-weight:800; color:var(--navy); font-size:14.5px}
.quote .who span{display:block; font-weight:600; color:var(--muted); font-size:13px; margin-top:2px}

/* legal prose */
.legal{max-width:800px; font-size:15.5px; color:#36425a}
.legal h2{font-size:20px; color:var(--navy); margin:30px 0 10px}
.legal h3{font-size:16px; color:var(--navy); margin:22px 0 8px}
.legal p{margin:0 0 12px}
.legal ul{margin:0 0 14px; padding-left:20px}
.legal li{margin-bottom:6px}
.disclaimer{background:#fbf3df; border:1px solid #ecd9a6; border-left:4px solid var(--amber); border-radius:10px;
  padding:14px 18px; font-size:14px; color:#6e571c; margin-bottom:26px}
.legal .ph{background:#eef3fa; border-radius:4px; padding:1px 6px; color:var(--gold-d); font-weight:700}

@media (max-width:920px){
  .foot-grid{grid-template-columns:1fr 1fr; gap:26px}
  .art-grid{grid-template-columns:1fr 1fr}
  .quote-grid{grid-template-columns:1fr}
}
@media (max-width:680px){
  .foot-grid{grid-template-columns:1fr}
  .art-grid{grid-template-columns:1fr}
  .row2{grid-template-columns:1fr}
  .session{flex-direction:column; align-items:flex-start; gap:14px}
  .ses-right{align-items:flex-start; text-align:left; width:100%}
}

.nav-li{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border:1px solid var(--line);border-radius:10px;color:#0070c8;margin-right:8px;transition:background .15s,color .15s}
.nav-li:hover{background:#eef3fa;color:#005ba3}
@media(max-width:600px){.nav-li{display:none}}
.roadmap{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:14px}
.rstage{background:var(--card);border:1px solid var(--line);border-radius:16px;padding:22px}
.rstage.now{border-top:3px solid var(--gold)}
.rkick{font-size:12px;font-weight:800;letter-spacing:.08em}
.rstage h3{margin:8px 0 8px;font-size:17px;color:var(--navy)}
.rstage p{color:var(--muted);font-size:14px;margin:0;line-height:1.5}
@media(max-width:820px){.roadmap{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.roadmap{grid-template-columns:1fr}}

:where(.sib-form-message-panel){display:none}
.sib-hide-loader-icon{display:none}
.foot-news{max-width:600px;margin-bottom:30px}
.foot-news .sib-form,.foot-news .sib-form-container,.foot-news #sib-container{background:transparent;border:0;padding:0;max-width:none}
.foot-news-head h4{color:#fff;font-size:18px;margin:0 0 6px;font-weight:800}
.foot-news-head p{color:#9fb0c6;font-size:14px;margin:0 0 14px;max-width:440px}
.foot-news-row{display:flex;gap:10px;flex-wrap:wrap}
.foot-news #EMAIL{flex:1;min-width:230px;padding:13px 15px;border:1px solid rgba(255,255,255,.18);border-radius:11px;background:#0e2f54;color:#fff;font-size:15px;font-family:inherit}
.foot-news #EMAIL::placeholder{color:#7e91ad}
.foot-news #EMAIL:focus{outline:none;border-color:var(--gold)}
.foot-news button{white-space:nowrap}
.foot-news .foot-news-ok{color:#a9e6c2;font-size:14px;padding:6px 0}
.foot-news .foot-news-err{color:#f3b4ab;font-size:14px;padding:6px 0}
.foot-news .foot-news-fielderr{color:#f3b4ab;font-size:12.5px;display:block;margin-top:6px}

#cookie-banner{position:fixed;left:0;right:0;bottom:0;z-index:9999;background:#fff;border-top:1px solid var(--line);box-shadow:0 -8px 28px rgba(10,44,82,.10);padding:16px 20px;display:none}
#cookie-banner.show{display:block}
.cookie-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;gap:18px;flex-wrap:wrap;justify-content:space-between}
.cookie-text{flex:1;min-width:260px;font-size:13.5px;color:var(--ink);line-height:1.6}
.cookie-text a{color:var(--gold-d);text-decoration:underline}
.cookie-actions{display:flex;gap:10px;flex-wrap:wrap}
.cookie-actions .btn{padding:11px 18px;font-size:14px}
@media(max-width:560px){.cookie-actions{width:100%}.cookie-actions .btn{flex:1;text-align:center;justify-content:center}}
