@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  /* Brand */
  --navy:          #0b1728;
  --navy-mid:      #112240;
  --navy-light:    #1a365d;
  --accent:        #2d7dd2;
  --accent-light:  #4a9eff;
  --gold:          #c9a84c;
  --gold-light:    #e8c96e;
  --teal:          #0fbfad;
  --danger:        #e53e3e;
  --success:       #0d9f6e;

  /* Surfaces */
  --white:         #ffffff;
  --surface:       #ffffff;
  --bg:            #f4f7fb;
  --bg-alt:        #edf2f8;

  /* Text */
  --text:          #0d1b2a;
  --text-mid:      #374a5c;
  --text-muted:    #6b7f96;

  /* Borders */
  --border:        #dde5ef;
  --border-light:  #edf2f9;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11,23,40,.06), 0 1px 2px rgba(11,23,40,.04);
  --shadow-md: 0 4px 16px rgba(11,23,40,.10), 0 2px 4px rgba(11,23,40,.05);
  --shadow-lg: 0 20px 48px rgba(11,23,40,.14), 0 8px 16px rgba(11,23,40,.06);
  --shadow-xl: 0 40px 80px rgba(11,23,40,.20);

  /* Radius */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; transition: color .2s; }
p { color: var(--text-mid); }
h1, h2, h3, h4 { color: var(--navy); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem; text-align: center;
}
h3 { font-size: 1.1rem; }
h4 { font-size: .95rem; }

/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */
.container { max-width: 1220px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.5rem; font-weight: 600; font-size: .95rem;
  border-radius: var(--r-md); border: none; cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
}
.btn-primary {
  background: var(--navy-light); color: var(--white);
  box-shadow: 0 4px 14px rgba(26,54,93,.3);
}
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline {
  background: transparent; border: 1.5px solid var(--navy-light);
  color: var(--navy-light);
}
.btn-outline:hover { background: var(--navy-light); color: var(--white); }
.btn-large { padding: 1rem 2.25rem; font-size: 1.05rem; border-radius: var(--r-lg); }
.btn-ghost {
  background: rgba(255,255,255,.12); color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo {
  font-size: 1.4rem; font-weight: 800; color: var(--navy);
  display: flex; align-items: center; gap: .6rem; letter-spacing: .5px;
}
.logo svg { width: 28px; height: 28px; }
.logo-dot { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-mid); font-weight: 500; font-size: .9rem; }
.nav-links a:hover { color: var(--navy); }
.nav-links .btn { padding: .5rem 1.2rem; font-size: .875rem; }
.language-selector {
  display: flex; gap: .4rem; align-items: center;
  cursor: pointer; color: var(--text-muted); font-size: .85rem; font-weight: 500;
}
.language-selector svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  padding: 9rem 0 6rem;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 55%, #162f55 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% -10%, rgba(45,125,210,.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 100%, rgba(15,191,173,.15) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85); padding: .4rem 1.2rem; border-radius: var(--r-full);
  font-size: .78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-eyebrow svg { width: 14px; height: 14px; }
.hero h1 {
  color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,.75) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  color: rgba(255,255,255,.65); font-size: 1.1rem; max-width: 600px;
  margin: 1.25rem auto 2.5rem; line-height: 1.75;
}
.hero-subtitle strong { color: rgba(255,255,255,.9); }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap;
  margin-top: 4rem; padding-top: 3.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 2.2rem; font-weight: 800; color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1;
}
.stat-label { font-size: .78rem; color: rgba(255,255,255,.5); letter-spacing: 1px; margin-top: .25rem; text-transform: uppercase; }

/* ═══════════════════════════════════════
   SECTION LAYOUT
═══════════════════════════════════════ */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy); }
.section-eyebrow {
  text-align: center; font-size: .7rem; font-weight: 700;
  letter-spacing: 3px; color: var(--accent); text-transform: uppercase;
  margin-bottom: .5rem;
}
.section-subtitle {
  text-align: center; color: var(--text-muted);
  max-width: 520px; margin: .5rem auto 3rem;
  font-size: .95rem;
}

/* ═══════════════════════════════════════
   FEATURE CARDS
═══════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.feature-card {
  background: var(--white); padding: 2.25rem;
  border-radius: var(--r-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(45,125,210,.25); }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--navy-light), var(--accent));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg { width: 26px; height: 26px; stroke: white; fill: none; stroke-width: 1.75; }
.feature-card h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.feature-card p { font-size: .88rem; line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════
   LEVEL BADGES
═══════════════════════════════════════ */
.level-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; padding: .3rem .9rem; border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.level-badge svg { width: 13px; height: 13px; }
.level-starter   { background: rgba(13,159,110,.1);  color: #0a7a55; border: 1px solid rgba(13,159,110,.25); }
.level-essential { background: rgba(45,125,210,.1);  color: #1a5fb0; border: 1px solid rgba(45,125,210,.25); }
.level-pro       { background: rgba(125,60,195,.1);  color: #6b21a8; border: 1px solid rgba(125,60,195,.25); }
.level-advanced  { background: rgba(201,136,20,.1);  color: #92400e; border: 1px solid rgba(201,136,20,.3); }
.level-exec      { background: rgba(11,23,40,.08);   color: var(--navy); border: 1px solid rgba(11,23,40,.2); }

/* ═══════════════════════════════════════
   COURSE CARDS
═══════════════════════════════════════ */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 1.5rem;
}
.course-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.course-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy-light), var(--accent));
  opacity: 0; transition: opacity .3s;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.course-card:hover .course-card-accent { opacity: 1; }
.course-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.course-card > p { font-size: .87rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.65; flex-shrink: 0; }

.module-list { list-style: none; margin-bottom: 1.5rem; flex: 1; }
.module-list li {
  font-size: .83rem; color: var(--text-muted);
  padding: .45rem 0; display: flex; align-items: center; gap: .6rem;
  border-bottom: 1px solid var(--border-light);
}
.module-list li:last-child { border: none; }
.module-list li svg { width: 12px; height: 12px; stroke: var(--accent); fill: none; stroke-width: 2.5; flex-shrink: 0; }

.course-footer { display: flex; align-items: center; justify-content: space-between; margin-bottom: .85rem; }
.course-price { font-size: 1.9rem; font-weight: 800; color: var(--navy); line-height: 1; }
.course-price span { font-size: .8rem; font-weight: 400; color: var(--text-muted); }
.cert-tag {
  display: flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 600; color: var(--success);
  background: rgba(13,159,110,.08); border: 1px solid rgba(13,159,110,.2);
  padding: .25rem .75rem; border-radius: var(--r-full);
}
.cert-tag svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.btn-enroll {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; background: var(--navy-light); color: var(--white);
  padding: .8rem; border-radius: var(--r-md);
  font-weight: 700; font-size: .875rem; transition: all .2s;
}
.btn-enroll svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }
.btn-enroll:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lock-note {
  text-align: center; font-size: .72rem; color: var(--text-muted);
  margin-top: .5rem; display: flex; align-items: center; justify-content: center; gap: 4px;
}
.lock-note svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ═══════════════════════════════════════
   MEMBERSHIPS / PLANS
═══════════════════════════════════════ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.5rem; align-items: start;
}
.plan-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 2rem 1.75rem;
  text-align: center; position: relative;
  transition: transform .3s, box-shadow .3s;
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.plan-card.featured {
  border-color: var(--navy-light);
  box-shadow: 0 0 0 4px rgba(26,54,93,.07), var(--shadow-lg);
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--navy-light); color: white;
  font-size: .68rem; font-weight: 800; letter-spacing: 1.2px;
  padding: .3rem 1.1rem; border-radius: var(--r-full); white-space: nowrap;
  display: flex; align-items: center; gap: .4rem;
}
.plan-badge svg { width: 12px; height: 12px; }
.plan-icon-wrap {
  width: 64px; height: 64px; border-radius: var(--r-lg); margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
}
.plan-icon-wrap svg { width: 32px; height: 32px; }
.icon-bronze { background: linear-gradient(135deg, #cd7f32, #e8a855); }
.icon-silver { background: linear-gradient(135deg, #8a9bb0, #b8c8dc); }
.icon-gold   { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.icon-plat   { background: linear-gradient(135deg, #4a5568, #718096); }

.plan-name { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.plan-duration {
  font-size: .75rem; color: var(--text-muted); letter-spacing: .5px;
  margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.plan-duration svg { width: 13px; height: 13px; stroke: var(--text-muted); fill: none; }
.plan-price { font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; }
.plan-price .cur { font-size: 1.3rem; vertical-align: top; margin-top: 8px; display: inline-block; color: var(--accent); }
.plan-period { font-size: .78rem; color: var(--text-muted); margin-bottom: 1.5rem; margin-top: .3rem; }

.plan-features { list-style: none; margin-bottom: 1.75rem; text-align: left; }
.plan-features li {
  font-size: .83rem; color: var(--text-muted);
  padding: .5rem 0; border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; gap: .6rem;
}
.plan-features li:last-child { border: none; }
.plan-features li.inactive { opacity: .38; }
.fi, .fx { width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }
.fi { background: rgba(13,159,110,.12); }
.fi svg { width: 9px; height: 9px; stroke: var(--success); fill: none; stroke-width: 3; }
.fx { background: rgba(107,127,150,.1); }
.fx svg { width: 9px; height: 9px; stroke: var(--text-muted); fill: none; stroke-width: 2.5; }

.btn-plan {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: .85rem; border-radius: var(--r-md);
  font-weight: 700; font-size: .875rem; transition: all .22s; gap: .4rem;
}
.btn-plan svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }
.btn-plan-primary {
  background: var(--navy-light); color: white;
  box-shadow: 0 4px 14px rgba(26,54,93,.28);
}
.btn-plan-primary:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-plan-outline {
  background: transparent; border: 1.5px solid var(--navy-light); color: var(--navy-light);
}
.btn-plan-outline:hover { background: var(--navy-light); color: white; }

/* ═══════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════ */
.compare-wrap { overflow-x: auto; margin-top: 2.5rem; border-radius: var(--r-lg); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; font-size: .875rem; min-width: 680px; }
.compare-table th {
  padding: 1rem 1.25rem; text-align: center; font-weight: 700;
  color: var(--navy); background: var(--bg);
  border-bottom: 2px solid var(--border);
}
.compare-table th:first-child { text-align: left; width: 38%; }
.compare-table th small { font-weight: 500; font-size: .72rem; color: var(--text-muted); display: block; }
.compare-table td {
  padding: .8rem 1.25rem; text-align: center;
  border-bottom: 1px solid var(--border-light); color: var(--text-muted);
}
.compare-table td:first-child { text-align: left; color: var(--text); font-weight: 500; }
.compare-table tbody tr:last-child td { border: none; }
.compare-table tbody tr:hover td { background: var(--bg); }
.ti svg, .tx svg { width: 15px; height: 15px; display: block; margin: 0 auto; }
.ti svg { stroke: var(--success); fill: none; stroke-width: 2.5; }
.tx svg { stroke: var(--border); fill: none; stroke-width: 2.5; }
.th-highlight { background: rgba(26,54,93,.04) !important; }

/* ═══════════════════════════════════════
   STEPS
═══════════════════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 1.5rem; max-width: 1000px; margin: 0 auto;
}
.step-card {
  text-align: center; padding: 2.25rem 1.5rem;
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  position: relative;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.step-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--navy-light), var(--accent));
  color: white; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-icon svg { width: 26px; height: 26px; stroke: var(--navy-light); fill: none; stroke-width: 1.75; }
.step-card h4 { font-size: .95rem; margin-bottom: .5rem; }
.step-card p { font-size: .83rem; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* ═══════════════════════════════════════
   LEGAL BANNER
═══════════════════════════════════════ */
.legal-banner {
  background: #fefce8; border: 1px solid #fde68a;
  border-radius: var(--r-lg); padding: 1.5rem 1.75rem;
  display: flex; gap: 1rem; align-items: flex-start;
  max-width: 920px; margin: 3rem auto 0;
}
.legal-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: rgba(202,138,4,.15); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.legal-icon svg { width: 20px; height: 20px; stroke: #92400e; fill: none; stroke-width: 2; }
.legal-text h4 { color: #92400e; font-size: .88rem; margin-bottom: .35rem; }
.legal-text p { font-size: .8rem; color: #78350f; margin: 0; line-height: 1.7; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq-item:last-child { border: none; }
.faq-item h4 { font-size: .95rem; margin-bottom: .5rem; color: var(--navy); }
.faq-item p { font-size: .87rem; margin: 0; }

/* ═══════════════════════════════════════
   CHECKOUT
═══════════════════════════════════════ */
.checkout-wrapper {
  padding: 8rem 0 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: start;
}
.checkout-panel {
  background: var(--white); padding: 2.5rem;
  border-radius: var(--r-xl); box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.summary-row { display: flex; justify-content: space-between; padding: .85rem 0; border-bottom: 1px solid var(--border-light); }
.summary-row:last-of-type { border: none; }
.summary-total {
  display: flex; justify-content: space-between;
  font-size: 1.35rem; font-weight: 800; color: var(--navy);
  padding-top: 1rem; margin-top: .5rem; border-top: 2px solid var(--border);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: .4rem; color: var(--text); }
.form-input {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  font-family: inherit; font-size: .95rem;
  color: var(--text); transition: border-color .2s, box-shadow .2s;
  background: var(--white);
}
.form-input:focus { outline: none; border-color: var(--navy-light); box-shadow: 0 0 0 3px rgba(26,54,93,.1); }
.legal-checkboxes {
  background: #fffbeb; border: 1px solid #fde68a;
  padding: 1.25rem; border-radius: var(--r-md); margin-bottom: 1.5rem;
}
.checkbox-group { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .75rem; }
.checkbox-group:last-child { margin: 0; }
.checkbox-group input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--navy-light); flex-shrink: 0; cursor: pointer; }
.checkbox-group label { font-size: .82rem; line-height: 1.5; cursor: pointer; color: var(--text-mid); }
.badge-digital {
  display: inline-block; background: var(--navy-light); color: white;
  padding: .3rem 1rem; border-radius: var(--r-full);
  font-weight: 600; font-size: .75rem; letter-spacing: .5px;
}

/* ═══════════════════════════════════════
   PORTAL
═══════════════════════════════════════ */
.portal-layout { display: flex; min-height: 100vh; background: var(--bg); }
.portal-sidebar {
  width: 280px; background: var(--white); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; position: fixed; height: 100vh;
}
.sidebar-header { padding: 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: .5rem; font-weight: 800; color: var(--navy); font-size: 1.2rem; }
.sidebar-nav { padding: 1rem 0; flex: 1; }
.nav-item {
  display: flex; align-items: center; gap: .85rem; padding: .85rem 1.5rem;
  color: var(--text-muted); font-weight: 500; font-size: .88rem;
  transition: all .2s; border-left: 3px solid transparent;
}
.nav-item:hover, .nav-item.active { background: var(--bg); color: var(--navy); border-left-color: var(--navy-light); }
.nav-item svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.portal-main { flex: 1; margin-left: 280px; padding: 2rem; }
.video-container {
  width: 100%; aspect-ratio: 16/9; background: var(--navy);
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); margin-bottom: 1.5rem;
}
.play-btn-svg { width: 72px; height: 72px; cursor: pointer; transition: transform .2s; }
.play-btn-svg:hover { transform: scale(1.08); }
.lesson-meta { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); padding-bottom: 1rem; margin-bottom: 1.5rem; }
.progress-bar-bg { width: 180px; height: 7px; background: var(--border); border-radius: 4px; overflow: hidden; }
.progress-bar-fill { width: 10%; height: 100%; background: var(--success); border-radius: 4px; }

/* ═══════════════════════════════════════
   SUCCESS PAGE
═══════════════════════════════════════ */
.success-card { max-width: 580px; margin: 8rem auto; background: var(--white); padding: 3.5rem; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); text-align: center; border: 1px solid var(--border); }
.success-icon { width: 72px; height: 72px; color: var(--success); margin: 0 auto 2rem; }
.action-buttons { display: flex; gap: 1rem; justify-content: center; margin-top: 2.5rem; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--navy); color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer-logo { display: flex; align-items: center; gap: .6rem; font-size: 1.3rem; font-weight: 800; color: white; margin-bottom: 1rem; }
.footer-logo svg { width: 26px; height: 26px; }
.footer-col p { color: rgba(255,255,255,.5); font-size: .87rem; line-height: 1.75; margin-bottom: 0; }
.footer-col h4 { color: white; font-size: .85rem; margin-bottom: 1.25rem; letter-spacing: .5px; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col a { color: rgba(255,255,255,.5); font-size: .87rem; transition: color .2s; }
.footer-col a:hover { color: white; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 2.5rem 0 2rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); margin: 0; }
.stripe-badge {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: .35rem .85rem; border-radius: var(--r-full); font-size: .75rem;
  color: rgba(255,255,255,.55);
}
.stripe-badge svg { width: 14px; height: 14px; stroke: rgba(255,255,255,.5); fill: none; stroke-width: 2; }

/* ═══════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════ */
.cookie-banner {
  display: none; position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: var(--navy); color: rgba(255,255,255,.8);
  padding: 1.25rem 1.5rem; z-index: 9999;
  border-radius: var(--r-lg); border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-xl);
  flex-direction: row; align-items: center; justify-content: space-between; gap: 1.5rem;
  max-width: 900px; margin: 0 auto;
}
.cookie-banner p { font-size: .83rem; margin: 0; color: rgba(255,255,255,.65); }
.cookie-banner a { color: var(--accent-light); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-stats { gap: 1.5rem; }
  .checkout-wrapper { grid-template-columns: 1fr; padding: 7rem 0 3rem; }
  .portal-sidebar { transform: translateX(-100%); }
  .portal-main { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-banner { flex-direction: column; }
  h1 { font-size: 2.2rem; }
}
@media (max-width: 640px) {
  .plans-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .action-buttons { flex-direction: column; }
}
