/*============================================================================
  #Custom Styles Here Are Loaded Last
==============================================================================*/
/* Body padding to prevent content hiding behind fixed header (FR-017) */
body {
  padding-top: 72px; }

/*============================================================================
  #Header Navigation Bar
==============================================================================*/
/* --- Core header container --- */
.csg-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: var(--navy-900);
  z-index: 1000;
  font-family: var(--font-default); }

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

/* --- Logo --- */
.csg-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none; }

.csg-nav-logo-img {
  height: 48px;
  width: auto; }

/* --- Desktop nav links --- */
.csg-nav-links {
  display: flex;
  align-items: center;
  gap: 8px; }

.csg-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s; }

.csg-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08); }

.csg-nav-link.active {
  color: var(--orange-500); }

/* --- Divider --- */
.csg-nav-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 8px; }

/* --- CTA button --- */
.csg-nav-cta {
  background: var(--orange-500);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }

.csg-nav-cta:hover {
  background: var(--orange-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 146, 45, 0.3);
  color: #fff; }

/* --- Desktop user menu --- */
.csg-nav-user {
  display: flex;
  align-items: center;
  gap: 8px; }

.csg-nav-user a,
.csg-nav-user span a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s; }

.csg-nav-user a:hover,
.csg-nav-user span a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08); }

.csg-nav-user img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-left: 4px; }

/* --- Hamburger button (hidden on desktop) --- */
.csg-nav-hamburger {
  display: none; }

/* --- Mobile menu panel (hidden by default) --- */
.csg-nav-mobile {
  display: none; }

/*============================================================================
  #Mobile Styles (below 768px)
==============================================================================*/
@media (max-width: 767px) {
  /* Hide desktop nav, show hamburger */
  .csg-nav-links {
    display: none; }

  .csg-nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px; }

  .csg-nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center; }

  /* Hamburger X animation when open */
  .csg-nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg); }

  .csg-nav-hamburger.open span:nth-child(2) {
    opacity: 0; }

  .csg-nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg); }

  /* Mobile slide-down panel */
  .csg-nav-mobile {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--navy-900);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999; }

  .csg-nav-mobile.open {
    max-height: 500px; }

  .csg-nav-mobile-link {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s; }

  .csg-nav-mobile-link:hover {
    color: #fff; }

  .csg-nav-mobile-link.active {
    color: var(--orange-500); }

  .csg-nav-mobile-cta {
    display: block;
    margin: 16px 24px;
    text-align: center;
    background: var(--orange-500);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s; }

  .csg-nav-mobile-cta:hover {
    background: var(--orange-400);
    color: #fff; }

  /* Mobile user menu */
  .csg-nav-mobile-user {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px 0; }

  .csg-nav-mobile-user a,
  .csg-nav-mobile-user span a {
    display: block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s; }

  .csg-nav-mobile-user a:hover,
  .csg-nav-mobile-user span a:hover {
    color: #fff; }

  .csg-nav-mobile-user img {
    display: none; } }
/*============================================================================
  #Footer
==============================================================================*/
.csg-footer {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 48px 32px 32px;
  text-align: center;
  font-family: var(--font-default); }

.csg-footer-inner {
  max-width: 1240px;
  margin: 0 auto; }

/* --- Footer links (quick links + legal) --- */
.csg-footer-links,
.csg-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px; }

.csg-footer-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s; }

.csg-footer-link:hover {
  color: rgba(255, 255, 255, 0.7); }

/* --- Social icons --- */
.csg-footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px; }

.csg-footer-social-link {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s; }

.csg-footer-social-link:hover {
  color: rgba(255, 255, 255, 0.7); }

.csg-footer-social-link svg {
  width: 20px;
  height: 20px;
  display: block; }

/* --- Copyright --- */
.csg-footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  margin: 0; }

/*============================================================================
  #Homepage
==============================================================================*/
/* --- Smooth scroll for anchor navigation --- */
html {
  scroll-behavior: smooth; }

/* --- Rise entrance animation --- */
@keyframes csg-rise {
  from {
    opacity: 0;
    transform: translateY(28px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* --- Shared section header styles --- */
.csg-home-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange-500);
  margin: 0 0 14px; }

.csg-home-section-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-700);
  margin: 0 0 14px;
  font-family: var(--font-default); }

.csg-home-section-sub {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 48px; }

/* --- Hero section --- */
.csg-home-hero {
  background: linear-gradient(175deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--navy-600) 100%);
  padding: 130px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden; }

.csg-home-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none; }

.csg-home-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1; }

.csg-home-hero [data-animate] {
  animation: csg-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both; }

.csg-home-hero [data-animate]:nth-child(1) {
  animation-delay: 0s; }

.csg-home-hero [data-animate]:nth-child(2) {
  animation-delay: 0.08s; }

.csg-home-hero [data-animate]:nth-child(3) {
  animation-delay: 0.14s; }

.csg-home-hero [data-animate]:nth-child(4) {
  animation-delay: 0.2s; }

.csg-home-hero [data-animate]:nth-child(5) {
  animation-delay: 0.28s; }

.csg-home-hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 20px; }

.csg-home-hero-heading {
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 24px;
  font-family: var(--font-default); }

.csg-home-hero-heading em {
  font-style: italic;
  color: var(--orange-500); }

.csg-home-hero-body {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 40px; }

.csg-home-hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px; }

.csg-home-btn-orange {
  display: inline-block;
  background: var(--orange-500);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }

.csg-home-btn-orange:hover {
  background: var(--orange-400);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 146, 45, 0.3); }

.csg-home-btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s; }

.csg-home-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  color: #fff; }

.csg-home-hero-video {
  max-width: 720px;
  margin: 0 auto 48px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); }

.csg-home-hero-proof {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap; }

.csg-home-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center; }

.csg-home-hero-stat-num {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-default); }

.csg-home-hero-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px; }

@media (max-width: 767px) {
  .csg-home-hero {
    padding: 110px 20px 60px; } }
/* --- Logo bar --- */
.csg-home-logos {
  background: var(--navy-900);
  padding: 28px 32px;
  text-align: center; }

.csg-home-logos-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 16px; }

.csg-home-logos-slider {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, white 5%, white 95%, transparent);
  mask-image: linear-gradient(to right, transparent, white 5%, white 95%, transparent); }

.csg-home-logos-slider:hover .csg-home-logos-track {
  animation-play-state: paused; }

.csg-home-logos-track {
  display: flex;
  gap: 72px;
  width: max-content;
  animation: scroll-logos 30s linear infinite; }

.csg-home-logos-track [aria-hidden="true"] {
  display: contents; }

.csg-home-logos-track img {
  height: 28px;
  width: auto;
  opacity: 0.6;
  flex-shrink: 0; }

@keyframes scroll-logos {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-50%); } }
@media (max-width: 768px) {
  .csg-home-logos {
    padding: 20px 16px; }

  .csg-home-logos-track {
    gap: 56px; }

  .csg-home-logos-track img {
    height: 22px; } }
@media (max-width: 320px) {
  .csg-home-logos-track {
    gap: 40px; }

  .csg-home-logos-track img {
    height: 18px; } }
@media (prefers-reduced-motion: reduce) {
  .csg-home-logos-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center; }

  .csg-home-logos-track [aria-hidden="true"] {
    display: none; } }
/* --- Courses section --- */
.csg-home-courses {
  padding: 80px 32px;
  background: #fff; }

.csg-home-courses-inner {
  max-width: 1140px;
  margin: 0 auto; }

.csg-home-courses-header {
  text-align: center; }

.csg-home-course-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px; }

.csg-home-course-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  overflow: hidden; }

.csg-home-course-card:hover {
  box-shadow: 0 16px 48px rgba(15, 26, 46, 0.1);
  transform: translateY(-6px);
  border-color: var(--gray-300); }

.cc-header {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  padding: 32px 28px 28px;
  position: relative; }

.cc-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-300)); }

.cc-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--orange-300);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px; }

.cc-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 6px;
  font-family: var(--font-default); }

.cc-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0; }

.cc-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1; }

.cc-hook {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 0 24px; }

.cc-hook strong {
  color: var(--navy-700);
  font-weight: 600; }

.cc-modules-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin: 0 0 12px; }

.cc-modules {
  list-style: none;
  padding: 0;
  margin: 0 0 24px; }

.cc-modules li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.4; }

.cc-modules .num {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-500);
  min-width: 22px;
  flex-shrink: 0; }

.cc-spacer {
  flex: 1; }

.cc-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px; }

.cc-price {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy-700);
  font-family: var(--font-default); }

.cc-price-old {
  font-size: 17px;
  color: var(--gray-400);
  text-decoration: line-through; }

.cc-price-note {
  font-size: 13px;
  color: var(--gray-400);
  margin: 0 0 20px; }

.cc-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: 2px solid transparent; }

.cc-btn-navy {
  background: var(--navy-700);
  color: #fff;
  border-color: var(--navy-700); }

.cc-btn-navy:hover {
  background: var(--navy-600);
  color: #fff;
  transform: translateY(-1px); }

/* --- Results strip --- */
.csg-home-results-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  overflow: hidden; }

.result-box {
  padding: 28px 20px;
  text-align: center;
  background: #fff;
  border-right: 1px solid var(--gray-200); }

.result-box:last-child {
  border-right: none; }

.rb-num {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy-700);
  font-family: var(--font-default);
  margin-bottom: 4px; }

.rb-label {
  font-size: 13px;
  color: var(--gray-500); }

/* --- Bundle section --- */
.csg-home-bundle {
  padding: 80px 32px;
  background: var(--gray-50); }

.csg-home-bundle-inner {
  max-width: 1140px;
  margin: 0 auto; }

.csg-home-bundle-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  background: var(--navy-700);
  position: relative;
  overflow: hidden; }

.csg-home-bundle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--orange-600), var(--orange-500), var(--orange-300)); }

.bc-left {
  padding: 48px 44px; }

.bc-badge {
  display: inline-block;
  background: var(--orange-500);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px; }

.bc-title {
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 16px;
  font-family: var(--font-default); }

.bc-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0 0 28px; }

.bc-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px; }

.bc-price {
  font-size: 54px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-default); }

.bc-price-old {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through; }

.bc-price-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 28px; }

.bc-btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700; }

.bc-right {
  background: rgba(0, 0, 0, 0.15);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center; }

.bc-right-heading {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
  font-family: var(--font-default); }

.bc-right-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 24px; }

.bc-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px; }

.bc-includes li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  gap: 10px;
  align-items: flex-start; }

.bc-includes li::before {
  content: '\2713';
  color: var(--orange-400);
  font-weight: 700;
  flex-shrink: 0; }

.bc-save {
  padding: 16px;
  background: rgba(232, 146, 45, 0.12);
  border: 1px solid rgba(232, 146, 45, 0.2);
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8); }

.bc-save strong {
  color: var(--orange-400); }

/* --- FAQ section --- */
.csg-home-faq {
  padding: 80px 32px;
  background: #fff; }

.csg-home-faq-inner {
  max-width: 1140px;
  margin: 0 auto; }

.csg-home-faq-header {
  text-align: center; }

.csg-home-faq-list {
  max-width: 720px;
  margin: 0 auto; }

.csg-home-faq-item {
  border-bottom: 1px solid var(--gray-200); }

.csg-home-faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-700);
  text-align: left;
  font-family: var(--font-default);
  transition: color 0.2s;
  gap: 16px; }

.csg-home-faq-q:hover {
  color: var(--orange-500); }

.csg-home-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  flex-shrink: 0; }

.csg-home-faq-item.open .csg-home-faq-icon {
  background: var(--orange-500);
  color: #fff;
  transform: rotate(45deg); }

.csg-home-faq-a {
  display: none;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.75;
  padding-bottom: 20px; }

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

/* --- Bridge section --- */
.csg-home-bridge {
  padding: 80px 32px;
  background: var(--gray-50);
  text-align: center; }

.csg-home-bridge-inner {
  max-width: 600px;
  margin: 0 auto; }

.csg-home-bridge-heading {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--navy-700);
  margin: 0 0 16px;
  font-family: var(--font-default); }

.csg-home-bridge-body {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.7; }

.csg-home-bridge-link {
  color: var(--orange-500);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s; }

.csg-home-bridge-link:hover {
  gap: 10px;
  color: var(--orange-500); }

.csg-home-bridge-tiers {
  display: flex;
  justify-content: center;
  gap: 40px;
  border-top: 1px solid var(--gray-200);
  padding-top: 28px;
  margin-top: 32px; }

.csg-home-bridge-tier {
  display: flex;
  flex-direction: column; }

.csg-home-bridge-tier-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-700); }

.csg-home-bridge-tier-price {
  font-size: 13px;
  color: var(--gray-400); }

/*============================================================================
  #Homepage Mobile Styles
==============================================================================*/
@media (max-width: 1024px) {
  .csg-home-bundle-card {
    grid-template-columns: 1fr; }

  .csg-home-results-strip {
    grid-template-columns: repeat(2, 1fr); }

  .result-box:nth-child(2) {
    border-right: none; }

  .result-box:nth-child(1),
  .result-box:nth-child(2) {
    border-bottom: 1px solid var(--gray-200); } }
@media (max-width: 767px) {
  .csg-home-courses,
  .csg-home-bundle,
  .csg-home-faq,
  .csg-home-bridge {
    padding: 60px 20px; }

  .csg-home-course-cards {
    grid-template-columns: 1fr; }

  .csg-home-results-strip {
    grid-template-columns: 1fr; }

  .result-box {
    border-right: none;
    border-bottom: 1px solid var(--gray-200); }

  .result-box:last-child {
    border-bottom: none; }

  .bc-left {
    padding: 36px 24px; }

  .bc-right {
    padding: 36px 24px; }

  .csg-home-bridge-tiers {
    flex-direction: column;
    gap: 16px; } }
/*============================================================================
  #Coaching Page
==============================================================================*/
.csg-coaching-section-inner {
  max-width: 1140px;
  margin: 0 auto; }

/* Coaching Hero */
.csg-coaching-hero {
  background: linear-gradient(175deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 130px 32px 80px;
  text-align: center;
  position: relative; }

.csg-coaching-hero-inner {
  max-width: 800px;
  margin: 0 auto; }

.csg-coaching-hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px; }

.csg-coaching-hero-heading {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  font-family: var(--font-default); }

.csg-coaching-hero-body {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 20px; }

.csg-coaching-hero-creds {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
  margin-bottom: 32px; }

.csg-coaching-btn-orange {
  display: inline-block;
  background: var(--orange-500);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }

.csg-coaching-btn-orange:hover {
  background: var(--orange-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 146, 45, 0.3);
  color: #fff; }

/* Coaching Tiers */
.csg-coaching-tiers {
  padding: 80px 32px;
  background: #fff; }

.csg-coaching-tiers-header {
  text-align: center;
  margin-bottom: 48px; }

.csg-coaching-tiers-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 14px;
  font-family: var(--font-default); }

.csg-coaching-tiers-sub {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto; }

.csg-coaching-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px; }

.csg-coaching-tier-card {
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s; }

.csg-coaching-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 26, 46, 0.1); }

.csg-coaching-tier-card .ct-header {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  padding: 32px 28px;
  text-align: center; }

.csg-coaching-tier-card .ct-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: var(--font-default); }

.csg-coaching-tier-card .ct-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 8px 0 0;
  font-weight: 400;
  letter-spacing: 0.3px; }

.csg-coaching-tier-card .ct-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column; }

.csg-coaching-tier-card .ct-intro {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0 0 20px; }

.csg-coaching-tier-card .ct-description {
  flex: 1;
  margin-bottom: 24px; }

.csg-coaching-tier-card .ct-description ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.csg-coaching-tier-card .ct-description li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  color: var(--gray-600);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5; }

.csg-coaching-tier-card .ct-description li::before {
  content: "\2713";
  color: var(--orange-400);
  font-weight: 700;
  flex-shrink: 0; }

.csg-coaching-tier-card .ct-description li:last-child {
  border-bottom: none; }

.csg-coaching-tier-card .ct-investment {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 20px;
  border-top: 1px solid var(--gray-100); }

.csg-coaching-tier-card .ct-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--orange-500);
  display: block; }

.csg-coaching-tier-card .ct-delivery {
  font-size: 13px;
  color: var(--gray-400);
  display: block;
  margin-top: 4px; }

.csg-coaching-tier-cta {
  display: block;
  text-align: center;
  background: var(--orange-500);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  padding: 14px 24px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s; }

.csg-coaching-tier-cta:hover {
  background: var(--orange-400);
  transform: translateY(-1px);
  color: #fff; }

/* Coaching Bundle CTA Bridge */
.csg-coaching-bridge {
  margin-top: 48px; }

.csg-coaching-bridge-card {
  background: linear-gradient(135deg, #1b2a4a, #243756);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center; }

.csg-coaching-bridge-text {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  margin: 0 0 20px; }

.csg-coaching-bridge-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 32px;
  max-width: 640px;
  text-align: left; }

.csg-coaching-bridge-list li {
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  padding-left: 24px;
  position: relative; }

.csg-coaching-bridge-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--orange-500);
  font-weight: 700; }

.csg-coaching-bridge-btn {
  display: inline-block;
  background: transparent;
  color: var(--orange-500);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid var(--orange-500);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s; }

.csg-coaching-bridge-btn:hover {
  background: var(--orange-500);
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none; }

/* Coaching Exit Modal */
.csg-coaching-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999; }

.csg-coaching-modal.open {
  display: flex;
  align-items: center;
  justify-content: center; }

.csg-coaching-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 26, 46, 0.7);
  cursor: pointer; }

.csg-coaching-modal-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  z-index: 1; }

.csg-coaching-modal-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 12px;
  font-family: var(--font-default); }

.csg-coaching-modal-body {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 28px; }

.csg-coaching-modal-stay {
  display: block;
  width: 100%;
  background: var(--orange-500);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  padding: 14px;
  border: none;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background 0.2s; }

.csg-coaching-modal-stay:hover {
  background: var(--orange-400); }

.csg-coaching-modal-continue {
  display: block;
  width: 100%;
  background: none;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 15px;
  font-weight: 500;
  border-radius: 100px;
  padding: 14px;
  cursor: pointer;
  transition: border-color 0.2s; }

.csg-coaching-modal-continue:hover {
  border-color: var(--gray-300); }

/* Coaching DIY Cross-Sell */
.csg-coaching-diy {
  padding: 80px 32px;
  background: var(--gray-50);
  text-align: center; }

.csg-coaching-diy-inner {
  max-width: 600px;
  margin: 0 auto; }

.csg-coaching-diy h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--navy-700);
  font-family: var(--font-default);
  margin-bottom: 16px; }

.csg-coaching-diy p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 28px; }

.csg-coaching-btn-outline {
  display: inline-block;
  background: none;
  border: 2px solid var(--navy-700);
  color: var(--navy-700);
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s; }

.csg-coaching-btn-outline:hover {
  background: var(--navy-700);
  color: #fff;
  transform: translateY(-1px); }

/*============================================================================
  #Coaching Page Mobile Styles
==============================================================================*/
@media (max-width: 1024px) {
  .csg-coaching-tiers-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto; }

  .csg-coaching-bridge-list {
    grid-template-columns: 1fr; } }
@media (max-width: 767px) {
  .csg-coaching-hero {
    padding: 110px 20px 60px; }

  .csg-coaching-tiers,
  .csg-coaching-diy {
    padding: 60px 20px; }

  .csg-coaching-modal-card {
    width: 95%;
    padding: 28px; } }
/*============================================================================
  #404 Page
==============================================================================*/
.csg-404 {
  background: linear-gradient(175deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 160px 32px 120px;
  text-align: center;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center; }

.csg-404-inner {
  max-width: 560px;
  margin: 0 auto; }

.csg-404-code {
  display: block;
  font-size: clamp(72px, 12vw, 120px);
  font-weight: 700;
  color: var(--orange-500);
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--font-default); }

.csg-404-heading {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
  font-family: var(--font-default); }

.csg-404-body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 32px; }

.csg-404-cta {
  display: inline-block;
  background: var(--orange-500);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s; }

.csg-404-cta:hover {
  background: var(--orange-400);
  transform: translateY(-2px);
  color: #fff; }

@media (max-width: 767px) {
  .csg-404 {
    padding: 130px 20px 80px; } }
/*============================================================================
  #Homepage What's Inside (Tab Switcher)
==============================================================================*/
.csg-home-inside {
  background: linear-gradient(175deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--navy-600) 100%);
  padding: 80px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center; }

.csg-home-inside-inner {
  max-width: 1000px;
  margin: 0 auto; }

/* Badge */
.csg-home-inside-badge {
  display: inline-block;
  border: 1px solid rgba(232, 146, 45, 0.4);
  border-radius: 24px;
  padding: 8px 24px;
  margin-bottom: 28px; }

.csg-home-inside-badge span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600; }

/* Heading */
.csg-home-inside-heading {
  color: #fff;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  font-family: var(--font-default); }

.csg-home-inside-intro {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 40px; }

/* Tab Switch */
.csg-home-inside-tabs {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 48px; }

.csg-home-inside-tab {
  position: relative;
  z-index: 2;
  padding: 12px 32px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-default);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.25s, background 0.25s;
  white-space: nowrap; }

.csg-home-inside-tab.active {
  color: #fff;
  background: rgba(232, 146, 45, 0.15);
  border-color: rgba(232, 146, 45, 0.3); }

.csg-home-inside-tab:not(.active):hover {
  color: rgba(255, 255, 255, 0.7); }

/* Tab Panels */
.csg-home-inside-panel {
  display: none;
  text-align: left; }

.csg-home-inside-panel.active {
  display: block; }

/* Module Card */
.csg-home-inside-module {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 146, 45, 0.2);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left; }

.csg-home-inside-module:last-of-type {
  margin-bottom: 0; }

.csg-home-inside-module-text {
  flex: 1;
  min-width: 0; }

.csg-home-inside-module-text h3 {
  color: #fff;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: var(--font-default); }

.csg-home-inside-module-text h3 span {
  color: var(--orange-500); }

/* Module Visual Box */
.csg-home-inside-module-visual {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center; }

.csg-home-inside-visual--blue {
  background: linear-gradient(135deg, rgba(18, 80, 147, 0.3) 0%, rgba(15, 26, 46, 0.8) 100%); }

.csg-home-inside-visual--orange {
  background: linear-gradient(135deg, rgba(232, 146, 45, 0.15) 0%, rgba(15, 26, 46, 0.8) 100%); }

.csg-home-inside-visual--mixed {
  background: linear-gradient(135deg, rgba(18, 80, 147, 0.2) 0%, rgba(232, 146, 45, 0.1) 50%, rgba(15, 26, 46, 0.8) 100%); }

.csg-home-inside-visual-inner {
  text-align: center;
  padding: 20px; }

.csg-home-inside-mod-label {
  color: var(--orange-500);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px; }

.csg-home-inside-mod-title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 600; }

/* Bullet list inside modules */
.csg-home-inside-bullets ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px; }

.csg-home-inside-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.6; }

.csg-home-inside-bullets li::before {
  content: "\2713";
  color: var(--orange-500);
  font-weight: 700;
  flex-shrink: 0; }

/* More Modules Box */
.csg-home-inside-more {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 40px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left; }

.csg-home-inside-more-text {
  flex: 1; }

.csg-home-inside-more-label {
  color: var(--orange-500);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px; }

.csg-home-inside-more-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.6;
  max-width: 560px; }

.csg-home-inside-more-counter {
  flex-shrink: 0;
  background: rgba(232, 146, 45, 0.1);
  border: 1px solid rgba(232, 146, 45, 0.25);
  border-radius: 12px;
  padding: 16px 28px;
  text-align: center; }

.csg-home-inside-count {
  color: var(--orange-500);
  font-size: 28px;
  font-weight: 800;
  line-height: 1; }

.csg-home-inside-count-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px; }

/* CTA */
.csg-home-inside-cta {
  margin-top: 48px;
  text-align: center; }

.csg-home-inside-cta-btn {
  display: inline-block;
  background: var(--orange-500);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 44px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s; }

.csg-home-inside-cta-btn:hover {
  background: var(--orange-400);
  transform: translateY(-2px);
  color: #fff; }

.csg-home-inside-cta p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  margin-top: 14px; }

/* Bundle Card */
.csg-home-inside-bundle {
  margin-top: 48px; }

.csg-home-inside-bundle-card {
  background: var(--navy-900);
  border: 1px solid rgba(232, 146, 45, 0.25);
  border-radius: 16px;
  padding: 40px;
  text-align: left; }

.csg-home-inside-bundle-top {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); }

.csg-home-inside-bundle-header {
  flex: 1; }

.csg-home-inside-bundle-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px; }

.csg-home-inside-bundle-name {
  color: #fff;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 10px;
  font-family: var(--font-default); }

.csg-home-inside-bundle-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px; }

.csg-home-inside-bundle-action {
  flex-shrink: 0;
  text-align: center;
  min-width: 220px; }

.csg-home-inside-bundle-pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px; }

.csg-home-inside-bundle-strike {
  color: rgba(255, 255, 255, 0.3);
  font-size: 16px;
  font-weight: 600;
  text-decoration: line-through; }

.csg-home-inside-bundle-price {
  color: #fff;
  font-size: 36px;
  font-weight: 800; }

.csg-home-inside-bundle-subtext {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  margin-bottom: 16px; }

.csg-home-inside-bundle-action .csg-home-inside-cta-btn {
  width: 100%; }

.csg-home-inside-bundle-includes {
  text-align: left; }

.csg-home-inside-bundle-includes-heading {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: var(--font-default); }

.csg-home-inside-bundle-includes-sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  margin-bottom: 20px; }

.csg-home-inside-bundle-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px; }

.csg-home-inside-bundle-checklist li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
  padding-left: 26px;
  position: relative; }

.csg-home-inside-bundle-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--orange-500);
  font-weight: 700;
  font-size: 14px; }

/* Responsive */
@media (max-width: 900px) {
  .csg-home-inside-module-visual {
    display: none; }

  .csg-home-inside-module {
    flex-direction: column; } }
@media (max-width: 767px) {
  .csg-home-inside {
    padding: 60px 16px; }

  .csg-home-inside-module {
    padding: 28px 20px; }

  .csg-home-inside-tab {
    padding: 10px 16px;
    font-size: 12px; }

  .csg-home-inside-tabs {
    flex-wrap: wrap;
    justify-content: center; }

  .csg-home-inside-more {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px; }

  .csg-home-inside-cta-btn {
    padding: 14px 32px;
    font-size: 15px; }

  .csg-home-inside-bundle-card {
    padding: 28px 20px; }

  .csg-home-inside-bundle-top {
    flex-direction: column;
    gap: 24px; }

  .csg-home-inside-bundle-action {
    width: 100%;
    min-width: 0; }

  .csg-home-inside-bundle-checklist {
    grid-template-columns: 1fr; } }
/*============================================================================
  #CSG Courses Hero
==============================================================================*/
.csg-courses-hero {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 100px 24px 80px;
  text-align: center; }

.csg-courses-hero-inner {
  max-width: 720px;
  margin: 0 auto; }

.csg-courses-hero-eyebrow {
  color: var(--orange-500);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px; }

.csg-courses-hero-heading {
  color: #fff;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  font-family: var(--font-default); }

.csg-courses-hero-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 12px; }

.csg-courses-hero-intro {
  color: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto; }

@media (max-width: 767px) {
  .csg-courses-hero {
    padding: 72px 16px 56px; } }
/*============================================================================
  #CSG Courses Listing
==============================================================================*/
.csg-courses-listing {
  background: #fff;
  padding: 80px 24px; }

.csg-courses-listing-inner {
  max-width: 1140px;
  margin: 0 auto; }

.csg-courses-listing-header {
  text-align: center;
  margin-bottom: 48px; }

.csg-courses-listing-heading {
  color: var(--navy-900);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  margin-bottom: 10px;
  font-family: var(--font-default); }

.csg-courses-listing-sub {
  color: rgba(0, 0, 0, 0.55);
  font-size: 15px;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto; }

/* Course Cards Grid (reuses .cc-* and .csg-home-inside-bundle-* from homepage) */
.csg-courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px; }

.csg-courses-bundle {
  margin-top: 12px; }

.csg-courses-bundle .csg-home-inside-bundle-card {
  background: var(--navy-900);
  border-color: rgba(255, 255, 255, 0.08); }

/* Responsive */
@media (max-width: 767px) {
  .csg-courses-listing {
    padding: 60px 16px; }

  .csg-courses-grid {
    grid-template-columns: 1fr;
    gap: 20px; } }
/*============================================================================
  #Guidebook CTA Section
==============================================================================*/
.csg-guidebook {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 80px 32px; }

.csg-guidebook-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1140px;
  margin: 0 auto; }

.csg-guidebook-img {
  flex: 0 0 40%; }

.csg-guidebook-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; }

.csg-guidebook-content {
  flex: 1; }

.csg-guidebook-eyebrow {
  display: inline-block;
  color: var(--orange-500);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px; }

.csg-guidebook-heading {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px; }

.csg-guidebook-desc {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 28px; }

.csg-guidebook-btn {
  display: inline-block;
  background: var(--orange-500);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }

.csg-guidebook-btn:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-decoration: none; }

/* --- Guidebook CTA Responsive --- */
@media (max-width: 767px) {
  .csg-guidebook {
    padding: 60px 16px; }

  .csg-guidebook-inner {
    flex-direction: column;
    gap: 32px; }

  .csg-guidebook-img {
    flex: none;
    width: 100%;
    max-width: 320px;
    margin: 0 auto; }

  .csg-guidebook-btn {
    display: block;
    text-align: center;
    width: 100%; } }
