:root {
  --black: #050505;
  --charcoal: #111;
  --card: #181818;
  --gold: #d7a32d;
  --gold2: #f0c45a;
  --red: #d41111;
  --white: #fff;
  --muted: #bdbdbd;
  --light: #f5f5f5;
  --border: rgba(255,255,255,0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 2%;
  right: 2%;
  z-index: 1000;
  height: 86px;
  background: rgba(0,0,0,0.94);
  border: 1px solid var(--border);
  border-radius: 0 0 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--gold);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 30px;
  font-weight: 900;
  background: #070707;
}

.brand-name {
  color: var(--gold);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1;
}

.brand-subtitle {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 900;
}

.desktop-nav {
  display: flex;
  gap: 24px;
}

.desktop-nav a {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.desktop-nav a:hover {
  color: var(--red);
}

.book-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.menu-btn {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 92px;
  left: 5%;
  right: 5%;
  background: #080808;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  z-index: 999;
  flex-direction: column;
}

.mobile-menu a {
  padding: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.hero {
  min-height: 730px;
  padding: 180px 6% 90px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.98), rgba(0,0,0,0.72), rgba(0,0,0,0.5)),
    radial-gradient(circle at 75% 40%, rgba(215,163,45,0.25), transparent 35%),
    url('https://images.unsplash.com/photo-1560179707-f14e90ef3623?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
}

.kicker {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.4px;
  font-size: 13px;
  margin-bottom: 12px;
}

.red-text {
  color: var(--red);
}

.gold-text {
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 22px;
}

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

.hero-text {
  font-size: 19px;
  max-width: 650px;
  color: #eee;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
}

.btn.red {
  background: linear-gradient(135deg, var(--red), #9b0000);
  color: white;
}

.btn.outline {
  border: 1px solid var(--gold);
  background: rgba(0,0,0,0.35);
}

.feature-panel {
  justify-self: end;
  width: min(380px, 100%);
  background: rgba(20,20,20,0.78);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(12px);
}

.feature-panel div {
  padding: 14px 0;
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.feature-panel div::before {
  content: "✓ ";
  color: var(--gold);
}

.stats {
  background: var(--light);
  color: #111;
  padding: 28px 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats div {
  border-right: 1px solid #d2d2d2;
}

.stats strong {
  display: block;
  font-size: 32px;
}

.stats span {
  font-size: 14px;
}

.section {
  padding: 80px 6%;
}

.light {
  background: var(--light);
  color: #111;
}

.dark {
  background: var(--black);
  color: var(--white);
}

.section h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-heading {
  margin-bottom: 36px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.course-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ddd;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.course-img {
  height: 210px;
  background-size: cover;
  background-position: center;
}

.img-one {
  background-image: url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=900&q=80');
}

.img-two {
  background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=900&q=80');
}

.img-three {
  background-image: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80');
}

.course-body {
  padding: 22px;
}

.course-body h3 {
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 10px;
}

.course-body p {
  color: #333;
  margin-bottom: 14px;
}

.course-body strong {
  color: var(--red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}

.course-body button {
  background: transparent;
  border: 0;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.dark p {
  color: var(--muted);
  max-width: 800px;
  margin-bottom: 22px;
}

.ai-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 26px 0;
}

.ai-list div,
.dashboard-grid div {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

.ai-card {
  text-align: center;
  background: radial-gradient(circle at center, rgba(0,167,255,0.28), transparent 42%), #101010;
  border: 1px solid rgba(215,163,45,0.35);
  border-radius: 24px;
  padding: 36px;
}

.mic {
  width: 150px;
  height: 150px;
  border: 3px solid #00a7ff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  font-size: 64px;
  box-shadow: 0 0 40px rgba(0,167,255,0.6);
}

.bar {
  height: 12px;
  background: #292929;
  border-radius: 20px;
  overflow: hidden;
  margin: 20px 0;
}

.bar div {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.dashboard-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.dashboard-grid h3 {
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.resource-grid div {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 22px;
  font-weight: 900;
}

.center {
  text-align: center;
}

.share-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.share-buttons button {
  background: #151515;
  border: 1px solid var(--gold);
  color: white;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.contact {
  background: #fff;
  color: #111;
}

.whatsapp {
  display: inline-flex;
  background: #25d366;
  color: white;
  padding: 15px 22px;
  border-radius: 8px;
  font-weight: 900;
}

form {
  display: grid;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 140px;
}

form button {
  background: var(--red);
  color: white;
  border: 0;
  padding: 17px;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

footer {
  background: #030303;
  border-top: 1px solid var(--border);
  padding: 50px 6% 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--muted);
}

.bottom-nav {
  display: none;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .book-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero,
  .two-col,
  .cards,
  .dashboard-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    justify-self: start;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    left: 0;
    right: 0;
    border-radius: 0;
    padding: 0 18px;
  }

  .brand-name {
    font-size: 23px;
  }

  .brand-subtitle {
    font-size: 10px;
  }

  .brand-icon {
    width: 46px;
    height: 46px;
  }

  .hero {
    padding: 130px 5% 60px;
    min-height: 720px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .btn {
    width: 100%;
  }

  .feature-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    padding: 16px;
  }

  .feature-panel div {
    font-size: 11px;
    text-align: center;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 14px;
  }

  .section {
    padding: 60px 5%;
  }

  .ai-list {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 66px;
    background: #050505;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    z-index: 1000;
  }

  .bottom-nav a {
    display: grid;
    place-items: center;
    font-size: 12px;
  }
}

/* ===== PHASE 1B VISUAL BRANDING UPGRADE ===== */

.brand-logo {
  width: 235px;
  max-height: 72px;
  object-fit: contain;
  display: block;
}

.site-header {
  box-shadow: 0 18px 45px rgba(0,0,0,0.38);
}

.hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.98), rgba(0,0,0,0.82), rgba(0,0,0,0.42)),
    radial-gradient(circle at 70% 40%, rgba(215,163,45,0.22), transparent 34%),
    url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.32) 100%),
    radial-gradient(circle at 18% 30%, rgba(212,17,17,0.18), transparent 22%);
}

.hero-content,
.feature-panel {
  position: relative;
  z-index: 2;
}

.feature-panel {
  border: 1px solid rgba(215,163,45,0.45);
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
}

.feature-panel div::before {
  content: "◆ ";
  color: var(--gold);
}

.course-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.15);
}

.ai-card {
  position: relative;
  overflow: hidden;
}

.ai-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg, transparent, rgba(0,167,255,0.26), transparent, rgba(215,163,45,0.2), transparent);
  animation: alphaSpin 8s linear infinite;
}

.ai-card > * {
  position: relative;
  z-index: 2;
}

@keyframes alphaSpin {
  to {
    transform: rotate(360deg);
  }
}

.report-preview {
  background: radial-gradient(circle at 82% 20%, rgba(215,163,45,0.17), transparent 35%), #050505;
  color: white;
}

.report-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.report-copy p {
  color: var(--muted);
  max-width: 780px;
}

.report-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.report-points div {
  background: #151515;
  border: 1px solid rgba(215,163,45,0.28);
  border-radius: 14px;
  padding: 18px;
  font-weight: 800;
}

.report-points div::before {
  content: "✓ ";
  color: var(--gold);
}

.report-card-preview {
  background: linear-gradient(145deg, #ffffff, #f4f4f4);
  color: #111;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 26px 80px rgba(0,0,0,0.55);
  border: 1px solid rgba(215,163,45,0.38);
}

.report-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 18px;
  margin-bottom: 22px;
}

.report-card-header img {
  width: 210px;
  max-width: 60%;
  object-fit: contain;
}

.report-card-header span {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  text-align: right;
}

.score-circle {
  width: 145px;
  height: 145px;
  margin: 10px auto 20px;
  border-radius: 50%;
  border: 10px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: 38px;
  font-weight: 900;
  color: var(--red);
  background: white;
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

.report-card-preview h3 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.report-card-preview p {
  text-align: center;
  color: #333;
}

.report-bars {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.report-bars div {
  background: #e7e7e7;
  border-radius: 999px;
  height: 34px;
  overflow: hidden;
  position: relative;
}

.report-bars span {
  position: absolute;
  left: 14px;
  top: 7px;
  z-index: 2;
  font-size: 12px;
  font-weight: 900;
}

.report-bars b {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 999px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 86px;
  z-index: 1500;
  background: #25d366;
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.5);
}

.footer-logo,
footer .brand-logo {
  width: 190px;
}

footer {
  align-items: center;
}

@media (max-width: 1100px) {
  .brand-logo {
    width: 205px;
  }

  .report-wrap {
    grid-template-columns: 1fr;
  }

  .report-card-preview {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 168px;
    max-height: 58px;
  }

  .site-header {
    height: 76px;
  }

  .mobile-menu {
    top: 82px;
  }

  .hero {
    padding-top: 116px;
  }

  .report-points {
    grid-template-columns: 1fr;
  }

  .report-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .report-card-header img {
    width: 100%;
    max-width: 250px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 78px;
    padding: 12px 16px;
    font-size: 13px;
  }

  footer .brand-logo {
    width: 165px;
  }
}

/* ===== PHASE 1C HEADER, CONTACT AND LAYOUT POLISH ===== */

.site-header {
  height: 76px;
  left: 3%;
  right: 3%;
  padding: 0 26px;
  border-radius: 0 0 14px 14px;
}

.brand-logo {
  width: 205px;
  max-height: 58px;
}

.desktop-nav {
  gap: 18px;
}

.desktop-nav a {
  font-size: 11px;
}

.book-btn {
  padding: 12px 20px;
  font-size: 11px;
}

.hero {
  padding-top: 150px;
}

.section {
  scroll-margin-top: 100px;
}

#contact {
  scroll-margin-top: 120px;
}

.contact {
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact .two-col {
  align-items: start;
}

.contact form {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.08);
}

.contact input,
.contact select,
.contact textarea {
  background: #fafafa;
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  outline: 2px solid rgba(215,163,45,0.35);
  border-color: var(--gold);
  background: #fff;
}

.course-card {
  min-height: 100%;
}

.course-body {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.course-body button {
  margin-top: auto;
  align-self: flex-start;
}

.report-card-preview {
  transform: translateY(0);
}

.dashboard-grid div {
  min-height: 145px;
}

.resource-grid div {
  min-height: 78px;
}

footer {
  padding-top: 42px;
  padding-bottom: 110px;
}

footer p {
  max-width: 360px;
  font-size: 13px;
}

footer .brand-logo {
  width: 165px;
}

.floating-whatsapp {
  bottom: 28px;
}

@media (max-width: 1100px) {
  .site-header {
    left: 0;
    right: 0;
    border-radius: 0;
  }

  .brand-logo {
    width: 185px;
  }

  .hero {
    padding-top: 125px;
  }

  .contact {
    padding-top: 80px;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 72px;
    padding: 0 14px;
  }

  .brand-logo {
    width: 145px;
    max-height: 48px;
  }

  .menu-btn {
    padding: 8px 11px;
    font-size: 12px;
  }

  .hero {
    padding-top: 105px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .contact form {
    padding: 20px;
  }

  .floating-whatsapp {
    bottom: 76px;
  }

  footer {
    padding-bottom: 95px;
  }
}

/* ===== PHASE 1C HEADER, CONTACT AND LAYOUT POLISH ===== */

.site-header {
  height: 76px;
  left: 3%;
  right: 3%;
  padding: 0 26px;
  border-radius: 0 0 14px 14px;
}

.brand-logo {
  width: 205px;
  max-height: 58px;
}

.desktop-nav {
  gap: 18px;
}

.desktop-nav a {
  font-size: 11px;
}

.book-btn {
  padding: 12px 20px;
  font-size: 11px;
}

.hero {
  padding-top: 150px;
}

.section {
  scroll-margin-top: 100px;
}

#contact {
  scroll-margin-top: 120px;
}

.contact {
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact .two-col {
  align-items: start;
}

.contact form {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.08);
}

.contact input,
.contact select,
.contact textarea {
  background: #fafafa;
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  outline: 2px solid rgba(215,163,45,0.35);
  border-color: var(--gold);
  background: #fff;
}

.course-card {
  min-height: 100%;
}

.course-body {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.course-body button {
  margin-top: auto;
  align-self: flex-start;
}

.report-card-preview {
  transform: translateY(0);
}

.dashboard-grid div {
  min-height: 145px;
}

.resource-grid div {
  min-height: 78px;
}

footer {
  padding-top: 42px;
  padding-bottom: 110px;
}

footer p {
  max-width: 360px;
  font-size: 13px;
}

footer .brand-logo {
  width: 165px;
}

.floating-whatsapp {
  bottom: 28px;
}

@media (max-width: 1100px) {
  .site-header {
    left: 0;
    right: 0;
    border-radius: 0;
  }

  .brand-logo {
    width: 185px;
  }

  .hero {
    padding-top: 125px;
  }

  .contact {
    padding-top: 80px;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 72px;
    padding: 0 14px;
  }

  .brand-logo {
    width: 145px;
    max-height: 48px;
  }

  .menu-btn {
    padding: 8px 11px;
    font-size: 12px;
  }

  .hero {
    padding-top: 105px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .contact form {
    padding: 20px;
  }

  .floating-whatsapp {
    bottom: 76px;
  }

  footer {
    padding-bottom: 95px;
  }
}

/* ===== PHASE 2A SEPARATE PAGES ===== */

.page-hero {
  min-height: 430px;
  padding: 150px 6% 80px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.96), rgba(0,0,0,0.78), rgba(0,0,0,0.44)),
    radial-gradient(circle at 76% 25%, rgba(215,163,45,0.22), transparent 32%),
    url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  color: white;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 960px;
  margin-bottom: 18px;
}

.page-hero p {
  max-width: 780px;
  color: #eeeeee;
}

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  background: var(--red);
  color: white;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.training-pathway {
  display: grid;
  gap: 35px;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pathway-grid div {
  background: #151515;
  border: 1px solid rgba(215,163,45,0.28);
  border-radius: 16px;
  padding: 24px;
}

.pathway-grid span {
  color: var(--gold);
  font-weight: 900;
  font-size: 30px;
}

.pathway-grid h3 {
  text-transform: uppercase;
  margin: 10px 0;
}

.about-copy p {
  color: #333;
  margin-bottom: 18px;
}

.about-card {
  background: #111;
  color: white;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(215,163,45,0.3);
}

.about-card h3 {
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-card p {
  color: var(--muted);
}

.dark-stats {
  background: transparent;
  color: white;
  padding: 0;
}

.dark-stats div {
  border-right: 1px solid rgba(255,255,255,0.18);
}

.dark-stats strong,
.dark-stats span {
  color: white;
}

.page-contact {
  padding-top: 90px;
}

.login-wrap {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 50px;
  align-items: center;
}

.login-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.1);
}

.login-card img {
  width: 240px;
  max-width: 100%;
  margin-bottom: 22px;
}

.login-card button {
  background: var(--red);
  color: white;
  border: 0;
  border-radius: 8px;
  padding: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.login-card p {
  color: #555;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .pathway-grid,
  .login-wrap {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 125px;
  }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 360px;
    padding: 112px 5% 55px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .pathway-grid {
    grid-template-columns: 1fr;
  }

  .login-card {
    padding: 22px;
  }
}

/* ===== PHASE 2B SEPARATE PAGE STYLING FIX ===== */

body {
  padding-top: 0 !important;
}

.page-hero {
  min-height: 500px !important;
  padding: 165px 6% 95px !important;
  display: flex !important;
  align-items: flex-end !important;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.98), rgba(0,0,0,0.82), rgba(0,0,0,0.52)),
    radial-gradient(circle at 78% 25%, rgba(215,163,45,0.24), transparent 34%),
    url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?auto=format&fit=crop&w=1800&q=80') !important;
  background-size: cover !important;
  background-position: center !important;
  color: #ffffff !important;
  position: relative !important;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,17,17,0.16), transparent 24%),
    linear-gradient(180deg, transparent, rgba(0,0,0,0.28));
  pointer-events: none;
}

.page-hero > div {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.page-hero .kicker {
  color: var(--gold) !important;
  font-size: 13px !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 14px !important;
}

.page-hero h1 {
  color: #ffffff !important;
  font-size: clamp(42px, 6vw, 78px) !important;
  line-height: 1.04 !important;
  text-transform: uppercase !important;
  max-width: 980px !important;
  margin-bottom: 20px !important;
  font-weight: 900 !important;
}

.page-hero p {
  color: #eeeeee !important;
  max-width: 780px !important;
  font-size: 18px !important;
}

.pathway-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin-top: 34px !important;
}

.pathway-grid div {
  background: linear-gradient(145deg, #171717, #090909) !important;
  border: 1px solid rgba(215,163,45,0.35) !important;
  border-radius: 18px !important;
  padding: 26px !important;
  box-shadow: 0 20px 55px rgba(0,0,0,0.28) !important;
  min-height: 210px !important;
}

.pathway-grid span {
  display: inline-flex !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(215,163,45,0.12) !important;
  border: 1px solid rgba(215,163,45,0.42) !important;
  color: var(--gold) !important;
  font-weight: 900 !important;
  margin-bottom: 18px !important;
}

.pathway-grid h3 {
  color: #ffffff !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
}

.pathway-grid p {
  color: var(--muted) !important;
}

.training-pathway > div:first-child p {
  color: var(--muted) !important;
  max-width: 860px !important;
}

.training-pathway h2 {
  color: #ffffff !important;
}

.course-body .mini-btn,
.mini-btn {
  display: inline-flex !important;
  width: fit-content !important;
  background: var(--red) !important;
  color: #ffffff !important;
  padding: 12px 16px !important;
  border-radius: 8px !important;
  text-transform: uppercase !important;
  font-weight: 900 !important;
  font-size: 12px !important;
  margin-top: auto !important;
}

.course-body a.mini-btn {
  color: #ffffff !important;
}

.site-header {
  z-index: 3000 !important;
}

.section {
  position: relative;
}

.section.dark {
  overflow: hidden;
}

.section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 15%, rgba(215,163,45,0.10), transparent 30%);
  pointer-events: none;
}

.section.dark > * {
  position: relative;
  z-index: 2;
}

footer {
  position: relative;
  z-index: 2;
}

@media (max-width: 1100px) {
  .pathway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .page-hero {
    min-height: 430px !important;
    padding-top: 135px !important;
  }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 390px !important;
    padding: 112px 5% 60px !important;
  }

  .page-hero h1 {
    font-size: 34px !important;
  }

  .page-hero p {
    font-size: 15px !important;
  }

  .pathway-grid {
    grid-template-columns: 1fr !important;
  }

  .pathway-grid div {
    min-height: auto !important;
  }
}

/* ===== PHASE 2B SEPARATE PAGE STYLING FIX ===== */

body {
  padding-top: 0 !important;
}

.page-hero {
  min-height: 500px !important;
  padding: 165px 6% 95px !important;
  display: flex !important;
  align-items: flex-end !important;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.98), rgba(0,0,0,0.82), rgba(0,0,0,0.52)),
    radial-gradient(circle at 78% 25%, rgba(215,163,45,0.24), transparent 34%),
    url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?auto=format&fit=crop&w=1800&q=80') !important;
  background-size: cover !important;
  background-position: center !important;
  color: #ffffff !important;
  position: relative !important;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,17,17,0.16), transparent 24%),
    linear-gradient(180deg, transparent, rgba(0,0,0,0.28));
  pointer-events: none;
}

.page-hero > div {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.page-hero .kicker {
  color: var(--gold) !important;
  font-size: 13px !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 14px !important;
}

.page-hero h1 {
  color: #ffffff !important;
  font-size: clamp(42px, 6vw, 78px) !important;
  line-height: 1.04 !important;
  text-transform: uppercase !important;
  max-width: 980px !important;
  margin-bottom: 20px !important;
  font-weight: 900 !important;
}

.page-hero p {
  color: #eeeeee !important;
  max-width: 780px !important;
  font-size: 18px !important;
}

.pathway-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin-top: 34px !important;
}

.pathway-grid div {
  background: linear-gradient(145deg, #171717, #090909) !important;
  border: 1px solid rgba(215,163,45,0.35) !important;
  border-radius: 18px !important;
  padding: 26px !important;
  box-shadow: 0 20px 55px rgba(0,0,0,0.28) !important;
  min-height: 210px !important;
}

.pathway-grid span {
  display: inline-flex !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(215,163,45,0.12) !important;
  border: 1px solid rgba(215,163,45,0.42) !important;
  color: var(--gold) !important;
  font-weight: 900 !important;
  margin-bottom: 18px !important;
}

.pathway-grid h3 {
  color: #ffffff !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
}

.pathway-grid p {
  color: var(--muted) !important;
}

.training-pathway > div:first-child p {
  color: var(--muted) !important;
  max-width: 860px !important;
}

.training-pathway h2 {
  color: #ffffff !important;
}

.course-body .mini-btn,
.mini-btn {
  display: inline-flex !important;
  width: fit-content !important;
  background: var(--red) !important;
  color: #ffffff !important;
  padding: 12px 16px !important;
  border-radius: 8px !important;
  text-transform: uppercase !important;
  font-weight: 900 !important;
  font-size: 12px !important;
  margin-top: auto !important;
}

.course-body a.mini-btn {
  color: #ffffff !important;
}

.site-header {
  z-index: 3000 !important;
}

.section {
  position: relative;
}

.section.dark {
  overflow: hidden;
}

.section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 15%, rgba(215,163,45,0.10), transparent 30%);
  pointer-events: none;
}

.section.dark > * {
  position: relative;
  z-index: 2;
}

footer {
  position: relative;
  z-index: 2;
}

@media (max-width: 1100px) {
  .pathway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .page-hero {
    min-height: 430px !important;
    padding-top: 135px !important;
  }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 390px !important;
    padding: 112px 5% 60px !important;
  }

  .page-hero h1 {
    font-size: 34px !important;
  }

  .page-hero p {
    font-size: 15px !important;
  }

  .pathway-grid {
    grid-template-columns: 1fr !important;
  }

  .pathway-grid div {
    min-height: auto !important;
  }
}

/* ===== PHASE 2C NAVIGATION AND MOBILE MENU FIX ===== */

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-link {
  color: #ffffff;
  border: 1px solid rgba(215,163,45,0.38);
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.login-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.desktop-nav a {
  position: relative;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.22s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.mobile-menu {
  background:
    radial-gradient(circle at 90% 10%, rgba(215,163,45,0.14), transparent 30%),
    #070707 !important;
  border: 1px solid rgba(215,163,45,0.34) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,0.42);
  padding: 10px !important;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 12px 14px !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.mobile-menu a::after {
  content: "›";
  color: var(--gold);
  font-size: 18px;
}

.mobile-menu a:last-child {
  border-bottom: 0 !important;
}

.menu-btn {
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.bottom-nav {
  box-shadow: 0 -14px 40px rgba(0,0,0,0.42);
}

.bottom-nav a {
  font-weight: 800;
  text-transform: uppercase;
}

.bottom-nav a:hover {
  color: var(--gold);
}

.page-hero {
  margin-top: 0 !important;
}

main {
  min-height: 60vh;
}

@media (max-width: 1200px) {
  .desktop-nav {
    gap: 12px;
  }

  .desktop-nav a {
    font-size: 10px;
  }

  .login-link {
    padding: 10px 13px;
    font-size: 10px;
  }

  .book-btn {
    padding: 11px 16px;
  }
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-actions {
    display: none !important;
  }

  .menu-btn {
    display: block !important;
  }
}

@media (max-width: 640px) {
  .mobile-menu {
    top: 78px !important;
    left: 3% !important;
    right: 3% !important;
  }

  .bottom-nav {
    height: 64px;
  }

  .bottom-nav a {
    font-size: 10px;
  }
}

/* ===== PHASE 2D SCENARIO COACH BRANDING ===== */

.scenario-coach-section .ai-card h3 {
  color: var(--gold);
  text-transform: uppercase;
}

.scenario-coach-section .ai-list div::before {
  content: "◆ ";
  color: var(--gold);
}

.scenario-coach-section .btn.red {
  box-shadow: 0 14px 36px rgba(212,17,17,0.22);
}

.page-hero h1 {
  max-width: 1060px !important;
}

.bottom-nav a[href="/ai-trainer/"] {
  color: var(--gold);
}


/* ===== PHASE 2E ACCESS MODEL AND PRE-DASHBOARD ===== */

.access-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.access-card {
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  min-height: 270px;
  display: flex;
  flex-direction: column;
}

.access-card span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212,17,17,0.08);
  color: var(--red);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 16px;
}

.access-card h3 {
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 12px;
}

.access-card p {
  color: #333;
  font-size: 14px;
  margin-bottom: 16px;
}

.access-card strong {
  margin-top: auto;
  color: var(--red);
  font-size: 13px;
  text-transform: uppercase;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.pre-dashboard-card {
  background: linear-gradient(145deg, #ffffff, #f3f3f3);
  color: #111;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(215,163,45,0.38);
  box-shadow: 0 26px 80px rgba(0,0,0,0.4);
}

.pre-dashboard-logo img {
  width: 220px;
  max-width: 100%;
  margin-bottom: 20px;
}

.pre-dashboard-card h3 {
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pre-dashboard-card .bar {
  background: #dedede;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.mini-stats div {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 16px;
}

.mini-stats span {
  display: block;
  font-size: 12px;
  color: #555;
  text-transform: uppercase;
  font-weight: 800;
}

.mini-stats strong {
  font-size: 26px;
  color: var(--red);
}

.training-package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.training-package-grid div {
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.training-package-grid h3 {
  text-transform: uppercase;
  margin-bottom: 12px;
}

.training-package-grid p {
  color: #333;
  margin-bottom: 12px;
}

.training-package-grid small {
  color: var(--red);
  font-weight: 900;
}

.role-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.role-list div {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  padding: 14px;
  color: #222;
}

.role-list strong {
  color: var(--red);
}

@media (max-width: 1250px) {
  .access-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .training-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .access-grid,
  .training-package-grid,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .access-card {
    min-height: auto;
  }
}

/* ===== PHASE 2F PUBLIC LANGUAGE POLISH ===== */

.access-card p,
.training-package-grid p,
.role-list div,
.pre-dashboard-card p {
  line-height: 1.55;
}

.access-card strong,
.training-package-grid small {
  letter-spacing: 0.2px;
}

.login-card p {
  background: #fff7f7;
  border-left: 4px solid var(--red);
  padding: 12px;
  border-radius: 8px;
}


/* ===== PHASE 3A REGISTRATION AND PRE-DASHBOARD FOUNDATION ===== */

.portal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.portal-info p {
  color: #333;
}

.portal-forms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.login-card h3 {
  text-transform: uppercase;
  margin-bottom: 16px;
}

.form-message {
  min-height: 24px;
  font-weight: 800;
  color: #333;
  background: transparent !important;
  border-left: 0 !important;
  padding: 0 !important;
}

.form-message.success {
  color: #087a2f;
}

.form-message.error {
  color: var(--red);
}

.secondary-mini {
  background: #111 !important;
  margin-left: 8px;
}

.dashboard-user-line {
  color: #555 !important;
  margin-top: 8px;
  font-size: 14px;
}

@media (max-width: 1150px) {
  .portal-grid,
  .portal-forms {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .portal-grid {
    gap: 28px;
  }

  .secondary-mini {
    margin-left: 0;
    margin-top: 10px !important;
  }
}

/* ===== PHASE 3B CLEAR FORM FEEDBACK ===== */

.form-help {
  background: #fff8ec !important;
  border-left: 4px solid var(--gold) !important;
  color: #222 !important;
  padding: 12px 14px !important;
  border-radius: 8px !important;
  margin-bottom: 16px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.form-message {
  display: none;
  margin-top: 14px !important;
  padding: 14px 16px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.45 !important;
  min-height: auto !important;
}

.form-message.working {
  display: block;
  background: #fff8e1 !important;
  color: #5b4300 !important;
  border-left: 5px solid var(--gold) !important;
}

.form-message.success {
  display: block;
  background: #eafaf0 !important;
  color: #087a2f !important;
  border-left: 5px solid #087a2f !important;
}

.form-message.error {
  display: block;
  background: #fff1f1 !important;
  color: var(--red) !important;
  border-left: 5px solid var(--red) !important;
}

.login-card input:invalid {
  border-color: #d7d7d7;
}

.login-card input:focus,
.login-card select:focus {
  outline: 2px solid rgba(215,163,45,0.35);
  border-color: var(--gold);
  background: #ffffff;
}

.portal-forms .login-card {
  position: relative;
}


/* ===== PHASE 3C LOGIN LOGOUT STYLING ===== */

.login-link.logout-link {
  border-color: rgba(212,17,17,0.65);
  color: #ffffff;
  background: rgba(212,17,17,0.12);
}

.login-link.logout-link:hover {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
}


/* ===== PHASE 3D DASHBOARD ACCOUNT DISPLAY ===== */

.signed-in-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: linear-gradient(145deg, #151515, #070707);
  border: 1px solid rgba(215,163,45,0.35);
  border-radius: 22px;
  padding: 28px;
  margin-bottom: 42px;
  box-shadow: 0 22px 70px rgba(0,0,0,0.35);
}

.signed-in-panel h2 {
  margin-bottom: 10px;
}

.signed-in-panel p {
  color: var(--muted);
  max-width: 900px;
}

.signed-in-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.logout-mini {
  border: 0;
  cursor: pointer;
  background: #111 !important;
  color: #ffffff !important;
  margin-left: 8px;
}

.logout-mini:hover,
.secondary-mini:hover {
  background: var(--red) !important;
}

.pre-dashboard-card .mini-btn {
  margin-top: 10px !important;
}

@media (max-width: 900px) {
  .signed-in-panel {
    grid-template-columns: 1fr;
  }

  .signed-in-actions {
    justify-content: flex-start;
  }

  .logout-mini {
    margin-left: 0;
  }
}


/* ===== PHASE 3E DASHBOARD CLEANUP AND ACCOUNT SUMMARY ===== */

.dashboard-main-section {
  padding-top: 80px !important;
}

.account-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 42px;
}

.account-summary-grid div {
  background: linear-gradient(145deg, #ffffff, #f6f6f6);
  color: #111;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(215,163,45,0.32);
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

.account-summary-grid span {
  display: block;
  color: #555;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 8px;
}

.account-summary-grid strong {
  color: var(--red);
  font-size: 20px;
  line-height: 1.2;
}

.pre-dashboard-card .logout-mini {
  display: none !important;
}

.pre-dashboard-card .mini-btn {
  margin-right: 8px;
}

.my-training-records {
  background: #f5f5f5;
  color: #111;
}

.my-records-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.my-records-grid div {
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.my-records-grid h3 {
  text-transform: uppercase;
  margin-bottom: 12px;
}

.my-records-grid p {
  color: #333;
  margin-bottom: 18px;
}

@media (max-width: 1000px) {
  .account-summary-grid,
  .my-records-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .account-summary-grid,
  .my-records-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-main-section {
    padding-top: 60px !important;
  }
}

/* ===== PHASE 3E DASHBOARD CLEANUP AND ACCOUNT SUMMARY ===== */

.dashboard-main-section {
  padding-top: 80px !important;
}

.account-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 42px;
}

.account-summary-grid div {
  background: linear-gradient(145deg, #ffffff, #f6f6f6);
  color: #111;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(215,163,45,0.32);
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

.account-summary-grid span {
  display: block;
  color: #555;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 8px;
}

.account-summary-grid strong {
  color: var(--red);
  font-size: 20px;
  line-height: 1.2;
}

.pre-dashboard-card .logout-mini {
  display: none !important;
}

.pre-dashboard-card .mini-btn {
  margin-right: 8px;
}

.my-training-records {
  background: #f5f5f5;
  color: #111;
}

.my-records-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.my-records-grid div {
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.my-records-grid h3 {
  text-transform: uppercase;
  margin-bottom: 12px;
}

.my-records-grid p {
  color: #333;
  margin-bottom: 18px;
}

@media (max-width: 1000px) {
  .account-summary-grid,
  .my-records-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .account-summary-grid,
  .my-records-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-main-section {
    padding-top: 60px !important;
  }
}

/* ===== PHASE 3F HERO TEXT AND PAGE HEADER REFINEMENT ===== */

.page-hero {
  min-height: 420px !important;
  padding: 140px 6% 70px !important;
}

.page-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px) !important;
  line-height: 1.08 !important;
  max-width: 820px !important;
  letter-spacing: 0.5px !important;
}

.page-hero p {
  font-size: 16px !important;
  max-width: 680px !important;
  line-height: 1.65 !important;
}

.page-hero .kicker {
  font-size: 12px !important;
  margin-bottom: 10px !important;
}

.hero h1 {
  font-size: clamp(36px, 5.2vw, 66px) !important;
  max-width: 780px;
}

.hero p {
  font-size: 17px !important;
  max-width: 610px;
}

#dashboardUserTitle {
  font-size: 18px;
}

.signed-in-panel h2 {
  font-size: clamp(26px, 3vw, 38px) !important;
}

.section h2 {
  font-size: clamp(28px, 3.3vw, 42px);
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 330px !important;
    padding: 105px 5% 48px !important;
  }

  .page-hero h1 {
    font-size: 31px !important;
    line-height: 1.1 !important;
  }

  .page-hero p {
    font-size: 14px !important;
  }

  .hero h1 {
    font-size: 30px !important;
  }
}

/* ===== PHASE 3G SCENARIO COACH PRACTICE FLOW ===== */

.scenario-practice-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: start;
}

.scenario-panel {
  background: linear-gradient(145deg, #151515, #070707);
  border: 1px solid rgba(215,163,45,0.35);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.4);
}

.scenario-panel h2 {
  margin-bottom: 10px;
}

.scenario-meta {
  color: var(--gold) !important;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.scenario-prompt {
  background: #ffffff;
  color: #111;
  border-left: 6px solid var(--gold);
  border-radius: 14px;
  padding: 22px;
  margin: 24px 0;
  font-size: 17px;
  line-height: 1.65;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.scenario-response-label {
  display: block;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.scenario-response {
  width: 100%;
  min-height: 190px;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(215,163,45,0.32);
  background: #f7f7f7;
  color: #111;
  font-size: 15px;
}

.scenario-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.scenario-feedback {
  display: none;
  margin-top: 22px;
  padding: 18px;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.scenario-feedback.working {
  display: block;
  background: #fff8e1;
  color: #5b4300;
  border-left: 5px solid var(--gold);
}

.scenario-feedback.success {
  display: block;
  background: #eafaf0;
  color: #087a2f;
  border-left: 5px solid #087a2f;
}

.scenario-feedback.error {
  display: block;
  background: #fff1f1;
  color: var(--red);
  border-left: 5px solid var(--red);
}

.scenario-side-card {
  background: linear-gradient(145deg, #ffffff, #f4f4f4);
  color: #111;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(215,163,45,0.38);
  box-shadow: 0 26px 80px rgba(0,0,0,0.35);
  position: sticky;
  top: 100px;
}

.scenario-side-card img {
  width: 230px;
  max-width: 100%;
  margin-bottom: 22px;
}

.scenario-side-card h3 {
  text-transform: uppercase;
  margin-bottom: 12px;
}

.scenario-side-card p {
  color: #333;
}

.scenario-side-card .bar {
  background: #dedede;
}

@media (max-width: 1000px) {
  .scenario-practice-layout {
    grid-template-columns: 1fr;
  }

  .scenario-side-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .scenario-panel,
  .scenario-side-card {
    padding: 22px;
  }

  .scenario-prompt {
    font-size: 15px;
  }

  .scenario-actions .btn {
    width: 100%;
  }
}

/* ===== PHASE 3G VOICE ROLE-PLAY SCENARIO COACH FOUNDATION ===== */

.section-intro {
  color: #333;
  max-width: 760px;
  margin-bottom: 28px;
}

.voice-scenario-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.voice-scenario-card,
.loading-card {
  background: #ffffff;
  color: #111;
  border: 1px solid #dedede;
  border-radius: 18px;
  padding: 22px;
  text-align: left;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.voice-scenario-card {
  cursor: pointer;
  transition: 0.22s ease;
}

.voice-scenario-card:hover,
.voice-scenario-card.active {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 26px 60px rgba(0,0,0,0.14);
}

.voice-scenario-card span {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 11px;
}

.voice-scenario-card h3 {
  text-transform: uppercase;
  line-height: 1.15;
  margin: 12px 0;
}

.voice-scenario-card p {
  color: #333;
  font-size: 14px;
  margin-bottom: 12px;
}

.voice-scenario-card small {
  color: #555;
  font-weight: 900;
}

.voice-stage-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
}

.voice-session-card,
.transcript-card {
  background: linear-gradient(145deg, #151515, #070707);
  border: 1px solid rgba(215,163,45,0.35);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.4);
}

.voice-scenario-details {
  color: var(--gold) !important;
  font-weight: 900;
  text-transform: uppercase;
}

.character-box,
.opening-line-box {
  background: #ffffff;
  color: #111;
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  border-left: 6px solid var(--gold);
}

.character-box span,
.opening-line-box span {
  display: block;
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 8px;
}

.character-box strong {
  display: block;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.character-box p,
.opening-line-box p {
  color: #333 !important;
  margin-bottom: 0;
}

.voice-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.mic-btn {
  background: #0b75ff;
  color: #ffffff;
  border: 0;
}

.mic-btn:disabled,
.voice-controls .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.voice-status {
  margin-top: 22px;
  padding: 16px;
  border-radius: 14px;
  background: #ffffff;
  color: #111;
  font-weight: 900;
}

.voice-status.working {
  background: #fff8e1;
  color: #5b4300;
  border-left: 5px solid var(--gold);
}

.voice-status.success {
  background: #eafaf0;
  color: #087a2f;
  border-left: 5px solid #087a2f;
}

.voice-status.error {
  background: #fff1f1;
  color: var(--red);
  border-left: 5px solid var(--red);
}

.transcript-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.transcript-header h3 {
  text-transform: uppercase;
  color: #ffffff;
}

.transcript-header span {
  background: rgba(215,163,45,0.14);
  color: var(--gold);
  border: 1px solid rgba(215,163,45,0.35);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 900;
  font-size: 12px;
}

.live-transcript {
  background: #ffffff;
  color: #111;
  border-radius: 16px;
  padding: 18px;
  min-height: 420px;
  max-height: 520px;
  overflow-y: auto;
}

.empty-transcript {
  color: #555;
}

.transcript-line {
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.ai-line {
  background: #f3f3f3;
  border-left: 5px solid var(--gold);
}

.trainee-line {
  background: #fff3f3;
  border-left: 5px solid var(--red);
}

.voice-report-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.voice-next-steps {
  display: grid;
  gap: 18px;
}

.voice-next-steps h3 {
  text-transform: uppercase;
  margin-bottom: 6px;
}

.voice-next-steps div {
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.voice-next-steps strong {
  color: var(--red);
  text-transform: uppercase;
}

.voice-next-steps p {
  color: #333;
  margin-top: 8px;
}

@media (max-width: 1200px) {
  .voice-scenario-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .voice-stage-layout,
  .voice-report-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .voice-scenario-grid {
    grid-template-columns: 1fr;
  }

  .voice-session-card,
  .transcript-card {
    padding: 22px;
  }

  .voice-controls .btn {
    width: 100%;
  }

  .live-transcript {
    min-height: 300px;
  }
}
