* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: #0f0f0f;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

* { color: #fff; }

a { color: inherit; text-decoration: none; }

/* ─── LOGO IMAGE ─── */
.nav-logo-img { height: 22px; width: auto; display: block; }
.footer-logo-img { height: 22px; width: auto; display: block; margin-bottom: 10px; }

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #fff;
  flex-shrink: 0;
}

/* ─── MOBILE NAV DROPDOWN ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: #111;
  border-bottom: 1px solid #222;
  z-index: 99;
  padding: 8px 0 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 13px 28px;
  font-size: 14.5px;
  color: #ccc;
  font-weight: 500;
  border-bottom: 1px solid #1a1a1a;
  transition: color 0.12s, background 0.12s;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: #fff; background: #1a1a1a; }

.mobile-nav-cta {
  margin: 10px 20px 0 !important;
  border: none !important;
  background: #fff !important;
  color: #0f0f0f !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  text-align: center;
  padding: 13px 28px !important;
}

.mobile-nav-cta:hover { background: #e8e8e8 !important; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 56px;
  background: #0f0f0f;
  border-bottom: 1px solid #222;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-logo-icon {
  width: 26px; height: 26px;
  background: #21759b;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  color: #777;
  transition: color 0.15s;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  background: #fff;
  color: #0f0f0f;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.15s;
}

.nav-cta:hover { background: #ddd; }

/* ─── LAYOUT ─── */
.layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  max-width: 1200px;
  margin: 56px auto 0;
  align-items: start;
}

.left {}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 20px 40px 0;
  font-size: 13px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─── HERO ─── */
.hero {
  padding: 20px 40px 40px;
  border-bottom: 1px solid #222;
}

.hero h1 {
  font-size: clamp(38px, 4.8vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  max-width: 480px;
}

.hero-desc {
  font-size: 15px;
  color: #ccc;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 400;
}

.stats-bar {
  display: flex;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  margin-bottom: 32px;
}

.stat {
  flex: 1;
  padding: 14px 0 14px 20px;
  border-right: 1px solid #222;
}

.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }

.stat-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #fff;
  font-weight: 600;
  margin-bottom: 3px;
}

.stat-val {
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
}

/* ─── BROWSER MOCKUP ─── */
.app-preview {
  border: 1px solid #222;
  border-radius: 10px;
  overflow: hidden;
  background: #141414;
}

.app-bar {
  background: #1e1e1e;
  height: 34px;
  border-bottom: 1px solid #222;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 6px;
}

.app-dot { width: 10px; height: 10px; border-radius: 50%; }
.app-dot.r { background: #ff5f57; }
.app-dot.y { background: #febc2e; }
.app-dot.g { background: #28c840; }

.app-url {
  margin: 0 auto;
  background: #2a2a2a;
  border-radius: 4px;
  padding: 3px 16px;
  font-size: 11.5px;
  color: #555;
  font-family: monospace;
}

.app-inner {
  display: grid;
  grid-template-columns: 175px 1fr;
  height: 195px;
}

.app-sidebar {
  border-right: 1px solid #222;
  padding: 14px 10px;
}

.app-sidebar-title {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #555;
  padding: 5px 7px;
  border-radius: 4px;
  margin-bottom: 1px;
}

.app-item.active { background: #222; color: #ddd; }

.app-dot-sm { width: 5px; height: 5px; border-radius: 50%; background: #333; flex-shrink: 0; }
.app-item.active .app-dot-sm { background: #21759b; }

.app-content { padding: 16px; }
.app-content-title { font-size: 12.5px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.app-content-sub { font-size: 11px; color: #555; margin-bottom: 14px; }

.week-pills { display: flex; flex-wrap: wrap; gap: 5px; }

.wpill {
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 4px 9px;
  font-size: 10.5px;
  color: #666;
  font-weight: 500;
}

.wpill.active {
  background: rgba(33, 117, 155, 0.12);
  border-color: rgba(33, 117, 155, 0.35);
  color: #5ab4d4;
}

/* ─── SECTIONS ─── */
.section { padding: 36px 40px; border-bottom: 1px solid #222; }

.section-title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 13px;
  color: #555;
  margin-bottom: 22px;
  line-height: 1.5;
}

/* ─── ABOUT ─── */
.about-text {
  font-size: 14.5px;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-text:last-child { margin-bottom: 0; }
.about-text strong { color: #ddd; font-weight: 600; }

/* ─── WHO IS THIS FOR ─── */
.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.for-card {
  background: #141414;
  border: 1px solid #222;
  border-radius: 7px;
  padding: 18px;
}

.for-card-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.for-card-label.good { color: #4ade80; }
.for-card-label.bad  { color: #f87171; }

.for-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.for-list li {
  font-size: 13px;
  color: #bbb;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.45;
}

.for-list li svg { flex-shrink: 0; margin-top: 2px; }

/* ─── WHAT YOU'LL LEARN ─── */
.learn-box {
  background: #141414;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 22px 22px 6px;
}

.learn-list { list-style: none; }

.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #1c1c1c;
  font-size: 13.5px;
  color: #ddd;
}

.learn-item:last-child { border-bottom: none; padding-bottom: 4px; }
.learn-item svg { flex-shrink: 0; margin-top: 2px; color: #21759b; }

/* ─── CURRICULUM ─── */
.curr-meta {
  font-size: 12.5px;
  color: #555;
  margin-bottom: 18px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.curr-meta span { margin-right: 6px; }
.curr-meta span + span::before { content: '· '; color: #333; }

.accordion {
  border: 1px solid #222;
  border-radius: 8px;
  overflow: hidden;
}

.acc-item { border-bottom: 1px solid #222; }
.acc-item:last-child { border-bottom: none; }

.acc-hd {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  cursor: pointer;
  background: #141414;
  transition: background 0.13s;
  user-select: none;
  gap: 12px;
}

.acc-hd:hover { background: #181818; }
.acc-item.open .acc-hd { background: #161616; }

.acc-title { font-size: 13.5px; font-weight: 600; color: #ddd; flex: 1; }
.acc-count { font-size: 12px; color: #555; white-space: nowrap; }

.acc-chev {
  width: 15px; height: 15px;
  color: #444;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.acc-item.open .acc-chev { transform: rotate(180deg); color: #666; }

.acc-body { display: none; background: #111; border-top: 1px solid #1c1c1c; }
.acc-item.open .acc-body { display: block; }

.acc-lesson {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 18px 11px 42px;
  border-bottom: 1px solid #181818;
  font-size: 13px;
  color: #bbb;
}

.acc-lesson:last-child { border-bottom: none; }

.play-btn {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #444;
}

/* ─── TOOLS ─── */
.tool-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: #141414;
  border: 1px solid #222;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: border-color 0.15s;
}

.tool-item:last-child { margin-bottom: 0; }
.tool-item:hover { border-color: #333; }

.tool-icon {
  width: 42px; height: 42px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.tool-name { font-size: 14.5px; font-weight: 600; color: #e0e0e0; margin-bottom: 3px; }
.tool-desc { font-size: 13px; color: #aaa; line-height: 1.55; }

/* ─── BONUSES ─── */
.bonus-list {
  border: 1px solid #222;
  border-radius: 8px;
  overflow: hidden;
}

.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid #222;
  background: #141414;
  transition: background 0.13s;
}

.bonus-item:last-child { border-bottom: none; }
.bonus-item:hover { background: #181818; }

.bonus-icon {
  width: 34px; height: 34px;
  border-radius: 7px;
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #21759b;
}

.bonus-title { font-size: 14px; font-weight: 600; color: #ddd; margin-bottom: 3px; }
.bonus-desc  { font-size: 13px; color: #aaa; line-height: 1.55; }

/* ─── FAQ ─── */
.faq-item {
  border-bottom: 1px solid #222;
  padding: 20px 0;
}

.faq-item:first-child { padding-top: 0; }
.faq-item:last-child  { border-bottom: none; padding-bottom: 0; }

.faq-q {
  font-size: 14px;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}

.faq-q svg { flex-shrink: 0; margin-top: 2px; color: #444; transition: transform 0.2s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: #666; }

.faq-a {
  font-size: 13.5px;
  color: #bbb;
  line-height: 1.75;
  display: none;
  padding-right: 24px;
}

.faq-item.open .faq-a { display: block; }

/* ─── INSTRUCTOR ─── */
.instructor-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.instructor-avi {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #2a2a2a;
}

.instructor-name { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.instructor-role { font-size: 13px; color: #555; margin-bottom: 8px; }

.instructor-clients { display: flex; flex-wrap: wrap; gap: 6px; }

.client-tag {
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  font-size: 11.5px;
  color: #666;
  padding: 3px 9px;
  font-weight: 500;
}

.instructor-bio {
  font-size: 14px;
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 12px;
}

.instructor-bio strong { color: #bbb; font-weight: 600; }

.instructor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #222;
  border-radius: 7px;
  overflow: hidden;
  margin-top: 22px;
}

.inst-stat {
  padding: 16px;
  border-right: 1px solid #222;
  text-align: center;
}

.inst-stat:last-child { border-right: none; }
.inst-stat-val   { font-size: 22px; font-weight: 700; color: #21759b; letter-spacing: -0.02em; margin-bottom: 2px; }
.inst-stat-label { font-size: 11px; color: #555; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; }

/* ─── SIDEBAR ─── */
.right {
  position: sticky;
  top: 56px;
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  padding: 24px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.right::-webkit-scrollbar { display: none; }

.checkout-card {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
}

.checkout-head {
  padding: 24px 22px 22px;
  border-bottom: 1px solid #222;
}

.checkout-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}

.price-lbl { font-size: 15px; color: #ccc; font-weight: 400; }

.price-amount {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
}

.enroll-btn {
  display: block;
  width: 100%;
  background: #fff;
  color: #0f0f0f;
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px;
  border-radius: 8px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.13s, transform 0.1s;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}

.enroll-btn:hover { background: #e8e8e8; transform: translateY(-1px); }

.checkout-note {
  font-size: 12px;
  color: #666;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 16px;
}

.pay-logos { display: flex; align-items: center; justify-content: center; gap: 6px; }

.pay-logo {
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 7px 11px;
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.includes { padding: 22px 22px; }

.includes-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 18px; letter-spacing: -0.01em; }

.inc-list { display: flex; flex-direction: column; gap: 18px; }

.inc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.inc-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #aaa;
}

.inc-title { font-size: 13.5px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.inc-desc  { font-size: 12.5px; color: #666; line-height: 1.5; }

/* ─── FOOTER CTA BANNER ─── */
.footer-cta {
  text-align: center;
  padding: 72px 40px 80px;
  border-top: 1px solid #222;
}

.footer-cta-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.fca {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid #0f0f0f;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: white;
  margin-left: -10px;
  flex-shrink: 0;
}

.fca:first-child { margin-left: 0; }

.footer-cta-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.footer-cta-sub {
  font-size: 16px;
  color: #555;
  margin-bottom: 28px;
}

.footer-cta-btn {
  display: inline-block;
  background: #fff;
  color: #0f0f0f;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  transition: background 0.15s, transform 0.1s;
}

.footer-cta-btn:hover { background: #e0e0e0; transform: translateY(-1px); }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid #222;
  background: #0a0a0a;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.footer-logo-icon {
  width: 24px; height: 24px;
  background: #21759b;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.footer-tagline {
  font-size: 12.5px;
  color: #555;
  line-height: 1.5;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: #ccc;
  transition: color 0.15s;
  line-height: 1.4;
}

.footer-links a:hover { color: #fff; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .layout { grid-template-columns: 1fr; }
  .left { border-right: none; }
  .right { position: static; max-height: none; border-top: 1px solid #222; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-cta { display: none; }
  .nav-logo-img { height: 20px; }
  .nav-inner { padding: 0 20px; }
  .for-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .hero, .section { padding-left: 20px; padding-right: 20px; }
  .breadcrumb { padding-left: 20px; }
  .stats-bar { flex-wrap: wrap; }
  .app-inner { height: auto; grid-template-columns: 1fr; }
  .app-sidebar { display: none; }
  .footer-inner { grid-template-columns: 1fr; padding: 32px 20px; }
  .footer-cta { padding: 48px 20px 56px; }
}
