/* College Nexis — Global Design System */

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

:root {
  /* Brand Colors */
  --navy: #001F5B;
  --navy-dark: #001040;
  --navy-mid: #002B7A;
  --teal: #00A693;
  --teal-light: #00BFA9;
  --teal-bg: rgba(0, 166, 147, 0.08);
  --teal-border: rgba(0, 166, 147, 0.20);
  
  /* Fonts - UNIFORM OUTFIT ACROSS ENTIRE PLATFORM */
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Outfit', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* UI Colors */
  --white: #FFFFFF;
  --grey-bg: #F8FAFC;
  --grey-light: #F1F5F9;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --text: #1E293B;
  --text-mid: #475569;
  --text-muted: #94A3B8;
  
  /* Accents */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --premium-gold: #FFD700;
  --lead-score: #00A693;
  
  /* Layout */
  --sidebar-w: 260px;
  --header-h: 72px;
  
  /* Shadows & Radius */
  --shadow-sm: 0 1px 4px rgba(0, 31, 91, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 31, 91, 0.10);
  --shadow-lg: 0 8px 32px rgba(0, 31, 91, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 31, 91, 0.15);
  --shadow-premium: 0 10px 40px rgba(0, 166, 147, 0.12);
  
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}


body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.25;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--teal-light);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lead-text {
  font-size: 1.125rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 2px 8px rgba(0, 166, 147, 0.25);
}

.btn-primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  box-shadow: 0 4px 16px rgba(0, 166, 147, 0.35);
  transform: translateY(-1px);
  color: var(--white);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--grey-bg);
}

.btn-lg {
  padding: 13px 28px;
  font-size: 15px;
}

.btn-xl {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-sm {
  padding: 7px 16px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav a {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-mid);
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--teal);
}

.site-header .right {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  height: 90px;
  width: auto;
  margin-bottom: 24px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--teal-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
  color: var(--white);
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s;
}

.social-icon:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--navy);
  padding: 4px 8px;
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 16px;
  }
  .site-nav.open {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
  }
  .site-header .right {
    display: none;
  }
  .site-nav.open ~ .right {
    display: flex;
    position: absolute;
    top: calc(var(--header-h) + 180px);
    left: 24px;
    right: 24px;
    flex-direction: column;
  }
}

/* ===== UTILITIES ===== */
.text-teal {
  color: var(--teal);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #EEF5FF 0%, #FFFFFF 45%, #E8FAF7 100%);
  padding: 60px 0 0;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}

.hero-left {
  padding-bottom: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-bg);
  border: 1px solid var(--teal-border);
  border-radius: var(--r-full);
  padding: 6px 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--teal);
  margin-bottom: 20px;
}

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

@keyframes pulse {

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

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

.hero h1 {
  margin-bottom: 16px;
}

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

.hero-subtext {
  font-size: 16px;
  max-width: 445px;
  margin-bottom: 28px;
  color: var(--text-mid);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  display: block;
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.float-card-1 {
  top: 24px;
  left: -20px;
}

.float-card-2 {
  bottom: 24px;
  right: -20px;
}

.float-card-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.float-card-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--navy);
  line-height: 1;
}

.float-card-desc {
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  margin-top: 4px;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatY2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float-card-1 {
  animation: floatY 5s ease-in-out infinite;
}

.float-card-2 {
  animation: floatY2 5s ease-in-out infinite 1.3s;
}

/* ===== TRUST STRIP ===== */
/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.trust-header {
  text-align: center;
  margin-bottom: 40px;
}

.trust-guidance {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
}

.trust-strip h2 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.logo-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: #f8f9fa;
  border: 0.5px solid var(--border);
  transition: all 0.3s ease;
  height: 120px;
}

.logo-grid-item img {
  max-height: 45px;
  max-width: 80%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
}

.logo-grid-item:hover {
  background: var(--white);
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
}

.logo-grid-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  padding: 96px 0;
  text-align: center;
}

.problem-section .container {
  max-width: 820px;
}

.section-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.wavy-underline {
  position: relative;
  display: inline-block;
}

.wavy-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8'%3E%3Cpath d='M0 4 Q15 0 30 4 Q45 8 60 4 Q75 0 90 4 Q105 8 120 4' stroke='%2300A693' stroke-width='2' fill='none'/%3E%3C/svg%3E") repeat-x;
  background-size: 60px 8px;
}

.teal-rule {
  width: 44px;
  height: 3px;
  background: var(--teal);
  margin: 20px auto;
  border-radius: 2px;
}

.lead-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ===== TOOLS GRID ===== */
.tools-section {
  padding: 96px 0;
  background: var(--grey-bg);
}

.tools-section .container {
  max-width: 1200px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header .teal {
  color: var(--teal);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.tool-card {
  background: var(--white);
  padding: 28px 24px;
  position: relative;
  transition: background 0.2s;
  cursor: pointer;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.tool-card:hover {
  background: var(--grey-bg);
}

.tool-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-bg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.tool-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.tool-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.tool-card .try-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--teal);
  opacity: 0;
  transition: opacity 0.2s;
}

.tool-card:hover .try-link {
  opacity: 1;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 96px 0;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
  position: relative;
}

.how-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  border-top: 2px dashed var(--teal);
}

.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 24px;
}

.step-circle.outline {
  border: 3px solid var(--teal);
  color: var(--teal);
  background: var(--white);
}

.step-circle.filled-teal {
  background: var(--teal);
  color: var(--white);
}

.step-circle.filled-navy {
  background: var(--navy);
  color: var(--white);
}

.how-step h4 {
  margin-bottom: 8px;
}

.how-step p {
  font-size: 14px;
  color: var(--text-mid);
}

/* ===== B2B SECTION ===== */
.b2b-section {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.b2b-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/images/bg-pattern.png') center/cover;
  opacity: 0.06;
}

.b2b-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('../assets/images/nodes-pattern.png') center/cover;
  opacity: 0.07;
}

.b2b-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.b2b-section .section-eyebrow {
  color: var(--teal-light);
}

.b2b-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.b2b-section .lead-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

.b2b-section .btn-primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.b2b-section .btn-primary:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* ===== FINAL CTA ===== */
.cta-section {
  padding: 96px 0;
  text-align: center;
}

.cta-section .container {
  max-width: 700px;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section .lead-text {
  margin-bottom: 28px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .how-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
  }

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

  .stats-bar {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .logo-items {
    flex-wrap: wrap;
  }

  .logo-item {
    border-right: none;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===== GLOBAL UTILITIES ===== */
.teal { color: var(--teal); }
.teal-light { color: var(--teal-light); }
.navy { color: var(--navy); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-input,
.form-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--text);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-bg);
}

.form-input::placeholder { color: var(--text-muted); }

textarea.form-input { resize: vertical; line-height: 1.6; }

select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ===== SPINNER ===== */
.spinner {
  width: 44px;
  height: 44px;
  border: 4px solid var(--teal-bg);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

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

/* ===== BUTTON VARIANTS ===== */
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}

/* ===== SIDEBAR ADS ===== */
.ad-sidebar {
  position: sticky;
  top: 90px;
  height: fit-content;
}

/* ===== MOBILE MENU OPEN ===== */
@media (max-width: 768px) {
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
    gap: 16px;
  }

  .mobile-menu-btn { display: block; }
}

/* ===== PREMIUM COMPONENTS ===== */
.premium-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--teal-border);
}

/* Progress Circle */
.progress-ring-container {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-ring-text {
  position: absolute;
  text-align: center;
}

.progress-ring-text .score {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--navy);
  display: block;
  line-height: 1;
}

.progress-ring-text .label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

/* Roadmap Component */
.roadmap-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
}

.roadmap-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
  transform: translateY(-50%);
}

.roadmap-step {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: all 0.3s;
  font-size: 20px;
}

.roadmap-step.active .step-icon {
  border-color: var(--teal);
  background: var(--teal-bg);
  color: var(--teal);
  box-shadow: 0 0 15px rgba(0, 166, 147, 0.2);
}

.roadmap-step.completed .step-icon {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.step-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  display: block;
}

.step-sub {
  font-size: 11px;
  color: var(--text-muted);
}

/* Table Enhancements */
.premium-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.premium-table th {
  padding: 12px 16px;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.premium-table tr td {
  background: var(--white);
  padding: 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.premium-table tr td:first-child {
  border-left: 1px solid var(--border);
  border-top-left-radius: var(--r-md);
  border-bottom-left-radius: var(--r-md);
}

.premium-table tr td:last-child {
  border-right: 1px solid var(--border);
  border-top-right-radius: var(--r-md);
  border-bottom-right-radius: var(--r-md);
}

.premium-table tr:hover td {
  background: var(--grey-bg);
  border-color: var(--teal-border);
}