/* ============================================
   CAMPUS FORMULA - MAIN STYLESHEET
   Dark theme, premium, student-focused
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --gold: #fabf2c;
  --gold-dim: #c9930e;
  --dark: #0d0f14;
  --dark-2: #13161e;
  --dark-3: #1c2030;
  --dark-4: #252a3a;
  --light: #f5f4ef;
  --muted: #7a8099;
  --white: #ffffff;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

/* ---- BUTTONS ---- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-gold:hover {
  background: var(--gold-dim);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(250, 191, 44, 0.25);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

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

/* ---- NAVBAR ---- */
.navbar-cf {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}

.navbar-cf.scrolled {
  background: rgba(13, 15, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}

.navbar-brand-cf {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand-cf .brand-icon {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 900;
  font-size: 1.1rem;
}

.navbar-brand-cf:hover {
  color: var(--gold);
}

.nav-link-cf {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 8px 18px !important;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nav-link-cf:hover,
.nav-link-cf.active {
  color: var(--gold);
  background: rgba(250, 191, 44, 0.08);
}

.navbar-toggler-cf {
  border: 1px solid var(--dark-4);
  padding: 8px 12px;
  border-radius: var(--radius);
  background: var(--dark-2);
}

.navbar-toggler-cf:focus {
  box-shadow: none;
  border-color: var(--gold);
}

.navbar-toggler-cf .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: all 0.3s var(--ease);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(250, 191, 44, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(250, 191, 44, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--gold);
  position: relative;
}

.hero p.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.hero-stat .label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hero-card .card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-4);
}

.hero-card .card-header .circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hero-card .card-header .circle.red {
  background: #ff5f56;
}

.hero-card .card-header .circle.yellow {
  background: #ffbd2e;
}

.hero-card .card-header .circle.green {
  background: #27ca40;
}

.hero-card .question-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  margin-bottom: 8px;
  background: var(--dark-3);
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
}

.hero-card .question-row:hover {
  border-color: var(--gold);
  background: var(--dark-4);
}

.hero-card .question-row .q-num {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
}

.hero-card .question-row .q-text {
  font-size: 0.85rem;
  color: var(--light);
}

.hero-card .question-row .q-check {
  margin-left: auto;
  width: 20px;
  height: 20px;
  border: 2px solid var(--dark-4);
  border-radius: 4px;
}

.hero-card .question-row.active .q-check {
  background: var(--gold);
  border-color: var(--gold);
}

.hero-card .progress-bar-cf {
  height: 6px;
  background: var(--dark-4);
  border-radius: 3px;
  margin-top: 16px;
  overflow: hidden;
}

.hero-card .progress-bar-cf .fill {
  height: 100%;
  width: 65%;
  background: var(--gold);
  border-radius: 3px;
  animation: progressGrow 3s var(--ease) forwards;
}

@keyframes progressGrow {
  from {
    width: 0;
  }
}

/* ---- SECTIONS ---- */
.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(250, 191, 44, 0.1);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---- PROBLEM SECTION ---- */
.problem-section {
  background: var(--dark-2);
}

.problem-card {
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: all 0.4s var(--ease);
  height: 100%;
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 191, 44, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.problem-card .icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(250, 191, 44, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--gold);
}

.problem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.problem-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.problem-card .stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

/* ---- FEATURE CARDS ---- */
.feature-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.4s var(--ease);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(250, 191, 44, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.feature-card .icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(250, 191, 44, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--gold);
  transition: all 0.3s var(--ease);
}

.feature-card:hover .icon-wrap {
  background: var(--gold);
  color: var(--dark);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease);
  height: 100%;
}

.testimonial-card:hover {
  border-color: rgba(250, 191, 44, 0.2);
}

.testimonial-card .quote-icon {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 12px;
}

.testimonial-card p {
  color: var(--light);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card .author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-card .author-name {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-card .author-role {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(250, 191, 44, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-box {
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ---- FOOTER ---- */
.footer-cf {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-4);
  padding: 60px 0 30px;
}

.footer-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .brand-icon {
  width: 34px;
  height: 34px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 900;
  font-size: 0.9rem;
}

.footer-desc {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--dark-4);
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---- COMING SOON PAGE ---- */
.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
  position: relative;
  overflow: hidden;
}

.coming-soon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(250, 191, 44, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.coming-soon .gear-icon {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 24px;
  animation: spin 8s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.coming-soon h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}

.coming-soon p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

.coming-soon .notify-form {
  max-width: 420px;
  margin: 0 auto 32px;
}

.coming-soon .notify-form .form-control-cf {
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  width: 100%;
}

.coming-soon .notify-form .form-control-cf:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(250, 191, 44, 0.1);
}

.coming-soon .notify-form .form-control-cf::placeholder {
  color: var(--muted);
}

/* ---- ACADEMY CARDS ---- */
.academy-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s var(--ease);
  height: 100%;
}

.academy-card:hover {
  transform: translateY(-8px);
  border-color: rgba(250, 191, 44, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.academy-card .icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(250, 191, 44, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--gold);
  transition: all 0.3s var(--ease);
}

.academy-card:hover .icon-wrap {
  background: var(--gold);
  color: var(--dark);
}

.academy-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.academy-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* ---- PATHWAYS GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}

@media (min-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 15, 20, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay i {
  font-size: 1.5rem;
  color: var(--gold);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13, 15, 20, 0.95);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.lightbox .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.lightbox .close-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ---- PATHWAYS FEATURES ---- */
.pathway-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.4s var(--ease);
  height: 100%;
}

.pathway-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 191, 44, 0.2);
}

.pathway-card .icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(250, 191, 44, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--gold);
}

.pathway-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.pathway-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--dark-4);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 575.98px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-stats {
    gap: 20px;
    justify-content: center;
  }

  .hero-stat .num {
    font-size: 1.6rem;
  }

  .section {
    padding: 60px 0;
  }

  .problem-card,
  .feature-card,
  .academy-card,
  .pathway-card {
    padding: 28px 20px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .tenant-card {
    padding: 28px 20px;
  }

  .btn-gold,
  .btn-outline {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .navbar-brand-cf {
    font-size: 1.1rem;
  }

  .navbar-brand-cf .brand-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.4rem;
  }
}


/* ============================================
   MASTER LANDING PAGE - ADDITIONAL STYLES
   Arm showcase cards, CBT preview, ecosystem
   ============================================ */

/* ---- MASTER HERO CARD (3 Arms Visual) ---- */
.master-card {
  padding: 20px;
}

.master-card .arm-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 10px;
  background: var(--dark-3);
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.master-card .arm-row:hover {
  border-color: rgba(250, 191, 44, 0.3);
  background: var(--dark-4);
}

.master-card .arm-row.active {
  border-color: var(--gold);
  background: rgba(250, 191, 44, 0.05);
}

.master-card .arm-row .arm-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.master-card .arm-row .arm-info {
  flex: 1;
}

.master-card .arm-row .arm-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.master-card .arm-row .arm-desc {
  font-size: 0.75rem;
  color: var(--muted);
}

.master-card .arm-row .arm-status {
  font-size: 0.75rem;
}

/* ---- ARM SHOWCASE CARDS (The Big 3) ---- */
.arm-showcase-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}

.arm-showcase-card:hover {
  transform: translateY(-10px);
  border-color: rgba(250, 191, 44, 0.25);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.arm-showcase-card .arm-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.arm-showcase-card:hover .arm-glow {
  opacity: 1;
}

.arm-showcase-card.arm-cbt .arm-glow {
  background: radial-gradient(circle, rgba(250, 191, 44, 0.12) 0%, transparent 70%);
}

.arm-showcase-card.arm-academy .arm-glow {
  background: radial-gradient(circle, rgba(250, 191, 44, 0.1) 0%, transparent 70%);
}

.arm-showcase-card.arm-pathways .arm-glow {
  background: radial-gradient(circle, rgba(250, 191, 44, 0.1) 0%, transparent 70%);
}

.arm-showcase-card .arm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  width: fit-content;
}

.arm-showcase-card .arm-badge.live {
  background: rgba(39, 202, 64, 0.1);
  color: #27ca40;
  border: 1px solid rgba(39, 202, 64, 0.2);
}

.arm-showcase-card .arm-badge.soon {
  background: rgba(250, 191, 44, 0.1);
  color: var(--gold);
  border: 1px solid rgba(250, 191, 44, 0.2);
}

.arm-showcase-card .arm-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #27ca40;
  border-radius: 50%;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(39, 202, 64, 0.4);
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(39, 202, 64, 0);
  }
}

.arm-showcase-card .arm-icon-lg {
  width: 72px;
  height: 72px;
  background: rgba(250, 191, 44, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--gold);
  transition: all 0.4s var(--ease);
}

.arm-showcase-card:hover .arm-icon-lg {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.05);
}

.arm-showcase-card h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.arm-showcase-card .arm-tagline {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.arm-showcase-card .arm-features {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.arm-showcase-card .arm-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--light);
  border-bottom: 1px solid var(--dark-4);
}

.arm-showcase-card .arm-features li:last-child {
  border-bottom: none;
}

.arm-showcase-card .arm-features li i {
  color: var(--gold);
  font-size: 1rem;
}

.arm-showcase-card .arm-actions {
  margin-top: auto;
}

.arm-showcase-card .arm-actions .btn-gold,
.arm-showcase-card .arm-actions .btn-outline {
  margin-bottom: 12px;
}

.arm-showcase-card .arm-link {
  display: block;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

.arm-showcase-card .arm-link:hover {
  color: var(--gold);
}

.arm-showcase-card .arm-link i {
  transition: transform 0.3s var(--ease);
}

.arm-showcase-card .arm-link:hover i {
  transform: translateX(4px);
}

/* ---- CBT PREVIEW CARD (Simulator Mockup) ---- */
.cbt-preview-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.cbt-preview-card .cbt-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--dark-3);
  border-bottom: 1px solid var(--dark-4);
}

.cbt-preview-card .cbt-header .cbt-nav-dots {
  display: flex;
  gap: 6px;
}

.cbt-preview-card .cbt-header .cbt-nav-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.cbt-preview-card .cbt-header .cbt-nav-dots span:nth-child(1) {
  background: #ff5f56;
}

.cbt-preview-card .cbt-header .cbt-nav-dots span:nth-child(2) {
  background: #ffbd2e;
}

.cbt-preview-card .cbt-header .cbt-nav-dots span:nth-child(3) {
  background: #27ca40;
}

.cbt-preview-card .cbt-header .cbt-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
  margin-left: 8px;
}

.cbt-preview-card .cbt-header .cbt-timer {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 600;
}

.cbt-preview-card .cbt-body {
  padding: 28px 24px;
}

.cbt-preview-card .cbt-question {
  margin-bottom: 20px;
}

.cbt-preview-card .cbt-question .cbt-q-num {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.cbt-preview-card .cbt-question p {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.cbt-preview-card .cbt-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cbt-preview-card .cbt-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.cbt-preview-card .cbt-opt:hover {
  border-color: var(--gold);
  background: var(--dark-4);
}

.cbt-preview-card .cbt-opt.selected {
  border-color: var(--gold);
  background: rgba(250, 191, 44, 0.08);
}

.cbt-preview-card .cbt-opt input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.cbt-preview-card .cbt-opt span {
  font-size: 0.9rem;
  color: var(--light);
}

.cbt-preview-card .cbt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--dark-3);
  border-top: 1px solid var(--dark-4);
  gap: 12px;
}

.cbt-preview-card .cbt-footer .cbt-btn-prev,
.cbt-preview-card .cbt-footer .cbt-btn-next {
  padding: 8px 16px;
  background: var(--dark-4);
  border: 1px solid var(--dark-4);
  color: var(--light);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-family: var(--font-head);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.cbt-preview-card .cbt-footer .cbt-btn-next {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.cbt-preview-card .cbt-footer .cbt-btn-prev:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cbt-preview-card .cbt-footer .cbt-btn-next:hover {
  background: var(--gold-dim);
}

.cbt-preview-card .cbt-pagination {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.cbt-preview-card .cbt-pagination span {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.7rem;
  font-family: var(--font-head);
  font-weight: 600;
  background: var(--dark-4);
  color: var(--muted);
  border: 1px solid transparent;
}

.cbt-preview-card .cbt-pagination span.done {
  background: rgba(250, 191, 44, 0.15);
  color: var(--gold);
}

.cbt-preview-card .cbt-pagination span.current {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ---- CBT REASONS ---- */
.cbt-reason {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--dark-4);
}

.cbt-reason:last-child {
  border-bottom: none;
}

.cbt-reason .cbt-reason-icon {
  width: 44px;
  height: 44px;
  background: rgba(250, 191, 44, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.cbt-reason h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--white);
}

/* ---- RESPONSIVE ARM CARDS ---- */
@media (max-width: 991.98px) {
  .arm-showcase-card {
    padding: 32px 24px;
  }

  .arm-showcase-card .arm-icon-lg {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .arm-showcase-card h3 {
    font-size: 1.15rem;
  }
}

@media (max-width: 575.98px) {
  .arm-showcase-card {
    padding: 28px 20px;
  }

  .cbt-preview-card .cbt-footer {
    flex-wrap: wrap;
  }

  .cbt-preview-card .cbt-pagination {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
}

@media (max-width: 360px) {
  .arm-showcase-card .arm-features li {
    font-size: 0.8rem;
  }

  .cbt-preview-card .cbt-body {
    padding: 20px 16px;
  }
}

/* ============================================================
   MULTI-TENANT SECTION
   ============================================================ */
.multitenant-section {
  background: var(--dark-2);
  padding: 6rem 0;
}

.subdomain-demo {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  margin: 1.5rem 0;
}

.subdomain-demo .protocol {
  color: var(--muted);
}

.subdomain-demo .subdomain-part {
  color: var(--gold);
  font-weight: 700;
}

.subdomain-demo .domain-part {
  color: var(--light);
}

.center-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.center-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.center-benefits li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.tenant-visual {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.tenant-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(250, 191, 44, .08) 0%, transparent 70%);
}

.tenant-subdomain-card {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.2s;
}

.tenant-subdomain-card:hover {
  border-color: rgba(250, 191, 44, .3);
}

.tenant-subdomain-card .t-name {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.tenant-subdomain-card .t-url {
  font-size: 0.7rem;
  color: var(--muted);
  font-family: monospace;
}

.tenant-subdomain-card .t-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.t-badge.active {
  background: rgba(40, 200, 100, .15);
  color: #28c864;
}

.t-badge.new {
  background: rgba(250, 191, 44, .15);
  color: var(--gold);
}