/*
Theme Name: EA Trader IQ
Theme URI: https://eatraderiq.com
Description: Custom child theme for EA Trader IQ — built on GeneratePress
Author: Trader IQ Pty Ltd
Author URI: https://tradingtools.com.au
Template: generatepress
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: ea-traderiq
*/

/* ══════════════════════════════════════════
   EA TRADER IQ DESIGN SYSTEM
   Charcoal/Gold palette
   ══════════════════════════════════════════ */

/* ── HIDE GENERATEPRESS DEFAULTS ── */
.site-header { display: none !important; }
.entry-title { display: none !important; }
.site-footer { display: none !important; }
.site-info { display: none !important; }
.site-content { padding: 0 !important; }
.content-area { width: 100% !important; max-width: 100% !important; }
#primary { margin: 0 !important; padding: 0 !important; }
.inside-article { padding: 0 !important; margin: 0 !important; }

/* ── RESET & VARIABLES ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #1e2433;
  --bg-mid: #242a3a;
  --bg-light: #2d3548;
  --gold: #f0b429;
  --gold-dim: #c8960a;
  --gold-glow: rgba(240,180,41,.1);
  --amber: #e8a020;
  --copper: #d4783a;
  --white: #f4f0eb;
  --muted: #6D8196;
  --border: rgba(240,180,41,.15);
  --card: rgba(36,42,58,.92);
  --red: #f87171;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: all .15s; }
a:hover { color: var(--amber); }

/* ── CONTAINER ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 48px; }

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.eit-navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(30,36,51,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.eit-navbar-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.eit-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--white);
}
.eit-logo-icon {
  width: 40px; height: 40px; border: 1.5px solid var(--gold); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; color: var(--gold);
  letter-spacing: .04em; line-height: 1.1; text-align: center;
}
.eit-logo-text { font-size: 1.12rem; font-weight: 700; }
.eit-logo-text em { color: var(--gold); font-style: normal; }
.eit-logo-sub { font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 1px; }
.eit-nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.eit-nav-links li a {
  color: var(--muted); font-size: .86rem; font-weight: 500;
  padding: 7px 12px; border-radius: 6px; transition: all .15s;
}
.eit-nav-links li a:hover { color: var(--white); background: rgba(255,255,255,.04); }
.eit-nav-links li a.active { color: var(--gold); }
.eit-nav-cta {
  border: 1px solid var(--border) !important; color: var(--gold) !important;
  padding: 7px 16px !important; border-radius: 7px !important;
}
.eit-nav-cta:hover { background: var(--gold-glow) !important; border-color: var(--gold) !important; }
.eit-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.eit-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

/* ── NAV DROPDOWN ── */
.has-dropdown { position: relative; }
.has-dropdown > a { cursor: pointer; }
.eit-dropdown {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--bg-mid); border: 1px solid var(--border); border-radius: 10px;
  padding: 8px 0; min-width: 240px; list-style: none;
  box-shadow: 0 12px 36px rgba(0,0,0,.4);
  margin-top: 8px; z-index: 300;
}
.eit-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  width: 12px; height: 12px; background: var(--bg-mid);
  border-left: 1px solid var(--border); border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}
.has-dropdown:hover .eit-dropdown { display: block; }
.eit-dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px !important; font-size: .84rem !important;
  color: var(--muted) !important; border-radius: 0 !important;
  transition: all .12s;
}
.eit-dropdown li a:hover { background: rgba(240,180,41,.05) !important; color: var(--white) !important; }
.dd-chip {
  font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-glow); border: 1px solid var(--border);
  padding: 2px 7px; border-radius: 4px; flex-shrink: 0;
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn-primary {
  background: var(--gold); color: var(--bg); font-family: inherit;
  font-weight: 600; font-size: .9rem; padding: 11px 22px; border-radius: 7px;
  border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  transition: all .2s; text-decoration: none;
  box-shadow: 0 0 20px rgba(240,180,41,.15);
}
.btn-primary:hover { background: var(--amber); color: var(--bg); transform: translateY(-1px); box-shadow: 0 4px 24px rgba(240,180,41,.3); }

.btn-ghost {
  background: transparent; color: var(--white); font-family: inherit;
  font-weight: 500; font-size: .86rem; padding: 10px 20px; border-radius: 7px;
  border: 1px solid rgba(255,255,255,.1); cursor: pointer; display: inline-flex;
  align-items: center; gap: 6px; transition: all .2s; text-decoration: none;
}
.btn-ghost:hover { border-color: var(--gold); background: var(--gold-glow); color: var(--white); }

/* ══════════════════════════════════════════
   SHARED COMPONENTS
   ══════════════════════════════════════════ */
.eyebrow {
  font-size: .66rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

.section { padding: 80px 0; }
.section-alt { background: var(--bg-mid); }
.section-h { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 10px; }
.section-sub { color: var(--muted); font-size: .95rem; line-height: 1.75; max-width: 540px; margin-bottom: 44px; }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold-glow); border: 1px solid var(--border);
  border-radius: 40px; padding: 5px 14px;
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
}

.no-code-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(240,180,41,.08); border: 1px solid var(--border);
  border-radius: 6px; padding: 5px 10px;
  font-size: .72rem; font-weight: 600; color: var(--gold);
}

.sub-badge {
  display: inline-block; background: rgba(240,180,41,.1); border: 1px solid var(--border);
  border-radius: 4px; padding: 2px 8px; font-size: .66rem; color: var(--gold); font-weight: 600; margin-left: 6px;
}

.highlight {
  background: linear-gradient(135deg, rgba(240,180,41,.06), rgba(212,120,58,.04));
  border: 1px solid var(--border); border-radius: 14px; padding: 28px 32px;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #1e2433, #242a3a 50%, #1e2433);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1642790106117-e829e14a795f?w=1600&q=80') center/cover;
  opacity: .04;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(240,180,41,.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(240,180,41,.015) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 75%);
}
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,180,41,.05), transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.hero-inner {
  position: relative; max-width: 1100px; margin: 0 auto; padding: 80px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -.03em; margin-bottom: 18px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-text { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: 30px; max-width: 460px; }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-proof {
  display: flex; align-items: center; gap: 10px;
  padding-top: 24px; border-top: 1px solid var(--border); font-size: .82rem; color: var(--muted);
}
.hero-img-stack { position: relative; height: 400px; }
.hero-img-main {
  position: absolute; right: 0; top: 0; width: 84%; height: 310px;
  border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: var(--bg-light);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
  position: absolute; left: 0; bottom: 0; width: 54%; height: 190px;
  border-radius: 12px; overflow: hidden; border: 2px solid var(--gold);
  box-shadow: 0 0 28px rgba(240,180,41,.1); background: var(--bg-light);
}
.hero-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(30,36,51,.9); border: 1px solid var(--border);
  backdrop-filter: blur(10px); border-radius: 9px; padding: 10px 14px;
}
.hero-badge p { font-size: .7rem; color: var(--muted); margin: 0; }
.hero-badge strong { font-size: .92rem; color: var(--gold); }
.img-ph {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  color: var(--muted); font-size: .8rem; text-align: center; padding: 16px;
  background: linear-gradient(135deg, var(--bg-light), var(--bg));
}
.img-ph small { opacity: .5; font-size: .7rem; }

/* ══════════════════════════════════════════
   COURSE CARDS
   ══════════════════════════════════════════ */
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.course-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; transition: all .3s; text-decoration: none; display: block; color: var(--white);
}
.course-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 16px 44px rgba(0,0,0,.25), 0 0 20px rgba(240,180,41,.06); color: var(--white); }
.course-card .card-img { height: 190px; overflow: hidden; position: relative; background: var(--bg-light); }
.course-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.course-card:hover .card-img img { transform: scale(1.04); }
.course-card .level-chip {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(30,36,51,.85); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 4px 10px; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold);
}
.course-card .card-body { padding: 22px; }
.course-card .card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 7px; line-height: 1.3; }
.course-card .card-body > p { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.course-meta { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.cmeta { font-size: .76rem; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.cmeta span { color: var(--gold); }
.course-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 14px; }
.course-price { font-size: 1.3rem; font-weight: 700; }
.course-price small { font-size: .76rem; color: var(--muted); font-weight: 400; }

/* ── BUNDLE BANNER ── */
.bundle-banner {
  background: linear-gradient(135deg, rgba(240,180,41,.06), rgba(212,120,58,.04));
  border: 1px solid var(--gold); border-radius: 14px;
  padding: 28px 32px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; margin-top: 28px; flex-wrap: wrap;
}
.bundle-left h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.bundle-left p { font-size: .88rem; color: var(--muted); line-height: 1.6; margin: 0; }
.bundle-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.bundle-old { font-size: .88rem; color: var(--muted); text-decoration: line-through; }
.bundle-new { font-size: 1.6rem; font-weight: 700; color: var(--gold); }

/* ══════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════ */
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.how-grid::after {
  content: ''; position: absolute; top: 32px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.how-step { text-align: center; position: relative; z-index: 1; }
.how-num {
  width: 64px; height: 64px; border-radius: 50%; background: var(--bg-mid);
  border: 2px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: var(--gold); margin: 0 auto 18px; transition: all .25s;
}
.how-step:hover .how-num { background: var(--gold-glow); border-color: var(--gold); transform: scale(1.06); }
.how-step h3 { font-size: .92rem; font-weight: 600; margin-bottom: 7px; }
.how-step p { font-size: .82rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════
   FEATURES GRID
   ══════════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; transition: all .25s;
}
.feat:hover { border-color: var(--gold); transform: translateY(-2px); }
.feat-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--gold-glow);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 14px;
}
.feat h4 { font-size: .92rem; font-weight: 600; margin-bottom: 6px; }
.feat p { font-size: .82rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ══════════════════════════════════════════
   ARTICLES PREVIEW
   ══════════════════════════════════════════ */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.art-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; transition: all .25s; text-decoration: none; display: block; color: var(--white);
}
.art-card:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,.2); color: var(--white); }
.art-card .art-img { height: 150px; overflow: hidden; background: var(--bg-light); }
.art-card .art-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.art-card:hover .art-img img { transform: scale(1.04); }
.art-card .art-body { padding: 18px; }
.art-tag { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.art-body h4 { font-size: .92rem; font-weight: 600; line-height: 1.35; margin-bottom: 7px; }
.art-body p { font-size: .8rem; color: var(--muted); line-height: 1.6; margin: 0; }
.art-meta { display: flex; justify-content: space-between; margin-top: 12px; font-size: .74rem; color: var(--muted); }
.art-meta span { color: var(--gold); }

/* ══════════════════════════════════════════
   FORMS
   ══════════════════════════════════════════ */
.eit-form-field { margin-bottom: 16px; }
.eit-form-field label { display: block; font-size: .8rem; font-weight: 600; color: var(--white); margin-bottom: 5px; }
.eit-form-field input,
.eit-form-field select,
.eit-form-field textarea {
  width: 100%; padding: 10px 13px; border: 1px solid var(--border); border-radius: 6px;
  font-size: .88rem; font-family: inherit; color: var(--white); background: var(--bg-light);
  outline: none; transition: border .2s;
}
.eit-form-field input:focus, .eit-form-field select:focus, .eit-form-field textarea:focus { border-color: var(--gold); }
.eit-form-field textarea { min-height: 100px; resize: vertical; }
.eit-form-field select {
  appearance: none; padding-right: 34px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236D8196' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.eit-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-msg { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: .9rem; }
.form-msg.sent { background: rgba(240,180,41,.1); border: 1px solid var(--gold); color: var(--gold); }
.form-msg.error { background: rgba(248,113,113,.1); border: 1px solid var(--red); color: var(--red); }

/* ══════════════════════════════════════════
   COURSE PAGE
   ══════════════════════════════════════════ */
.enrol-grid { display: grid; grid-template-columns: 1fr 360px; gap: 52px; align-items: start; }
.enrol-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; position: sticky; top: 80px; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.who-card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 18px; }
.who-card h4 { font-size: .86rem; font-weight: 600; margin-bottom: 9px; }
.who-card ul { list-style: none; }
.who-card ul li { font-size: .82rem; color: var(--muted); padding: 3px 0; display: flex; align-items: flex-start; gap: 7px; line-height: 1.5; }
.mod-accordion { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 24px; }
.mod-item { border-bottom: 1px solid var(--border); }
.mod-item:last-child { border-bottom: none; }
.mod-header { display: flex; align-items: center; gap: 11px; padding: 14px 18px; cursor: pointer; transition: background .15s; user-select: none; }
.mod-header:hover { background: rgba(240,180,41,.03); }
.mod-num { width: 26px; height: 26px; border-radius: 50%; background: var(--gold-glow); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.mod-title { flex: 1; font-size: .9rem; font-weight: 600; }
.mod-count { font-size: .76rem; color: var(--muted); }
.mod-chevron { color: var(--muted); font-size: .8rem; transition: transform .2s; }
.mod-item.open .mod-chevron { transform: rotate(90deg); }
.mod-lessons { list-style: none; padding: 0 18px 12px 58px; display: none; }
.mod-item.open .mod-lessons { display: block; }
.mod-lessons li { font-size: .83rem; color: var(--muted); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.03); display: flex; align-items: center; gap: 7px; }
.mod-lessons li:last-child { border-bottom: none; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; cursor: pointer; font-size: .9rem; font-weight: 500; transition: background .15s; user-select: none; }
.faq-q:hover { background: rgba(240,180,41,.03); }
.faq-a { padding: 0 18px 14px; font-size: .86rem; color: var(--muted); line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════════
   LESSON PAGE
   ══════════════════════════════════════════ */
.lesson-topbar { background: var(--bg); border-bottom: 1px solid var(--border); padding: 10px 0; }
.lesson-topbar-inner { display: flex; align-items: center; justify-content: space-between; }
.lesson-bc { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--muted); }
.lesson-bc a { color: var(--gold); text-decoration: none; }
.lesson-bc .sep { color: rgba(255,255,255,.15); margin: 0 2px; }
.lesson-nav-btns { display: flex; gap: 8px; }
.lesson-nav-btn { padding: 6px 14px; border-radius: 6px; border: 1px solid var(--border); background: transparent; color: var(--muted); font-size: .8rem; font-family: inherit; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: all .15s; }
.lesson-nav-btn:hover { border-color: var(--gold); color: var(--gold); }
.lesson-nav-btn.disabled { opacity: .35; pointer-events: none; }
.lesson-video { background: var(--bg-light); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; position: relative; padding-bottom: 56.25%; height: 0; margin-bottom: 32px; }
.lesson-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.lesson-outcomes { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 22px; margin-bottom: 24px; }
.lesson-outcomes ul { list-style: none; }
.lesson-outcomes ul li { font-size: .88rem; color: var(--muted); padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.6; }
.lesson-downloads { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 22px; margin-bottom: 32px; }
.dl-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.dl-item:last-child { border-bottom: none; }
.dl-icon { width: 38px; height: 38px; border-radius: 8px; background: rgba(240,180,41,.08); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.dl-btn { padding: 6px 12px; border-radius: 5px; border: 1px solid var(--border); background: transparent; color: var(--gold); font-size: .78rem; font-weight: 600; text-decoration: none; transition: all .15s; }
.dl-btn:hover { background: var(--gold-glow); border-color: var(--gold); }

/* ══════════════════════════════════════════
   COACHING
   ══════════════════════════════════════════ */
.coaching-grid { display: grid; grid-template-columns: 1fr 420px; gap: 52px; align-items: start; }
.coaching-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.coaching-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 14px; }
.coaching-card ul { list-style: none; margin-bottom: 16px; }
.coaching-card ul li { font-size: .86rem; color: var(--muted); padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.6; }
.coaching-card ul li::before { content: '✓'; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 52px; align-items: start; }

/* ══════════════════════════════════════════
   PORTAL
   ══════════════════════════════════════════ */
.portal-courses { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; }
.p-course { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all .25s; }
.p-course:hover { border-color: var(--gold); transform: translateY(-2px); }
.p-course.locked { opacity: .55; }
.p-img { height: 140px; background: var(--bg-light); position: relative; overflow: hidden; }
.p-img img { width: 100%; height: 100%; object-fit: cover; }
.lock-overlay { position: absolute; inset: 0; background: rgba(30,36,51,.7); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.prog-bar { height: 6px; background: rgba(255,255,255,.06); border-radius: 3px; overflow: hidden; margin-bottom: 4px; }
.prog-fill { height: 100%; background: var(--gold); border-radius: 3px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.quick-card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 18px; text-align: center; transition: all .2s; text-decoration: none; color: var(--white); display: block; }
.quick-card:hover { border-color: var(--gold); transform: translateY(-2px); color: var(--white); }

/* ══════════════════════════════════════════
   ARTICLES LISTING / SINGLE POST
   ══════════════════════════════════════════ */
.articles-layout { display: grid; grid-template-columns: 1fr 280px; gap: 44px; align-items: start; }
.article-card { display: grid; grid-template-columns: 180px 1fr; gap: 0; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--card); margin-bottom: 16px; transition: all .2s; text-decoration: none; color: var(--white); }
.article-card:hover { border-color: var(--gold); box-shadow: 0 6px 20px rgba(0,0,0,.2); transform: translateY(-1px); color: var(--white); }
.article-thumb { min-height: 130px; position: relative; overflow: hidden; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-body { padding: 18px 20px; display: flex; flex-direction: column; justify-content: center; }
.a-sidebar { position: sticky; top: 80px; }
.sb-card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 14px; }
.sb-card-head { padding: 11px 16px; background: rgba(240,180,41,.08); border-bottom: 1px solid var(--border); }
.sb-card-head h5 { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin: 0; }
.sb-card-body { padding: 16px; }
.freebie-head { background: linear-gradient(135deg, var(--bg-light), var(--bg)); padding: 16px; border-bottom: 1px solid var(--border); }
.freebie-badge { display: inline-block; background: rgba(240,180,41,.15); border: 1px solid rgba(240,180,41,.3); color: var(--gold); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 2px 8px; border-radius: 12px; margin-bottom: 8px; }
.la-item { display: flex; gap: 10px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.04); margin-bottom: 10px; }
.la-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.la-thumb { width: 48px; height: 48px; border-radius: 6px; flex-shrink: 0; overflow: hidden; background: var(--bg-light); }
.la-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Single post content */
.single-layout { display: grid; grid-template-columns: 1fr 280px; gap: 44px; align-items: start; }
.article-content { font-size: .95rem; color: rgba(244,240,235,.85); line-height: 1.85; }
.article-content p { margin-bottom: 18px; }
.article-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--white); margin: 32px 0 12px; }
.article-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin: 24px 0 10px; }
.article-content ul, .article-content ol { margin: 0 0 18px 20px; color: var(--muted); }
.article-content li { margin-bottom: 6px; font-size: .92rem; }
.article-content blockquote { border-left: 3px solid var(--gold); padding: 14px 18px; background: rgba(240,180,41,.04); border-radius: 0 8px 8px 0; margin: 24px 0; font-style: italic; color: var(--muted); font-size: .92rem; line-height: 1.75; }
.article-content img { border-radius: 10px; margin: 20px 0; }
.article-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.atag { padding: 3px 10px; background: rgba(240,180,41,.06); border: 1px solid var(--border); border-radius: 16px; font-size: .74rem; color: var(--muted); }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.eit-footer { background: var(--bg-mid); border-top: 1px solid var(--border); padding: 48px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--muted); font-size: .84rem; line-height: 1.7; max-width: 240px; margin-bottom: 14px; }
.footer-col h5 { font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { color: var(--muted); font-size: .84rem; transition: color .15s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 18px; flex-wrap: wrap; gap: 12px;
}
.copy { font-size: .74rem; color: var(--muted); }
.disclaimer { font-size: .68rem; color: rgba(109,129,150,.4); line-height: 1.7; max-width: 700px; margin-top: 14px; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 60px 20px; }
  .hero-img-stack { display: none; }
  .courses-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid::after { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .bundle-banner { flex-direction: column; text-align: center; }
  .enrol-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .coaching-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .portal-courses { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-layout { grid-template-columns: 1fr; }
  .single-layout { grid-template-columns: 1fr; }
  .article-card { grid-template-columns: 1fr; }
  .eit-nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 16px; border-bottom: 1px solid var(--border); }
  .eit-nav-links.open { display: flex; }
  .eit-hamburger { display: flex; }
  .eit-navbar-inner { padding: 0 20px; }
  .eit-dropdown { position: static; transform: none; box-shadow: none; margin-top: 0; border: none; background: rgba(255,255,255,.03); border-radius: 8px; }
  .eit-dropdown::before { display: none; }
  .has-dropdown:hover .eit-dropdown { display: none; }
  .has-dropdown.open .eit-dropdown { display: block; }
  .eit-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .how-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
