/* ═══════════════════════════════════════════════════════════
   Axis Driving Courses — Global Stylesheet
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ─── Brand Colors ─── */
  --yellow: #EFC643;
  --yellow-dark: #d4ad2e;
  --yellow-light: #fdf6e0;
  --red: #234A7D;
  --red-dark: #1a3960;
  --red-light: #e8eef6;
  --charcoal: #1a2e4a;
  --dark: #132340;
  --mid: #3d5a80;
  --muted: #9ca3af;
  --border: #e5e7eb;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --white: #ffffff;

  /* ─── Spacing / Shapes ─── */
  --radius: 0px;
  --radius-lg: 0px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

p, li, .block-body, .benefit-text span, .faq-answer, .section-subtitle, .sidebar-checklist li {
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100% - 1160px) / 2));
  height: 72px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: var(--shadow); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--mid);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--charcoal); }

/* ─── Courses Dropdown ─── */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 4px; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
  padding: 8px;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mid);
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown li a:hover { background: var(--bg-alt); color: var(--charcoal); }
.nav-dropdown li + li { margin-top: 2px; }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 0;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.15s !important;
  box-shadow: 0 2px 12px rgba(35,74,125,0.28);
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 24px max(24px, calc((100% - 1160px) / 2));
  flex-direction: column;
  gap: 20px;
  z-index: 99;
  box-shadow: var(--shadow);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  text-decoration: none;
  color: var(--mid);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--charcoal); }

.mobile-dropdown-toggle { display: flex; align-items: center; gap: 4px; }
.mobile-dropdown-toggle svg { transition: transform 0.2s; }
.mobile-dropdown-toggle.open svg { transform: rotate(180deg); }

.mobile-sub {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding-left: 16px;
}
.mobile-sub.open { display: flex; }
.mobile-sub a { font-size: 0.9rem; font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════ */
.breadcrumb {
  padding: 90px max(24px, calc((100% - 1160px) / 2)) 0;
  background: var(--bg-alt);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.breadcrumb-inner a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.breadcrumb-inner a:hover { color: var(--red); }
.breadcrumb-inner span { color: var(--border); }
.breadcrumb-inner .current { color: var(--mid); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (course pages, about, contact, faq)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--bg-alt);
  padding: 32px max(24px, calc((100% - 1160px) / 2)) 64px;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.course-tag,
.page-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow-light);
  border: 1.5px solid rgba(239,198,67,0.3);
  border-radius: 0;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--yellow-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.page-hero h1 .code { color: var(--red); }

.page-hero p {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 620px;
}

/* ═══════════════════════════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════════════════════════ */
section { padding: 96px max(24px, calc((100% - 1160px) / 2)); }

.section-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--mid);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 52px;
}

/* ═══════════════════════════════════════════════════════════
   CONTENT BLOCKS (course pages)
   ═══════════════════════════════════════════════════════════ */
.content-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.block-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
}

.block-title {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  line-height: 1.2;
}

.block-body {
  font-size: 1.093rem;
  color: var(--mid);
  line-height: 1.75;
}

/* ─── Simple Bullet List ─── */
.simple-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.simple-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.093rem;
  color: var(--mid);
  line-height: 1.55;
}

.simple-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ─── Curriculum / Learn Grid ─── */
.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}

.learn-check {
  width: 22px;
  height: 22px;
  background: var(--yellow);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.learn-check svg { width: 11px; height: 11px; }

/* ─── Steps List ─── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--charcoal);
  flex-shrink: 0;
}

.step-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 3px;
}

.step-text span {
  font-size: 0.85rem;
  color: var(--mid);
  font-weight: 500;
  line-height: 1.5;
}

.notice-box {
  background: var(--yellow-light);
  border: 1.5px solid rgba(239,198,67,0.5);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b5000;
  line-height: 1.55;
}

/* ─── Details Table ─── */
.details-table {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.details-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--border);
}

.details-row:last-child { border-bottom: none; }

.details-key {
  padding: 16px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
}

.details-value {
  padding: 16px 20px;
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  align-items: center;
}

.badge-green {
  display: inline-flex;
  align-items: center;
  background: #ecfdf5;
  color: #059669;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 0;
}

.badge-yellow {
  display: inline-flex;
  align-items: center;
  background: var(--yellow-light);
  color: #6b5600;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 0;
}

/* ═══════════════════════════════════════════════════════════
   PAGE BODY / SIDEBAR LAYOUT (course pages)
   ═══════════════════════════════════════════════════════════ */
.page-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 56px max(24px, calc((100% - 1160px) / 2)) 96px;
  align-items: start;
}

.page-content { display: flex; flex-direction: column; gap: 48px; }

.page-sidebar { position: sticky; top: 88px; }

.sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.sidebar-card + .sidebar-card { margin-top: 20px; }

.sidebar-card h4 {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}

.sidebar-price-recap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.sidebar-price-amount {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--charcoal);
}

.sidebar-price-label { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

.sidebar-price-note {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 16px;
}

.sidebar-features { display: flex; flex-direction: column; gap: 10px; }

.sidebar-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
}

.sidebar-feature-icon {
  width: 28px;
  height: 28px;
  background: var(--yellow-light);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-feature-icon svg { width: 14px; height: 14px; color: var(--yellow-dark); }

.sidebar-contact { display: flex; flex-direction: column; gap: 12px; }

.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}

.sidebar-contact-item svg { color: var(--red); flex-shrink: 0; }

.sidebar-contact-item a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.sidebar-contact-item a:hover { color: var(--red); }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 0;
  font-weight: 800;
  font-size: 0.975rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(35,74,125,0.35);
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(35,74,125,0.42);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--charcoal);
  padding: 14px 28px;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.975rem;
  text-decoration: none;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--charcoal);
  padding: 16px 32px;
  border-radius: 0;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(239,198,67,0.4);
}

.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(239,198,67,0.5);
}

.btn-enroll {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--charcoal);
  padding: 16px 24px;
  border-radius: 0;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(239,198,67,0.4);
  margin-bottom: 12px;
}

.btn-enroll:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(239,198,67,0.5);
}

.btn-view-course {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid var(--yellow);
  border-radius: 0;
  padding: 9px 16px;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  align-self: flex-start;
}

.btn-view-course:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateX(2px);
}

.btn-view-course svg { width: 13px; height: 13px; flex-shrink: 0; }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--charcoal);
  padding: 15px 32px;
  border-radius: 0;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn-outline-dark:hover {
  border-color: var(--charcoal);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 14px 28px;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.975rem;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--charcoal);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 0;
  font-weight: 800;
  font-size: 0.975rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-dark:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--charcoal);
  padding: 14px 28px;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.975rem;
  text-decoration: none;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn-outline:hover {
  border-color: var(--charcoal);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
   BOTTOM CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.bottom-cta {
  background: var(--charcoal);
  padding: 72px max(24px, calc((100% - 1160px) / 2));
}

.bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.bottom-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 500px;
  line-height: 1.2;
}

.bottom-cta h2 span { color: var(--yellow); }

.bottom-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Override btn-primary inside bottom-cta to use yellow */
.bottom-cta .btn-primary {
  background: var(--yellow);
  color: var(--charcoal);
  box-shadow: 0 4px 18px rgba(239,198,67,0.4);
}

.bottom-cta .btn-primary:hover {
  background: var(--yellow-dark);
  box-shadow: 0 8px 28px rgba(239,198,67,0.5);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  background: #142744;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 36px max(24px, calc((100% - 1160px) / 2)) 28px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo img {
  height: 43px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.8);
}

.footer-center {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.footer-right {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-right a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-right a:hover { color: var(--yellow); }

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATION
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SHARED BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .page-body { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
  .mobile-hide { display: none; }
}

@media (max-width: 640px) {
  .breadcrumb { padding-top: 80px; }
  .learn-grid { grid-template-columns: 1fr; }
  .details-row { grid-template-columns: 130px 1fr; }
  .bottom-cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* Hide footer on contact page */
.page-contact footer { display: none; }

/* ═══════════════════════════════════════════════════════════
   MOBILE CTA (phone button in mobile menu)
   ═══════════════════════════════════════════════════════════ */
.mobile-cta {
  background: var(--red);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 8px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   BENEFITS GRID (shared across course pages)
   ═══════════════════════════════════════════════════════════ */
.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.benefit-item:hover {
  border-color: rgba(239,198,67,0.5);
  box-shadow: 0 2px 12px rgba(239,198,67,0.08);
}

.benefit-check {
  width: 26px;
  height: 26px;
  background: var(--yellow);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-check svg { width: 13px; height: 13px; }

.benefit-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.benefit-text span {
  font-size: 1.093rem;
  color: var(--mid);
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════
   NOTICE BOX (extended layout — shared across course pages)
   ═══════════════════════════════════════════════════════════ */
.notice-box-extended {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
}

.notice-box-extended svg { color: var(--yellow-dark); flex-shrink: 0; margin-top: 1px; }

.notice-box-extended p {
  font-size: 0.875rem;
  color: #6b5000;
  font-weight: 600;
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════
   BLOG POST STYLES (shared across blog article pages)
   ═══════════════════════════════════════════════════════════ */
.blog-post-body {
  padding: 72px max(24px, calc((100% - 760px) / 2)) 96px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.blog-post-meta span { color: var(--border); }

.blog-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-content h2 {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  line-height: 1.2;
  margin-top: 40px;
  margin-bottom: 16px;
}

.blog-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-top: 28px;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 0.975rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-content ul, .blog-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.blog-content li {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 6px;
}

.blog-content strong { color: var(--charcoal); }

.blog-content a {
  color: var(--red);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}

.blog-content a:hover { color: var(--red-dark); }

.blog-cta-box {
  margin-top: 48px;
  padding: 36px 32px;
  background: var(--charcoal);
  border-radius: var(--radius-lg);
}

.blog-cta-box h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  margin-top: 0;
}

.blog-cta-box h3 span { color: var(--yellow); }

.blog-cta-box p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-cta-box .btn-yellow { border-radius: 10px; }

/* ═══════════════════════════════════════════════════════════
   PRICE DISPLAY HELPERS (inline style replacements)
   ═══════════════════════════════════════════════════════════ */
.price-strikethrough {
  text-decoration: line-through;
  color: #aaa;
  margin-right: 10px;
}

.price-hero-note {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 8px;
}

.price-table-value {
  font-size: 1.2rem;
  font-weight: 900;
}

.price-table-old {
  text-decoration: line-through;
  color: #aaa;
  font-size: 0.95rem;
  font-weight: 600;
}

.sidebar-checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--mid);
}

.sidebar-checklist li svg { flex-shrink: 0; }

.sidebar-price-note {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  margin: 6px 0 20px 0;
}

.sidebar-price-old {
  text-decoration: line-through;
  color: #aaa;
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════
   UTILITY CLASSES (extracted from inline styles)
   ═══════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mb-20 { margin-bottom: 20px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.mt-20 { margin-top: 20px; }
.max-w-320 { max-width: 320px; }

.price-table-plain {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--charcoal);
}

.sidebar-hours-note {
  font-size: 0.78rem;
  color: var(--muted);
  padding-top: 4px;
}

.sidebar-hours-text {
  color: var(--muted);
  font-weight: 500;
}

.faq-body-text {
  font-size: 0.975rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 680px;
}
