/* =========================================================
   EduIntels — PC CSS (Desktop/Tablet)
   - Bright white + Udemy-ish purple
   - Solid buttons / brand
   - No mobile drawer here (keep that in mobile.css)
   Breakpoint:
     - Soft collapse <= 1020px
========================================================= */

:root{
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;

  --primary: #5624D0;
  --primary2:#6D28D9;
  --accent:  #0EA5E9;
  --mint:    #10B981;
  --warn:    #F59E0B;
  --danger:  #EF4444;

  --border:  #e5e7eb;
  --border2: #eef2f7;

  --shadow:  0 10px 22px rgba(15,23,42,.06);
  --shadow2: 0 18px 44px rgba(15,23,42,.10);

  --r10: 10px;
  --r12: 12px;
  --r14: 14px;
  --r16: 16px;
  --r18: 18px;
  --r20: 20px;

  --container: 1140px;
  --pad: 20px;
  --headerH: 74px;
}

/* =========================
   Base
========================= */
*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a{ color:inherit; text-decoration:none; }
button,input,select,textarea{ font:inherit; }
img{ max-width:100%; height:auto; display:block; }

.container{ max-width:var(--container); margin:0 auto; padding:0 var(--pad); }
.muted{ color: var(--muted); }
.tiny{ font-size:12px; }
.center{ text-align:center; }
.w100{ width:100%; }

h1,h2,h3{ letter-spacing:-0.4px; }
h1{ letter-spacing:-0.7px; }
p{ margin:0 0 10px; }
strong{ font-weight:950; }

/* Accessibility */
:focus-visible{
  outline: 3px solid rgba(86,36,208,.22);
  outline-offset: 2px;
  border-radius: 10px;
}

/* =========================
   Hide mobile-only UI on PC
========================= */
.mobile,
.mobileBar{ display:none !important; }
.hamburger{ display:none !important; }

/* =========================
   Toast
========================= */
.toast{
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10050;
  width: min(520px, calc(100% - 32px));
}
.toast__inner{
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--r16);
  box-shadow: var(--shadow2);
  padding: 12px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}
.toast__msg{ display:grid; gap:2px; }
.toast--success .toast__inner{
  border-color: rgba(16,185,129,.25);
  background: rgba(16,185,129,.06);
}
.toast--error .toast__inner{
  border-color: rgba(239,68,68,.22);
  background: rgba(239,68,68,.05);
}
.iconbtn{
  border:0;
  background: transparent;
  cursor:pointer;
  width:36px;height:36px;
  border-radius: var(--r12);
  display:grid;
  place-items:center;
}
.iconbtn:hover{ background: rgba(15,23,42,.05); }

/* =========================
   Topbar
========================= */
.topbar{
  background:#fff;
  border-bottom:1px solid var(--border);
}
.topbar__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  gap:12px;
  flex-wrap:wrap;
}
.topbar__left,
.topbar__right{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(86,36,208,.18);
  background: rgba(86,36,208,.06);
  color: var(--primary);
  font-weight: 950;
  font-size:12px;
}
.toplink{
  color: var(--muted);
  font-weight: 900;
}
.toplink:hover{ color: var(--text); }
.sep{ color: rgba(15,23,42,.35); }

.langBtn{
  border:1px solid var(--border);
  background:#fff;
  padding: 8px 10px;
  border-radius: var(--r12);
  font-weight: 900;
  cursor:pointer;
  color: rgba(15,23,42,.78);
}
.langBtn:hover{
  border-color: rgba(86,36,208,.25);
  box-shadow: 0 10px 18px rgba(15,23,42,.06);
}

/* =========================
   Header (Desktop/Tablet)
========================= */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled{
  border-bottom-color: var(--border);
  box-shadow: 0 10px 20px rgba(15,23,42,.06);
}
.header__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 0;
  min-height: var(--headerH);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 240px;
}
.brand__mark{
  width:42px;height:42px;
  border-radius: var(--r14);
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight: 950;
  box-shadow: 0 14px 24px rgba(86,36,208,.18);
}
.brand__mark--small{
  width:36px;height:36px;
  border-radius: var(--r12);
  box-shadow: none;
}
.brand__text{ display:flex; flex-direction:column; line-height:1.1; }
.brand__name{ font-weight: 950; }
.brand__tag{
  font-size:12px;
  color: var(--muted);
  font-weight: 800;
  margin-top:2px;
}

.nav{
  display:flex;
  align-items:center;
  gap:6px;
}
.nav a{
  color: var(--muted);
  font-weight: 900;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: var(--r12);
}
.nav a:hover{
  color: var(--text);
  background: rgba(15,23,42,.04);
}

.header__actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius: var(--r12);
  border:1px solid transparent;
  cursor:pointer;
  font-weight: 950;
  transition: transform .08s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: var(--primary);
  color:#fff;
  box-shadow: 0 10px 18px rgba(86,36,208,.16);
}
.btn--primary:hover{ background: var(--primary2); }

.btn--ghost{
  background:#fff;
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover{
  border-color: rgba(86,36,208,.25);
  box-shadow: 0 10px 18px rgba(15,23,42,.06);
}

.link{
  color: var(--primary);
  font-weight: 950;
}
.link:hover{ text-decoration: underline; }

/* =========================
   HERO
========================= */
.hero{
  padding: 28px 0 18px;
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(86,36,208,.12), transparent 58%),
    radial-gradient(900px 520px at 90% 10%, rgba(14,165,233,.10), transparent 55%),
    linear-gradient(180deg, rgba(16,185,129,.05), transparent 44%),
    #fff;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items:start;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(86,36,208,.18);
  background: rgba(255,255,255,.80);
  backdrop-filter: blur(10px);
  font-weight: 900;
  font-size: 12px;
  color: rgba(15,23,42,.82);
  width: fit-content;
}
.pill__dot{
  width:10px;height:10px;
  border-radius:50%;
  background: var(--primary);
}
.hero h1{
  margin:12px 0 10px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.12;
}
.lead{
  margin:0 0 16px;
  color: var(--muted);
  font-size: 16px;
}
.hero__actions{
  display:flex;
  gap:10px 12px;
  flex-wrap:wrap;
  align-items:center;
  margin: 14px 0 14px;
}
.hero__chips{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0 8px;
}
.chip{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius: var(--r14);
  border:1px solid var(--border);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow);
  font-weight: 900;
  color: rgba(15,23,42,.82);
}
.chip__i{
  width:34px;height:34px;
  border-radius: var(--r12);
  display:grid;
  place-items:center;
  background: rgba(86,36,208,.10);
  border:1px solid rgba(86,36,208,.18);
  color: var(--primary);
  font-weight: 950;
  font-size: 12px;
}
.hero__meta{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}
.dotsep{ color: rgba(15,23,42,.35); font-weight:900; }

/* Trust strip inside hero */
.trust{
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: var(--r18);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 14px;
}
.trust__label{
  font-weight: 950;
  color: rgba(15,23,42,.82);
  margin-bottom: 10px;
}
.trust__logos{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}
.trust__logo{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: #fff;
  color: rgba(15,23,42,.78);
  font-weight: 900;
  font-size: 12px;
}

/* Hero right preview */
.heroCard{
  border: 1px solid var(--border);
  border-radius: var(--r18);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.heroCard__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.heroCard__pill{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(86,36,208,.18);
  background: rgba(86,36,208,.06);
  color: var(--primary);
  font-weight: 950;
  font-size: 12px;
}
.heroCard__muted{ color: var(--muted); font-weight:900; font-size:13px; }

.dash{ padding: 14px; }
.dash__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.kpi{
  border:1px solid var(--border2);
  border-radius: var(--r14);
  padding: 12px;
  background:#fff;
}
.kpi__k{ color: var(--muted); font-weight:900; font-size:12px; }
.kpi__v{ font-weight:950; font-size:20px; margin:4px 0; }
.kpi__m{ color: var(--muted); font-weight:800; font-size:12px; }

.dash__list{ margin-top:12px; display:grid; gap:10px; }
.dashRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-radius: var(--r14);
  border:1px solid var(--border2);
  background:#fff;
}
.dash__foot{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
}

.heroSide{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}
.heroSide__item{
  border: 1px solid var(--border);
  border-radius: var(--r14);
  padding: 12px;
  background:#fff;
  box-shadow: var(--shadow);
  font-weight: 900;
  color: rgba(15,23,42,.78);
}

/* =========================
   Sections (global)
========================= */
.section{
  padding: 56px 0;
  border-top: 1px solid var(--border2);
  background:#fff;
}
.section--soft{
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(14,165,233,.08), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(86,36,208,.08), transparent 55%),
    #fff;
}
.section__head{
  max-width: 900px;
  margin-bottom: 22px;
}
.section__head h2{
  margin:0 0 8px;
  font-size: clamp(22px, 2.2vw, 34px);
}
.section__head .sub{
  margin:0;
  color: var(--muted);
  font-weight: 800;
}

/* =========================
   Featured products
========================= */
.featured{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
  align-items:stretch;
}
.featuredMain{
  border: 1px solid var(--border);
  border-radius: var(--r18);
  background:#fff;
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.featuredMain__inner{
  padding: 18px;
  display:grid;
  gap: 10px;
}
.featuredMain__tag{
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(86,36,208,.18);
  background: rgba(86,36,208,.06);
  color: var(--primary);
  font-weight: 950;
  font-size: 12px;
}
.featuredMain h3{
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}
.featuredMain__bullets{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-top: 6px;
}
.miniPill{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background:#fff;
  font-weight: 900;
  color: rgba(15,23,42,.78);
  font-size: 12px;
}
.featuredMain__actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 10px;
}

.featuredGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fCard{
  border: 1px solid var(--border);
  border-radius: var(--r16);
  background:#fff;
  box-shadow: var(--shadow);
  padding: 14px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.fCard__i{
  width: 42px;
  height: 42px;
  border-radius: var(--r14);
  display:grid;
  place-items:center;
  background: rgba(14,165,233,.10);
  border:1px solid rgba(14,165,233,.20);
  color: #075985;
  font-weight: 950;
}
.fCard__b{
  display:grid;
  gap: 4px;
}
.fCard__b strong{
  font-weight: 950;
  color: rgba(15,23,42,.86);
}
.fCard__b .muted{
  font-weight: 800;
  font-size: 13px;
}

/* =========================
   Battle (pain vs promise)
========================= */
.battle{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.battleBox{
  border: 1px solid var(--border);
  border-radius: var(--r18);
  background:#fff;
  box-shadow: var(--shadow);
  padding: 16px;
}
.battleBox h3{ margin:0 0 10px; }
.battleBox--mint{
  border-color: rgba(16,185,129,.25);
  background:
    linear-gradient(180deg, rgba(16,185,129,.08), rgba(255,255,255,.92)),
    #fff;
}
.list{
  margin:0;
  padding-left:18px;
  color: rgba(15,23,42,.82);
  font-weight: 800;
}
.list li{ margin: 10px 0; }

/* Principles */
.principles{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pCard{
  border: 1px solid var(--border);
  border-radius: var(--r16);
  background:#fff;
  box-shadow: var(--shadow);
  padding: 14px;
}
.pCard__h{
  font-weight: 950;
  margin-bottom: 6px;
  color: rgba(15,23,42,.86);
}

/* =========================
   Modules grid
========================= */
.modulesGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.mCard{
  display:flex;
  gap:12px;
  align-items:flex-start;
  border:1px solid var(--border);
  border-radius: var(--r16);
  background:#fff;
  box-shadow: var(--shadow);
  padding: 14px;
}
.mCard__i{
  width:42px;height:42px;
  border-radius: var(--r14);
  display:grid;
  place-items:center;
  background: rgba(86,36,208,.10);
  border:1px solid rgba(86,36,208,.18);
  color: var(--primary);
  font-weight: 950;
}
.mCard__b{ display:grid; gap:4px; }
.mCard__b strong{ font-weight: 950; }
.mCard__b .muted{ font-weight: 800; font-size: 13px; }

.ctaRow{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   Privacy strip
========================= */
.strip{
  padding: 22px 0;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  background:
    radial-gradient(900px 280px at 20% 0%, rgba(86,36,208,.08), transparent 60%),
    radial-gradient(900px 280px at 90% 10%, rgba(16,185,129,.08), transparent 60%),
    #fff;
}
.strip__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.strip h3{ margin:0 0 4px; }

/* =========================
   Pricing
========================= */
.toggle{
  display:flex;
  gap:10px;
  align-items:center;
  margin: 18px 0;
}
.toggle__btn{
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 12px;
  border-radius: var(--r12);
  font-weight: 950;
  cursor:pointer;
  color: rgba(15,23,42,.80);
  display:flex;
  align-items:center;
  gap:8px;
}
.toggle__btn.is-active{
  border-color: rgba(86,36,208,.28);
  background: rgba(86,36,208,.06);
  color: var(--primary);
}
.tagSave{
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(16,185,129,.25);
  background: rgba(16,185,129,.10);
  color: #065f46;
  font-weight: 950;
  font-size: 12px;
}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.priceCard{
  position:relative;
  border: 1px solid var(--border);
  border-radius: var(--r18);
  background:#fff;
  box-shadow: var(--shadow2);
  padding: 16px;
}
.priceCard h3{ margin:0 0 6px; }
.priceCard--featured{
  border-color: rgba(86,36,208,.30);
  box-shadow: 0 22px 55px rgba(86,36,208,.10);
}
.ribbon{
  position:absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(86,36,208,.22);
  background: rgba(86,36,208,.06);
  color: var(--primary);
  font-weight: 950;
  font-size: 12px;
}
.amountRow{
  display:flex;
  align-items:flex-end;
  gap:6px;
  margin: 12px 0 10px;
}
.currency{
  font-weight: 950;
  color: rgba(15,23,42,.82);
}
.amount{
  font-size: 36px;
  font-weight: 950;
  letter-spacing: -0.6px;
}
.per{
  color: var(--muted);
  font-weight: 900;
  padding-bottom: 6px;
}
.ticks{
  margin:0;
  padding-left:0;
  list-style:none;
  display:grid;
  gap:8px;
}
.ticks li{
  padding-left: 26px;
  position:relative;
  font-weight: 900;
  color: rgba(15,23,42,.82);
}
.ticks li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:18px;height:18px;
  border-radius: 6px;
  display:grid;
  place-items:center;
  background: rgba(86,36,208,.10);
  border:1px solid rgba(86,36,208,.18);
  color: var(--primary);
  font-weight: 950;
}
.procNote{
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--r16);
  background:#fff;
  color: rgba(15,23,42,.78);
  font-weight: 900;
}

/* =========================
   Insights cards
========================= */
.insights{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.insightCard{
  position:relative;
  border: 1px solid var(--border);
  border-radius: var(--r18);
  background:#fff;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.insightCard__grad{
  height: 52px;
  background:
    radial-gradient(500px 200px at 20% 0%, rgba(86,36,208,.16), transparent 60%),
    radial-gradient(500px 200px at 90% 10%, rgba(14,165,233,.12), transparent 60%),
    #fff;
  border-bottom: 1px solid var(--border2);
}
.insightCard__body{
  padding: 14px;
  display:grid;
  gap: 6px;
}
.insightCard__body strong{ font-weight: 950; }
.insightCard__body .muted{ font-weight: 800; font-size: 13px; }

/* =========================
   FAQ accordion
========================= */
.faq{ display:grid; gap:10px; }
.qa{
  border: 1px solid var(--border);
  border-radius: var(--r14);
  background:#fff;
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(15,23,42,.04);
}
.qa__q{
  width:100%;
  text-align:left;
  padding: 14px;
  border:0;
  background: transparent;
  cursor:pointer;
  font-weight: 950;
  color: rgba(15,23,42,.86);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.qa__q:after{
  content:"+";
  font-weight: 950;
  color: rgba(15,23,42,.55);
}
.qa.is-open .qa__q:after{ content:"–"; }
.qa__a{
  display:none;
  padding: 0 14px 14px;
  color: var(--muted);
  font-weight: 800;
}
.qa__a p{ margin:0; }
.qa.is-open .qa__a{ display:block; }

/* =========================
   Talk to us
========================= */
.talk{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items:start;
}
.talkCard{
  border: 1px solid var(--border);
  border-radius: var(--r18);
  background:#fff;
  box-shadow: var(--shadow2);
  padding: 16px;
}
.talkLinks{
  display:grid;
  gap:10px;
  margin: 12px 0 10px;
}
.talkLinks a{
  padding: 10px 12px;
  border-radius: var(--r12);
  border: 1px solid var(--border2);
  background:#fff;
  font-weight: 900;
  color: rgba(15,23,42,.85);
}
.talkLinks a:hover{ border-color: rgba(86,36,208,.22); }
.talkFlow{
  margin-top: 10px;
  padding: 12px;
  border-radius: var(--r14);
  border: 1px solid rgba(86,36,208,.18);
  background: rgba(86,36,208,.05);
  font-weight: 900;
  color: rgba(15,23,42,.82);
}
.supportLine{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border2);
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
  align-items:center;
  font-weight: 900;
  color: rgba(15,23,42,.80);
}

/* Inline alert */
.inlineAlert{
  padding: 10px 12px;
  border-radius: var(--r14);
  border: 1px solid var(--border);
  background:#fff;
  font-weight: 900;
  margin-bottom: 12px;
}
.inlineAlert--success{ border-color: rgba(16,185,129,.30); background: rgba(16,185,129,.08); }
.inlineAlert--error{ border-color: rgba(239,68,68,.25); background: rgba(239,68,68,.06); }

/* Form */
.form{
  border: 1px solid var(--border);
  border-radius: var(--r18);
  background:#fff;
  box-shadow: var(--shadow2);
  padding: 16px;
}
.form--flat{
  border:0;
  box-shadow:none;
  background:#fff;
  padding: 14px 16px 16px;
}
.field{ display:grid; gap:6px; }
.field label{
  font-weight: 950;
  font-size: 13px;
  color: rgba(15,23,42,.84);
}
.field input,
.field select,
.field textarea{
  width:100%;
  border: 1px solid var(--border);
  background:#fff;
  border-radius: var(--r12);
  padding: 10px 12px;
  outline:none;
  font-weight: 800;
  color: rgba(15,23,42,.88);
}
.field textarea{ resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(86,36,208,.45);
  box-shadow: 0 0 0 4px rgba(86,36,208,.12);
}
.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

/* Bottom CTA */
.bottomCta{
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: var(--r18);
  background:#fff;
  box-shadow: var(--shadow);
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}

/* =========================
   Footer
========================= */
.footer{
  border-top: 1px solid var(--border);
  padding: 24px 0;
  background:#fff;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 14px;
  align-items:start;
}
.footerBrand{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.footerCol{ display:grid; gap:8px; }
.footerCol strong{ font-weight: 950; }
.footerCol a{ color: var(--muted); font-weight: 900; }
.footerCol a:hover{ color: var(--text); }
.footer__bottom{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border2);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* =========================
   Modal (Demo)
========================= */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9998;
}
.modal.is-open{ display:block; }
.modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(15,23,42,.35);
}
.modal__panel{
  position: relative;
  width: min(720px, calc(100% - 24px));
  margin: 26px auto;
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--r18);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.modal__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.modal__head h3{
  margin: 0 0 4px;
  font-size: 18px;
}
.modal__head p{ margin:0; }

/* =========================
   Tablet / small desktop tweaks
========================= */
@media (max-width: 1020px){
  .hero__grid{ grid-template-columns: 1fr; }
  .dash__kpis{ grid-template-columns: 1fr; }
  .featured{ grid-template-columns: 1fr; }
  .principles{ grid-template-columns: 1fr 1fr; }
  .modulesGrid{ grid-template-columns: 1fr 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .insights{ grid-template-columns: 1fr; }
  .talk{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
  .row{ grid-template-columns: 1fr; }
}
