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

/* Reset and Globals */
body {
  background-color: #ffffff;
  color: var(--text-dark);
 
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}




/* Background Glow Effects */
.hero-wrapper {
  position: relative;
  width: 100%;
  padding: clamp(110px, 12vw, 160px) 0 clamp(64px, 8vw, 100px);
  background-color: #FAF8F5;
  overflow: hidden;
}

.orange-shadow {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: #FFDDB6;
  filter: blur(60px);
  position: absolute;
  top: 20%;
  left: -5%;
  opacity: 0.3;

}

.blue-shadow {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: #CDE5FF;
  filter: blur(60px);
  position: absolute;
  top: 20%;
  right: 0;
  opacity: 0.3;

}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Typography */
.hero-headline {

  font-weight: 700;
  font-size: clamp(2.45rem, 5.4vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: clamp(-1.5px, -0.06vw, -0.5px);
  color: #161616;
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
}

.hero-headline-line {
  display: block;
  white-space: nowrap;
}

.hero-headline-highlight {
  color: #0161FF;
}

.hero-subheading {

  font-weight: 300;
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  letter-spacing: 1px;
  line-height: 1.2;
  color: #504538;
  max-width: 530px;
  margin: 0 auto 2.5rem auto;
}

/* Hero Action Button Layout */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 5.5rem;
}

/* Feature Cards Grid & Stack */
.features-grid {
  margin-top: 2rem;
  position: relative;
  overflow: visible;
}

.card-wrapper {
  margin-bottom: 2rem;
}

/* Shared Feature Card styles */
.feature-card {
  border-radius: 32px;
  padding: 1.8rem 1.9rem 2rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
  min-width: 0;
}

.card-header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.card-title {

  font-weight: 700;
  font-size: 1.35rem;
  margin: 0;
}

/* Card 1: No-Code Page Builder */
.card-no-code {
  background: #E8AF59;
  position: relative;
  z-index: 5;
  overflow: hidden;
  border: 0;
  border-radius: 40px;
  transform: rotate(-3.5deg) translateY(24px) translateX(10px);
  box-shadow: 0 34px 54px rgba(88, 58, 19, 0.18), 0 12px 20px rgba(88, 58, 19, 0.08);
  padding: 2rem 2.15rem 1.8rem;
  max-height: 400px;
}

.card-no-code:hover {
  transform: rotate(-1deg) translateY(8px) scale(1.03);
  z-index: 15;
  box-shadow: 0 42px 76px rgba(88, 58, 19, 0.23), 0 14px 26px rgba(88, 58, 19, 0.1);
}

.card-no-code .card-title {

  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.05;
  color: #704407;
  letter-spacing: 0;
  margin-top: 3px;
}

.card-no-code .card-header-info {
  align-items: flex-start;
  margin-bottom: 0.95rem;
  padding: 0 0.1rem 0 0.2rem;
}

.no-code-builder-icon {
  display: inline-flex;
  width: clamp(38px, 4vw, 48px);
  height: clamp(38px, 4vw, 48px);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: #704407;
}

.no-code-builder-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}


/* Card 2: Course Website */
.card-course-website {
  background-color: #86B8E5;
  color: #1E3A5F;
  transform: translateY(-8px) scale(1.05);
  z-index: 10;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 45px rgba(30, 58, 95, 0.15);
  border-radius: 48px;
}

.card-course-website:hover {
  transform: translateY(-16px) scale(1.08);
  z-index: 16;
  box-shadow: 0 40px 80px rgba(30, 58, 95, 0.25);
}

.card-course-website .card-title {
  font-weight: 600;
  font-size: 1.25rem;
  color: #054970;
}


/* Card 3: Learmo AI */
.card-learmo-ai {
  background-color: #E4E2E1;
  transform: rotate(3.5deg) translateY(24px) translateX(-10px);
  z-index: 5;
  border-radius: 48px;
}

.card-learmo-ai:hover {
  transform: rotate(1deg) translateY(8px) scale(1.03);
  z-index: 15;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.card-learmo-ai .card-title {

  font-weight: 600;
  font-size: 1.25rem;
  color: #000000;
}


/* Mobile feature card resets */
@media (max-width: 767px) {

  .card-no-code,
  .card-course-website,
  .card-learmo-ai {
    transform: none !important;
    margin-bottom: 2rem;
  }

  .card-course-website {
    box-shadow: 0 15px 45px rgba(30, 58, 95, 0.08) !important;
  }
}

/* Card Mockup Window & Graphics */
.mockup-window {
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0.8rem;
  margin-top: auto;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Mockup 1 inside Card 1 (No-Code Page Builder) */
.mockup-nocode-bg {
  background: #FFF7EB;
  border: none;
  border-radius: 34px;
  padding: 0.8rem 0.95rem 0;
  min-height: 196px;
  max-height: 252px;
  box-shadow: inset 0 0 0 1px rgba(139, 91, 24, 0.04);
}

.card-no-code .browser-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 16px;
  margin-bottom: 0.55rem;
}

.card-no-code .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #E9BC79;
}

.card-no-code .dot.red-dot,
.card-no-code .dot.yellow-dot,
.card-no-code .dot.green-dot {
  background-color: #E9BC79;
  opacity: 1;
}

.card-no-code .browser-header-dots {
  display: flex;
  gap: 6px;
  margin-left: 0.5rem;
}

.card-no-code .header-search-capsule,
.card-no-code .header-profile-circle {
  display: none;
}

.card-no-code .browser-content-wrap {
  display: flex;
  gap: 0;
  min-height: 154px;
  margin: 0 -0.95rem;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  background: #EFC88F;
}

.card-no-code .browser-sidebar {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 54px;
  margin: 0;
  padding: 0.8rem 0 0;
  align-items: center;
  background: #FFF7EB;
}

.card-no-code .sidebar-circle {
  width: 27px;
  height: 16px;
  border-radius: 999px;
  background-color: #F8E5C8;
}

.card-no-code .sidebar-circle.ui-circle {
  background-color: #A78A5D;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;

  font-weight: 700;
  text-transform: lowercase;
  width: 28px;
  height: 28px;
  margin-bottom: 0;
}

.card-no-code .browser-sidebar .sidebar-circle:not(.ui-circle) {
  width: 27px;
  height: 16px;
  border-radius: 999px;
  background-color: #F8E5C8;
}

.card-no-code .browser-main-panel {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
  padding: 0.8rem 0.9rem 0.72rem;
  background: #EFC88F;
}

.card-no-code .panel-hero {
  height: 34px;
  background-color: #D9B06F;
  border-radius: 8px;
}

.card-no-code .panel-row {
  display: flex;
  gap: 8px;
}

.card-no-code .panel-col {
  flex: 1;
  height: 42px;
  background-color: #FFF7EB;
  border-radius: 10px;
}

.card-no-code .panel-col-dashed {
  background-color: #FFF7EB;
  border: 2px dotted rgba(167, 138, 93, 0.45) !important;
}

.card-no-code .panel-footer-bar {
  height: 24px;
  background-color: #FFF7EB;
  border-radius: 8px;
  width: 100%;
}

.card-no-code .panel-bottom-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 7px;
}

.card-no-code .panel-footer-btn {
  background-color: rgba(167, 138, 93, 0.68);
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
  opacity: 1;
  line-height: 1;
}

.card-no-code .panel-cursor {
  position: absolute;
  top: -18px;
  right: -17px;
  width: 27px;
  height: 27px;
  color: #ffffff;
  filter: drop-shadow(0 3px 3px rgba(111, 74, 24, 0.16));
}

@media (max-width: 1199px) {
  .card-no-code {
    padding: 1.8rem 1.8rem 1.6rem;
    max-height: 372px;
  }

  .mockup-nocode-bg {
    min-height: 184px;
  }

  .card-no-code .browser-content-wrap {
    min-height: 146px;
  }

  .card-no-code .browser-sidebar {
    width: 48px;
  }

  .card-no-code .panel-hero {
    height: 30px;
  }

  .card-no-code .panel-col {
    height: 38px;
  }
}

@media (max-width: 767px) {
  .card-no-code {
    border-radius: 40px;
    padding: 1.65rem 1.35rem 1.45rem;
    max-height: none;
    box-shadow: 0 24px 46px rgba(88, 58, 19, 0.16);
  }

  .card-no-code .card-header-info {
    margin-bottom: 0.85rem;
  }

  .mockup-nocode-bg {
    min-height: 174px;
    border-radius: 28px;
  }
}

/* Mockup 2 inside Card 2 (Course Website) */
.mockup-outer-wrap {
  background-color: rgba(255, 255, 255, 0.35);
  border-radius: 40px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: none;
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.2);
}

.mockup-window-new {
  background-color: #ffffff;
  border-radius: 22px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
  padding: 1.2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.browser-header-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  width: 100%;
}

.dots-group {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.mock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.mock-dot.red {
  background-color: #ff5f56;
}

.mock-dot.yellow {
  background-color: #ffbd2e;
}

.mock-dot.green {
  background-color: #27c93f;
}

.search-bar-mock {
  height: 10px;
  flex-grow: 1;
  max-width: 50%;
  background-color: #F3F4F6;
  border-radius: 5px;
  margin: 0 12px;
}

.profile-dot-mock {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #D1D5DB;
  flex-shrink: 0;
}

.browser-content-new {
  display: flex;
  gap: 0.8rem;
  align-items: stretch;
  width: 100%;
}

.video-mock {
  flex: 1.8;
  aspect-ratio: 1.6;
  background-color: #79AFEC;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button-mock {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.play-button-mock:hover {
  transform: scale(1.1);
}

.sidebar-mock {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.skeleton-pill {
  height: 6px;
  background-color: #DDEAFC;
  border-radius: 3px;
  width: 85%;
}

.skeleton-pill.highlighted {
  height: 18px;
  background-color: #E6F0FE;
  border: 1px solid #DDEAFC;
  border-radius: 9px;
  width: 100%;
}

.skeleton-line-mock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.skeleton-bar-mock {
  height: 4px;
  background-color: #F3F4F6;
  border-radius: 2px;
  flex-grow: 1;
  max-width: 80%;
}

.skeleton-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid #D1D5DB;
  flex-shrink: 0;
}

/* Mockup 3 inside Card 3 (Learmo AI) */
.mockup-ai-bg {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
}

.ai-input-skeleton {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.ai-input-skeleton.reversed {
  flex-direction: row-reverse;
}

.ai-skeleton-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-grow: 1;
}

.ai-skeleton-bar {
  height: 6px;
  background-color: #D1D5DB;
  border-radius: 3px;
  width: 60%;
}

.ai-skeleton-bar.long {
  width: 80%;
}

.ai-skeleton-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #D9D2C9;
  flex-shrink: 0;
}

.ai-share-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #D2D9E2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  flex-shrink: 0;
}

.ai-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0.5rem;
}

.ai-create-btn {
  background-color: #1A1A1A;
  color: #ffffff;

  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 99px;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-grow: 1;
  transition: all 0.3s ease;
}

.ai-create-btn:hover {
  background-color: #000000;
  transform: translateY(-2px);
  color: #ffffff;
}

.ai-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #1A1A1A;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ai-send-btn svg {
  transform: rotate(45deg);
}

.ai-send-btn:hover {
  transform: scale(1.1);
}

.ai-create-btn:hover {
  background-color: #2c2c2c;
  color: #ffffff;
}

.ai-btn-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* ==========================================================================
   More Than a Course Platform Section Styling
   ========================================================================== */
.more-than-platform-section {
  /* background-color: var(--bg-off-white); */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}


/* Feature Item Row */
.feature-item {
  display: flex;
  flex-direction: column;
}

.platform-features-row {
  border-top: 1px solid #E9E8E5;
  padding-top: 2rem;
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.create-icon {
  background-color: var(--accent-blue-light);
  color: var(--primary-blue);
}

.sell-icon {
  background-color: var(--accent-blue-light);
  color: var(--primary-blue);
}

.manage-icon {
  background-color: var(--accent-blue-light);
  color: var(--primary-blue);
}

.feature-title {

  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.feature-text {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Audience Banner styling adjustments */
.audience-banner {
  /* max-width: 480px; */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.banner-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-title {

  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.banner-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Right Column Visual Dashboard mockup styling */
.visual-col {
  min-height: 490px;
}

.mockup-container {
  width: 100%;
  max-width: 650px;
  min-height: 100%;
  position: relative;
}

.dashboard-main-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  min-height: 100%;
}

/* Browser window header dots */
.browser-dots {
  gap: 6px;
}

.browser-dots [class^="dot-"] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
  background-color: rgba(194, 198, 217, 0.3) !important;
}

.dot-red {
  background-color: #ff5f56;
}

.dot-yellow {
  background-color: #ffbd2e;
}

.dot-green {
  background-color: #27c93f;
}

.mockup-divider {
  border: 0;
  height: 16px;
  max-width: 145px;
  background-color: #EFEEEB;
  border-radius: 999px;
  opacity: 1;
}

.border-end-custom {

  border: 1px solid rgba(20, 88, 217, 0.1);
  background-color: rgba(20, 88, 217, 0.03);
  border-radius: 1rem;
  padding: 16px;
}

.active-student-box {
  border: 1px solid rgba(26, 28, 26, 0.05);
  background-color: rgba(26, 28, 26, 0.05);
  border-radius: 1rem;
  padding: 16px;
}

/* Metrics styles */
.metric-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.metric-value {

  font-weight: 700;
  font-size: 1.75rem;

}

.progress-bar-sales {
  height: 6px;
  background-color: rgba(20, 88, 217, 0.1);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  width: 85%;
}

.progress-bar-sales::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 75%;
  background-color: var(--primary-blue);
  border-radius: 3px;
}

/* Stacked Avatar group */
.student-avatars {
  position: relative;
}

.student-avatars .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: inline-block;
  margin-right: -8px;
  background-size: cover;
  background-position: center;
}

.student-avatars .avatar-1 {
  background-color: #dda461;
}

.student-avatars .avatar-2 {
  background-color: #79afec;
}

.student-avatars .avatar-3 {
  background-color: #e5e4df;
}

.student-avatars .avatar-more {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-color: var(--primary-blue);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
}

/* Skeleton Lines */
.skeleton-line {
  height: 12px;
  background-color: #f2f2f2;
  border-radius: 999px;
}

/* Floating Card Base Styles */
.floating-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
  pointer-events: auto;
  padding: 20px 24px;
  max-width: 180px;
  border-radius: 8px;
}

.floating-card:hover {
  transform: translateY(-5px) scale(1.03) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
  z-index: 10 !important;
}

.floating-icon-wrapper {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-title {

  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.2;
  color: var(--text-dark);
}

.floating-footer {
  margin-top: auto;
}

.footer-bar {
  height: 4px;
  background-color: #f0f0f0;
  border-radius: 2px;
}

.w-70 {
  width: 70%;
}

.w-50 {
  width: 50%;
}

/* AI Content Pipeline (Top-Center) */
.ai-pipeline-card {
  top: -50px;
  left: 42%;
  width: 180px;
  border: 1.5px solid var(--primary-blue) !important;
  transform: rotate(6deg);
  z-index: 3;
}

.pipeline-icon {
  background-color: var(--accent-blue-light);
  color: var(--primary-blue);
}

/* Student Experience (Middle-Right) */
.student-experience-card {
  top: 172px;
  right: -109px;
  width: 180px;
  border: 1.5px solid #E2B953 !important;
  transform: rotate(7deg);
  z-index: 3;

}

.experience-icon {
  background-color: var(--accent-orange-light);
  color: var(--accent-orange);
}

.experience-percent {

  font-weight: 700;
  font-size: 0.75rem;
}

.text-orange {
  color: var(--accent-orange);
}

.footer-avatar-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #f7f6f2;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8c8c8c;
}

.experience-skeleton-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Monetization Funnel (Bottom-Left) */
.monetization-funnel-card {
  bottom: -50px;
  left: 56px;
  width: 180px;
  border: 1.5px solid var(--accent-green) !important;
  transform: rotate(-6deg);
  z-index: 3;
}


.funnel-icon {
  background-color: var(--accent-green-light);
  color: var(--accent-green);
}

.funnel-btn {
  background-color: var(--accent-green);
  color: #ffffff;

  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease;
  border-radius: 4px;
}

.funnel-btn:hover {
  background-color: #1e6d38;
}

/* 75% Ready to Publish Progress Circle (Bottom-Right) */
.progress-circle-card {
  bottom: -60px;
  right: 28px;
  width: 180px;
  border: 1.5px solid var(--primary-blue) !important;
  transform: rotate(0deg);
  z-index: 3;
}

.circle-progress-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
}

.progress-svg {
  transform: rotate(-90deg);
}

.progress-bg-circle {
  fill: none;
  stroke: #f0f4fa;
  stroke-width: 6;
}

.progress-active-circle {
  fill: none;
  stroke: var(--primary-blue);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s ease;
}

.circle-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.circle-percent {

  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1;
}

.circle-label-inner {
  font-size: 0.45rem;
  font-weight: 700;
  color: #8c8c8c;
  letter-spacing: 0.5px;
}

.circle-subtitle {

  font-weight: 700;
  font-size: 0.55rem;
  color: var(--primary-blue);
  letter-spacing: 0.5px;
}

/* Floating animation styles (perpetual) */
@keyframes floatUp {
  0% {
    transform: translateY(0px) rotate(var(--rot));
  }

  50% {
    transform: translateY(-8px) rotate(var(--rot));
  }

  100% {
    transform: translateY(0px) rotate(var(--rot));
  }
}

.ai-pipeline-card {
  --rot: -6deg;
}

.student-experience-card {
  --rot: 11deg;
}

.monetization-funnel-card {
  --rot: -6deg;
}

.progress-circle-card {
  --rot: 0deg;
}

/* Entrance transitions when JavaScript is active */
.js-enabled .dashboard-main-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-enabled .floating-card {
  opacity: 0;
  transform: translateY(30px) rotate(var(--rot)) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-enabled .dashboard-main-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .floating-card.animate-in {
  opacity: 1;
  transform: translateY(0) rotate(var(--rot)) scale(1);
}

/* Run perpetual float animations after cards enter or if JS is disabled */
.ai-pipeline-card.animate-in,
:not(.js-enabled) .ai-pipeline-card {
  animation: floatUp 5s ease-in-out infinite;
}

.student-experience-card.animate-in,
:not(.js-enabled) .student-experience-card {
  animation: floatUp 6s ease-in-out infinite 0.5s;
}

.monetization-funnel-card.animate-in,
:not(.js-enabled) .monetization-funnel-card {
  animation: floatUp 5.5s ease-in-out infinite 1s;
}

.progress-circle-card.animate-in,
:not(.js-enabled) .progress-circle-card {
  animation: floatUp 4.8s ease-in-out infinite 1.5s;
}

/* ==========================================================================
   Problem Section Styling
   ========================================================================== */
.problem-section {
  /* background-color: var(--bg-off-white); */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Left Column Visual */
.problem-visual-col {
  min-height: 520px;
}

.problem-mockup-wrapper {
  background: linear-gradient(145deg, #F5F6FF 0%, #EEF0FF 100%);
  border-radius: 46px;
  width: 100%;
  max-width: 520px;
  min-height: 430px;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  isolation: isolate;
  padding: 50px;
}

.problem-connection-lines {
  position: absolute;
  inset: 42px 34px;
  width: calc(100% - 68px);
  height: calc(100% - 84px);
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}

.problem-connection-lines path {
  stroke: rgba(165, 172, 205, 0.48);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 3 6;
}

.problem-mockup-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(235, 237, 248, 0.92);
  border-radius: 28px;
  width: 100%;
  min-height: 234px;
  padding: 26px 24px 28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 26px 60px rgba(80, 87, 124, 0.08);
}

.problem-browser-dots {
  gap: 8px;
  margin-bottom: 22px;
}

.problem-browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #EBEDF6;
}

.problem-bar {
  height: 14px;
  width: 82%;
  background-color: #ECECF8;
  border-radius: 999px;
  margin-bottom: 18px;
}

.problem-box {
  height: 90px !important;
  background-color: #EEEEF8;
  border-radius: 8px;
}

.problem-boxes {
  margin-bottom: 16px;
}

.warning-box {
  background-color: #EEEEF8;
}

.warning-circle-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 10px 20px rgba(80, 87, 124, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.warning-circle-icon span {

  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-1px);
}

.problem-footer-bar {
  height: 8px;
  width: 100%;
  background-color: #F0F1F8;
  border-radius: 999px;
  margin-top: 0;
}

.problem-footer-bar-short {
  width: 76%;
  margin-top: 13px;
}

/* Problem floating cards base overrides */
.problem-float-card {
  width: 102px;
  min-height: 104px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(235, 237, 248, 0.95) !important;
  border-radius: 24px;
  padding: 20px 16px 18px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 24px 42px rgba(80, 87, 124, 0.14), 0 4px 12px rgba(80, 87, 124, 0.06);
}

.float-icon-wrapper {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #747989;
  margin-bottom: 10px;
}

.float-chart-bars {
  gap: 7px;
  min-height: 38px;
}

.float-chart-bars span {
  width: 7px;
  border-radius: 999px 999px 0 0;
  background-color: #E9EBF4;
}

.float-chart-bars span:nth-child(1) {
  height: 22px;
}

.float-chart-bars span:nth-child(2) {
  height: 34px;
}

.float-chart-bars span:nth-child(3) {
  height: 16px;
}

.float-line {
  height: 5px;
  border-radius: 999px;
  background-color: #E8EAF4;
  margin-top: 8px;
}

.float-line-lg {
  width: 54px;
}

.float-line-md {
  width: 50px;
}

.float-line-sm {
  width: 38px;
}

.float-line-xs {
  width: 28px;
}

/* Chart Card (Top-Left) */
.chart-card {
  top: -28px;
  left: 72px;
  transform: rotate(-7deg);
}

/* Mail Card (Top-Right) */
.mail-card {
  top: 52px;
  right: -28px;
  width: 110px;
  min-height: 106px;
  transform: rotate(7deg);
}

/* Checkout Card (Bottom-Right) */
.checkout-card {
  bottom: 28px;
  right: 48px;
  width: 118px;
  min-height: 90px;
  transform: rotate(-3deg);
}

/* Problem float keyframes */
@keyframes problemFloat {
  0% {
    transform: translateY(0px) rotate(var(--prot, 0deg));
  }

  50% {
    transform: translateY(-6px) rotate(var(--prot, 0deg));
  }

  100% {
    transform: translateY(0px) rotate(var(--prot, 0deg));
  }
}

.chart-card {
  --prot: -7deg;
  animation: problemFloat 5s ease-in-out infinite;
}

.mail-card {
  --prot: 7deg;
  animation: problemFloat 5.5s ease-in-out infinite 0.4s;
}

.checkout-card {
  --prot: -3deg;
  animation: problemFloat 4.8s ease-in-out infinite 0.8s;
}

/* Right Column: Problem List */
.problem-icon-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: #FBDDAE;
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-item-title {

  font-weight: 700;
  font-size: 1rem;
  color: #191B24;
}

.problem-item-text {
  font-size: 0.825rem;
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 350px;
}

/* Bottom Banner */
.problem-bottom-banner {
  background-color: var(--primary-blue);
  border-radius: 48px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  max-width: 560px;
  box-shadow: 0 20px 50px rgba(0, 75, 202, 0.2);
}

.banner-highlight-text {

  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #ffffff;
}

.btn-simplify {
  background-color: #FBDDAE;
  color: var(--primary-blue);
  border: none;
  border-radius: 9999px;

  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-simplify:hover {
  background-color: #f0f0f0;
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Creator avatar group inside banner */
.creator-avatars-group .avatar {
  width: 35px;
  height: 35px;
  border: 2px solid #ffffff;
  overflow: hidden;
  border-radius: 50%;
  margin-right: -8px;
}

.creator-avatars-group .avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.avatar-plus {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-color: var(--primary-blue);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: -8px;
}

.join-counter-text {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.85rem;
  margin-left: 12px;
}

/* Problem section responsive */
@media (max-width: 991px) {
  .problem-section {
    padding: 60px 0;
  }

  .problem-visual-col {
    min-height: 440px;
  }

  .problem-mockup-wrapper {
    max-width: 460px;
    min-height: 390px;
  }

  .problem-mockup-card {
    width: min(80%, 370px);
    min-height: 214px;
  }

  .chart-card {
    left: 54px;
  }

  .mail-card {
    right: -8px;
  }

  .checkout-card {
    right: 38px;
  }
}

@media (max-width: 576px) {
  .problem-mockup-wrapper {
    max-width: 334px;
    min-height: 318px;
    border-radius: 32px;
  }

  .problem-mockup-card {
    width: 82%;
    min-height: 172px;
    border-radius: 20px;
    padding: 18px 16px 20px;
  }

  .problem-browser-dots {
    gap: 6px;
    margin-bottom: 14px;
  }

  .problem-browser-dots span {
    width: 8px;
    height: 8px;
  }

  .problem-bar {
    height: 10px;
    margin-bottom: 12px;
  }

  .problem-box {
    height: 52px !important;
  }

  .problem-boxes {
    --bs-gutter-x: 0.55rem;
    margin-bottom: 11px;
  }

  .warning-circle-icon {
    width: 44px;
    height: 44px;
    border-width: 3px;
  }

  .warning-circle-icon span {
    font-size: 1.45rem;
  }

  .problem-footer-bar {
    height: 6px;
  }

  .problem-footer-bar-short {
    margin-top: 9px;
  }

  .problem-float-card {
    width: 78px;
    min-height: 78px;
    border-radius: 18px;
    padding: 12px 10px !important;
  }

  .float-icon-wrapper {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
  }

  .float-chart-bars {
    gap: 5px;
    min-height: 27px;
  }

  .float-chart-bars span {
    width: 5px;
  }

  .float-chart-bars span:nth-child(1) {
    height: 16px;
  }

  .float-chart-bars span:nth-child(2) {
    height: 25px;
  }

  .float-chart-bars span:nth-child(3) {
    height: 12px;
  }

  .float-line {
    height: 4px;
    margin-top: 6px;
  }

  .chart-card {
    left: 28px;
    top: -18px;
  }

  .mail-card {
    right: -4px;
    top: 34px;
    width: 82px;
    min-height: 82px;
  }

  .checkout-card {
    right: 28px;
    bottom: 18px;
    width: 90px;
    min-height: 74px;
  }

  .problem-bottom-banner {
    padding: 1.25rem !important;
  }

  .banner-highlight-text {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Solution Section Specific Card Styling
   ========================================================================== */
.solution-section {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
}

.solution-section .section-description {
  max-width: 100%;
}

/* Card 1: Hub (Pink/Red) */
.solution-card.border-pink {
  border-color: #AA6666 !important;
}

.solution-card.border-pink .solution-icon-box {
  background-color: #FDC1C1;
  color: #E11D48;
}

/* Card 2: Builder (Orange) */
.solution-card.border-orange {
  border-color: #CC735D !important;
}

.solution-card.border-orange .solution-icon-box {
  background-color: #F8E4DD;
  color: #EA580C;
}

/* Card 3: Management (Purple) */
.solution-card.border-purple {
  border-color: #D167FA !important;
}

.solution-card.border-purple .solution-icon-box {
  background-color: #F5E3FD;
  color: #9333EA;
}

/* Card 4: Monetization (Yellow) */
.solution-card.border-yellow {
  border-color: #D3B345 !important;
}

.solution-card.border-yellow .solution-icon-box {
  background-color: #FBF5D4;
  color: #CA8A04;
}

/* Card 5: Analytics (Light Blue) */
.solution-card.border-lightblue {
  border-color: #4BB6D2 !important;
}

.solution-card.border-lightblue .solution-icon-box {
  background-color: #E0F2F8;
  color: #0284C7;
}

/* Card 6: AI (Dark Blue / Primary Blue) */
.solution-card.border-darkblue {
  border-color: #165AD9 !important;
}

.solution-card.border-darkblue .solution-icon-box {
  background-color: #165AD9;
  color: #ffffff;
}


.solution-icon-box.bg-darkblue img {
  filter: brightness(0) invert(1);
}


@media (max-width: 991px) {
  .solution-section {
    padding: 60px 0;
  }
}

/* Responsive Overrides for new section */
@media (max-width: 991px) {
  .more-than-platform-section {
    padding: 60px 0;
  }

  .visual-col {
    min-height: 480px;
    margin-top: 4rem !important;
  }

  .mockup-container {
    max-width: 420px;
  }

  .student-experience-card {
    right: -25px;
  }

  .monetization-funnel-card {
    left: -20px;
  }

  .progress-circle-card {
    right: -15px;
  }
}

@media (max-width: 480px) {
  .visual-col {
    min-height: 400px;
  }

  .mockup-container {
    max-width: 290px;
  }

  .dashboard-main-card {
    padding: 1.25rem !important;
  }

  .metric-value {
    font-size: 1.35rem;
  }

  .student-avatars .avatar,
  .student-avatars .avatar-more {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
  }

  .ai-pipeline-card {
    top: -30px;
    left: auto;
    right: -10px;
    width: 110px;
  }

  .student-experience-card {
    top: 90px;
    right: -25px;
    width: 115px;
  }

  .monetization-funnel-card {
    bottom: -25px;
    left: -20px;
    width: 120px;
  }

  .progress-circle-card {
    bottom: -35px;
    right: -20px;
    width: 115px;
    padding: 1rem !important;
  }

  .circle-progress-wrapper {
    width: 60px;
    height: 60px;
  }

  .progress-svg {
    width: 60px;
    height: 60px;
  }

  .progress-bg-circle,
  .progress-active-circle {
    cx: 30;
    cy: 30;
    r: 24;
    stroke-width: 4;
  }

  .progress-active-circle {
    stroke-dasharray: 150.7;
    stroke-dashoffset: 37.7;
  }

  .circle-percent {
    font-size: 0.95rem;
  }
}

/* Dashboard mockup floating cards responsive reset */
@media (max-width: 991px) {
  .visual-col {
    min-height: auto;
    margin-top: 3rem !important;
  }

  .mockup-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 620px;
    min-height: 0;
    overflow: visible;
  }

  .dashboard-main-card {
    grid-column: 1 / -1;
    min-height: auto;
    margin-bottom: 0.35rem;
  }

  .mockup-container .ai-pipeline-card,
  .mockup-container .student-experience-card,
  .mockup-container .monetization-funnel-card,
  .mockup-container .progress-circle-card {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100%;
    max-width: none;
    min-height: 136px;
    transform: none !important;
    animation: none !important;
    justify-self: stretch;
    align-self: stretch;
    margin: 0;
  }

  .js-enabled .mockup-container .ai-pipeline-card,
  .js-enabled .mockup-container .student-experience-card,
  .js-enabled .mockup-container .monetization-funnel-card,
  .js-enabled .mockup-container .progress-circle-card,
  .js-enabled .mockup-container .ai-pipeline-card.animate-in,
  .js-enabled .mockup-container .student-experience-card.animate-in,
  .js-enabled .mockup-container .monetization-funnel-card.animate-in,
  .js-enabled .mockup-container .progress-circle-card.animate-in {
    opacity: 1;
    transform: none !important;
  }

  .mockup-container .floating-card:hover {
    transform: translateY(-3px) !important;
  }

  .progress-circle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .visual-col {
    margin-top: 2.5rem !important;
  }

  .mockup-container {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    max-width: 430px;
  }

  .dashboard-main-card {
    padding: 1.35rem !important;
  }

  .dashboard-main-card .row[style] {
    width: 100% !important;
  }

  .dashboard-main-card .skeleton-lines[style] {
    width: 100% !important;
  }

  .mockup-container .ai-pipeline-card,
  .mockup-container .student-experience-card,
  .mockup-container .monetization-funnel-card,
  .mockup-container .progress-circle-card {
    min-height: auto;
    padding: 1rem 1.1rem;
    border-radius: 12px;
  }

  .progress-circle-card {
    min-height: 150px !important;
  }
}

/* Custom Grid Center / Spacing Adjustments */
@media (max-width: 767px) {
  .hero-wrapper {
    padding: 120px 0 60px 0;
  }

  .card-no-code,
  .card-course-website,
  .card-learmo-ai {
    transform: none !important;
  }

  .card-wrapper {
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 3.5rem;
  }

  .btn-join-waitlist,
  .btn-explore-features {
    width: 100%;
    max-width: 280px;
  }

  .hero-headline {
    font-size: calc(2.1rem + 2.2vw);
  }

  .hero-headline-line {
    white-space: normal;
  }
}

@media (max-width:600px) {
  .hero-headline {
    font-size: calc(2.1rem + 2.2vw);
  }

}


@media (max-width:500px) {
  .hero-headline {
    font-size: calc(2.2rem);
  }

}

@media (max-width:420px) {
  .hero-headline {
    font-size: calc(2.2rem);
  }

}



@media (max-width:375px) {
  .hero-headline {
    font-size: calc(2.2rem);
  }

}

/* ======================================================================
   Index Responsive System: Hero Cards + Problem Visual
   ====================================================================== */
@media (min-width: 1200px) {
  .features-grid {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  .features-grid {
    align-items: stretch;
    padding-inline: 0.25rem;
  }

  .card-wrapper {
    margin-bottom: 0;
  }

  .feature-card {
    min-height: 342px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-wrapper {
    padding-top: 132px;
    padding-bottom: 76px;
  }

  .hero-headline {
    max-width: 760px;
    font-size: clamp(3.1rem, 6.7vw, 4.15rem);
  }

  .hero-subheading {
    max-width: 620px;
    margin-bottom: 2.75rem;
  }

  .hero-buttons {
    margin-bottom: 4.1rem;
  }

  .features-grid {
    max-width: 940px;
    margin-inline: auto;
  }

  .card-wrapper {
    margin-bottom: 0;
  }

  .feature-card {
    border-radius: 30px;
    padding: 1.3rem 1.2rem 1.35rem;
    min-height: 292px;
  }

  .card-title,
  .card-no-code .card-title,
  .card-course-website .card-title,
  .card-learmo-ai .card-title {
    font-size: clamp(0.95rem, 1.9vw, 1.08rem);
  }

  .card-header-info {
    margin-bottom: 0.75rem;
  }

  .card-no-code {
    border-radius: 34px;
    padding: 1.35rem 1.25rem 1.2rem;
    transform: rotate(-2deg) translateY(12px) translateX(4px);
    max-height: none;
  }

  .card-course-website {
    border-radius: 38px;
    transform: translateY(-4px) scale(1.02);
  }

  .card-learmo-ai {
    border-radius: 38px;
    transform: rotate(2deg) translateY(12px) translateX(-4px);
  }

  .card-no-code:hover {
    transform: rotate(-1deg) translateY(4px) scale(1.015);
  }

  .card-course-website:hover {
    transform: translateY(-8px) scale(1.035);
  }

  .card-learmo-ai:hover {
    transform: rotate(1deg) translateY(4px) scale(1.015);
  }

  .mockup-nocode-bg {
    border-radius: 26px;
    min-height: 160px;
    padding: 0.62rem 0.72rem 0;
  }

  .card-no-code .browser-content-wrap {
    min-height: 126px;
    margin-inline: -0.72rem;
  }

  .card-no-code .browser-sidebar {
    width: 42px;
    gap: 7px;
    padding-top: 0.65rem;
  }

  .card-no-code .sidebar-circle,
  .card-no-code .browser-sidebar .sidebar-circle:not(.ui-circle) {
    width: 22px;
    height: 13px;
  }

  .card-no-code .sidebar-circle.ui-circle {
    width: 24px;
    height: 24px;
    font-size: 0.6rem;
  }

  .card-no-code .browser-main-panel {
    gap: 6px;
    padding: 0.68rem 0.72rem 0.62rem;
  }

  .card-no-code .panel-hero {
    height: 26px;
  }

  .card-no-code .panel-row {
    gap: 6px;
  }

  .card-no-code .panel-col {
    height: 32px;
  }

  .card-no-code .panel-footer-bar {
    height: 20px;
  }

  .mockup-outer-wrap {
    border-radius: 28px;
    padding: 0.78rem;
  }

  .mockup-window-new {
    border-radius: 18px;
    padding: 0.8rem;
  }

  .browser-header-new {
    margin-bottom: 0.75rem;
  }

  .browser-content-new {
    gap: 0.55rem;
  }

  .sidebar-mock {
    gap: 7px;
  }

  .ai-input-skeleton {
    border-radius: 24px;
    padding: 0.82rem;
  }

  .ai-create-btn {
    font-size: 0.72rem;
    padding: 0.7rem 0.85rem;
  }

  .ai-send-btn {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 767.98px) {
  .orange-shadow,
  .blue-shadow {
    width: 220px;
    height: 220px;
    filter: blur(48px);
  }

  .hero-wrapper {
    padding-top: 108px;
    padding-bottom: 58px;
  }

  .hero-container {
    padding-inline: 18px;
  }

  .hero-headline {
    max-width: 100%;
    font-size: clamp(2.25rem, 8vw, 3.45rem);
    line-height: 1.03;
    letter-spacing: -0.6px;
  }

  .hero-headline-line {
    white-space: normal;
  }

  .hero-subheading {
    max-width: 34rem;
    margin-bottom: 2rem;
    letter-spacing: 0.35px;
  }

  .hero-buttons {
    margin-bottom: 3rem;
  }

  .features-grid {
    max-width: 440px;
    margin: 0 auto;
  }

  .card-wrapper {
    margin-bottom: 1.35rem;
  }

  .feature-card {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 1.5rem;
    border-radius: 28px;
  }

  .card-no-code,
  .card-course-website,
  .card-learmo-ai {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    transform: none !important;
    max-height: none;
    margin-bottom: 0;
  }

  .card-course-website,
  .card-learmo-ai {
    border-radius: 32px;
  }

  .card-header-info {
    gap: 1rem;
  }

  .card-header-info img,
  .no-code-builder-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
  }

  .mockup-window,
  .mockup-outer-wrap {
    margin-top: 0.2rem;
  }

  .mockup-nocode-bg {
    min-height: clamp(176px, 45vw, 220px);
  }

  .card-no-code .browser-content-wrap {
    min-height: clamp(138px, 34vw, 174px);
  }

  .problem-visual-col {
    min-height: auto;
    margin-block: 2rem !important;
  }

  .problem-mockup-wrapper {
    width: 100%;
    max-width: 420px;
    min-height: auto;
    padding: 1.25rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    border-radius: 34px;
  }

  .problem-connection-lines {
    display: none;
  }

  .problem-mockup-card {
    width: 100%;
    min-height: 190px;
    order: 1;
  }

  .problem-box {
    height: clamp(50px, 15vw, 68px) !important;
  }

  .problem-float-card {
    position: relative !important;
    inset: auto !important;
    width: 100%;
    min-height: 82px;
    transform: none !important;
    animation: none;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.8rem;
  }

  .chart-card {
    order: 2;
  }

  .mail-card {
    order: 3;
  }

  .checkout-card {
    order: 4;
  }

  .float-icon-wrapper {
    margin-bottom: 0;
    flex: 0 0 auto;
  }

  .float-chart-bars {
    flex: 1;
    justify-content: flex-start !important;
  }

  .float-line {
    margin-top: 0;
  }
}

@media (max-width: 575.98px) {
  .hero-container {
    padding-inline: 14px;
  }

  .hero-buttons {
    width: 100%;
  }

  .btn-join-waitlist,
  .btn-explore-features {
    max-width: none;
  }

  .features-grid {
    max-width: 100%;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .card-no-code {
    padding: 1.35rem 1.15rem 1.25rem;
    border-radius: 30px;
  }

  .card-title,
  .card-no-code .card-title,
  .card-course-website .card-title,
  .card-learmo-ai .card-title {
    font-size: 1.08rem;
  }

  .mockup-outer-wrap,
  .mockup-window-new {
    border-radius: 22px;
  }

  .browser-content-new {
    gap: 0.6rem;
  }

  .video-mock {
    border-radius: 12px;
  }

  .ai-create-btn {
    min-width: 0;
    font-size: 0.76rem;
    padding-inline: 0.9rem;
  }

  .problem-mockup-wrapper {
    max-width: 100%;
    padding: 1rem;
  }
}

/* Problem visual final responsive composition */
@media (max-width: 991px) {
  .problem-visual-col {
    min-height: auto;
    margin-block: 2.5rem !important;
  }

  .problem-mockup-wrapper {
    max-width: min(100%, 460px);
    min-height: 390px;
    padding: 44px 34px 54px;
    overflow: visible;
  }

  .problem-mockup-card {
    width: min(82%, 370px);
    min-height: 210px;
    z-index: 2;
  }

  .problem-float-card {
    width: 88px;
    min-height: 84px;
    padding: 14px 12px !important;
    border-radius: 20px;
    z-index: 4;
  }

  .float-icon-wrapper {
    width: 28px;
    height: 28px;
    margin-bottom: 7px;
  }

  .chart-card {
    top: -18px;
    left: 52px;
  }

  .mail-card {
    top: 46px;
    right: 8px;
    width: 92px;
    min-height: 88px;
  }

  .checkout-card {
    right: 54px;
    bottom: 20px;
    width: 98px;
    min-height: 78px;
  }
}

@media (max-width: 767px) {
  .problem-mockup-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    justify-items: center;
    gap: 14px;
    width: 100%;
    max-width: 420px;
    min-height: auto;
    padding: 28px 18px 22px;
    border-radius: 32px;
    overflow: visible;
  }

  .problem-connection-lines {
    display: none;
  }

  .problem-mockup-card {
    grid-column: 1 / -1;
    order: 1;
    width: 100%;
    min-height: 178px;
    padding: 18px 16px 20px;
    border-radius: 22px;
  }

  .problem-float-card {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    animation: none !important;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    width: clamp(78px, 25vw, 98px);
    min-height: clamp(76px, 23vw, 92px);
    padding: 12px 10px !important;
    border-radius: 18px;
    box-shadow: 0 16px 30px rgba(80, 87, 124, 0.12), 0 3px 10px rgba(80, 87, 124, 0.05);
  }

  .chart-card {
    grid-column: 1;
    order: 2;
    justify-self: end;
  }

  .mail-card {
    grid-column: 2;
    order: 3;
    justify-self: center;
  }

  .checkout-card {
    grid-column: 3;
    order: 4;
    justify-self: start;
  }

  .float-icon-wrapper {
    width: 26px;
    height: 26px;
    margin-bottom: 6px;
  }

  .float-chart-bars {
    flex: 0 0 auto;
    justify-content: center !important;
    min-height: 24px;
  }

  .float-line {
    margin-top: 5px;
  }
}

/* ==========================================================================
   Learning Hub Capabilities Section
   ========================================================================== */
.capabilities-section {
  background-color: var(--bg-off-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.capabilities-tabs-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  min-width: 0;
}

.capabilities-tabs-scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  touch-action: pan-x;
}

.capabilities-tabs-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.capabilities-tabs-nav {
  display: flex !important;
  gap: 12px;
  border-bottom: none;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  width: max-content !important;
  max-width: none !important;
  min-width: max-content !important;
  overflow: visible !important;
  white-space: nowrap !important;
  margin: 0;
  padding: 0;
}

.capabilities-tabs-nav::-webkit-scrollbar {
  display: none;
}

.capabilities-tabs-nav .nav-item {
  flex: 0 0 auto !important;
  flex-shrink: 0 !important;
  margin: 0;
}

.capabilities-tabs-nav .nav-link {

  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  display: inline-flex;
  flex: 0 0 auto !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
}

.capabilities-tabs-nav .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

/* Active highlights per tab with distinct accents */
.capabilities-tabs-nav .nav-link.active.tab-hub {
  background-color: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(20, 88, 217, 0.25);
}

.capabilities-tabs-nav .nav-link.active.tab-sales {
  background-color: #F97316 !important;
  /* Rose accent */
  border-color: #F97316 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.capabilities-tabs-nav .nav-link.active.tab-player {
  background-color: #A855F7 !important;
  /* Purple accent */
  border-color: #A855F7 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(147, 51, 234, 0.25);
}

.capabilities-tabs-nav .nav-link.active.tab-dashboard {
  background-color: #0EA5E9 !important;
  /* Sky Blue accent */
  border-color: #0EA5E9 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
}

.capabilities-tabs-nav .nav-link.active.tab-blog {
  background-color: #CAA94D !important;
  /* Gold accent */
  border-color: #CAA94D !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(202, 138, 4, 0.25);
}

.capabilities-tabs-nav .nav-link.active img {
  filter: brightness(0) invert(1);
}

.capabilities-tabs-container {
  max-width: 100% !important;
  overflow: visible !important;
}

.capabilities-tabs-container > .capabilities-tabs-scroll {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior-x: contain !important;
  scrollbar-width: none !important;
  touch-action: pan-x !important;
}

.capabilities-tabs-container > .capabilities-tabs-scroll::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.capabilities-tabs-container > .capabilities-tabs-scroll > .capabilities-tabs-nav.nav.nav-pills {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  align-items: center !important;
  overflow: visible !important;
  white-space: nowrap !important;
  width: max-content !important;
  max-width: none !important;
  min-width: max-content !important;
}

.capabilities-tabs-container > .capabilities-tabs-scroll > .capabilities-tabs-nav.nav.nav-pills > .nav-item {
  flex: 0 0 auto !important;
  flex-basis: auto !important;
  flex-grow: 0 !important;
  flex-shrink: 0 !important;
  width: auto !important;
  max-width: none !important;
  min-width: max-content !important;
}

.capabilities-tabs-container > .capabilities-tabs-scroll > .capabilities-tabs-nav.nav.nav-pills > .nav-item > .nav-link {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  flex-basis: auto !important;
  flex-grow: 0 !important;
  flex-shrink: 0 !important;
  width: auto !important;
  max-width: none !important;
  min-width: max-content !important;
  white-space: nowrap !important;
}

.capabilities-tabs-container > .capabilities-tabs-scroll > .capabilities-tabs-nav.nav.nav-pills > .nav-item > .nav-link span {
  white-space: nowrap !important;
}

.tab-icon {
  flex-shrink: 0;
  stroke: currentColor;
}

.tabs-nav-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
  margin: 2.5rem auto 0 auto;
}

/* Tab Panels Content Styling */
.capability-subtitle {

  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  color: var(--primary-blue);
}

.capability-title {

  font-weight: 700;
  font-size: calc(1.8rem + 0.8vw);
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.8px;
}

.capability-description {
 
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Mockup halos and frame containers */
.mockup-halo-wrapper {
  border-radius: 28px;
  padding: 1.5rem;
  transition: all 0.4s ease;
  width: 100%;
  margin: 0 auto;
  border: 2px solid transparent;
}


.mockup-halo-wrapper img {
  width: 100%;
}

/* White browser mockup frame */
.browser-mockup-frame {
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  width: 100%;
}

.browser-mockup-header {
  height: 36px;
  background-color: #fafbfc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  position: relative;
}

.dots-group-mock {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.dots-group-mock .mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dots-group-mock .mock-dot.red {
  background-color: #ff5f56;
}

.dots-group-mock .mock-dot.yellow {
  background-color: #ffbd2e;
}

.dots-group-mock .mock-dot.green {
  background-color: #27c93f;
}

.mock-address-bar {
  height: 20px;
  flex-grow: 1;
  max-width: 60%;
  margin: 0 auto;
  background-color: #eef2f6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
 
  font-size: 0.65rem;
  color: #7a828a;
  pointer-events: none;
}

.browser-mockup-body {
  background-color: #ffffff;
  width: 100%;
}

/* Sub-Mockups Inner Detail Classes */

/* 1. Hub Mockup */
.mockup-hub-body {
  padding: 1.5rem;
}

.hub-logo-skel {
  width: 60px;
  height: 10px;
  background-color: rgba(20, 88, 217, 0.15);
  border-radius: 4px;
}

.hub-menu-line {
  width: 35px;
  height: 6px;
  background-color: #eef2f6;
  border-radius: 3px;
}

.hub-course-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.course-thumbnail {
  aspect-ratio: 1.6;
  background-color: rgba(20, 88, 217, 0.06);
  width: 100%;
}

.skeleton-line-thick {
  height: 8px;
  background-color: #eef2f6;
  border-radius: 4px;
}

.skeleton-line-thin {
  height: 6px;
  background-color: #f3f7fa;
  border-radius: 3px;
}

/* 2. Sales Mockup */
.sales-badge-skeleton {
  width: 50px;
  height: 8px;
  background-color: rgba(225, 29, 72, 0.15);
  border-radius: 4px;
}

.sales-title-skeleton {
  width: 150px;
  height: 12px;
  background-color: #eef2f6;
  border-radius: 6px;
}

.sales-para-skeleton {
  height: 8px;
  background-color: #f3f7fa;
  border-radius: 4px;
}

.sales-checkout-card {
  width: 160px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.05);
}

.checkout-header-skel {
  width: 70px;
  height: 8px;
  background-color: #eef2f6;
  border-radius: 4px;
}

.checkout-price-skel {
  width: 50px;
  height: 14px;
  background-color: rgba(225, 29, 72, 0.2);
  border-radius: 7px;
}

.checkout-button-skel {
  height: 20px;
  width: 100%;
  background-color: #E11D48;
  border-radius: 10px;
}

/* 3. Player Mockup */
.mockup-player-body {
  background-color: #fafbfc;
}

.player-left-col {
  display: flex;
  flex-direction: column;
}

.player-video-card {
  background-color: #1a1c1e;
  border-radius: 10px;
  aspect-ratio: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-now-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  padding: 3px 8px;

  font-size: 0.5rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ef4444;
  display: inline-block;
}

.video-play-center-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9333EA;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-timeline-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.timeline-bar-full {
  height: 3px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 1.5px;
  width: 100%;
}

.timeline-bar-active {
  height: 100%;
  width: 40%;
  background-color: #9333EA;
  border-radius: 1.5px;
}

.timeline-icons-left svg,
.timeline-time-right {
  font-size: 0.5rem;
 
}

.video-detail-title-skel {
  height: 8px;
  background-color: #eef2f6;
  border-radius: 4px;
  max-width: 60%;
}

.skeleton-line-short {
  height: 6px;
  background-color: #f1f3f5;
  border-radius: 3px;
  width: 40px;
}

.resources-tag-skel {

  font-size: 0.55rem;
  font-weight: 700;
  color: #9333EA;
  background-color: rgba(147, 51, 234, 0.1);
  padding: 3px 6px;
  border-radius: 4px;
}

.player-right-col {
  width: 150px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 10px;
}

.lesson-badge {

  font-size: 0.55rem;
  font-weight: 700;
  color: #9333EA;
}

.lesson-count-skel {
 
  font-size: 0.55rem;
  color: #7a828a;
}

.lesson-item-skel {
  border-radius: 6px;
  background-color: #fafbfc;
}

.lesson-item-skel.active {
  background-color: rgba(147, 51, 234, 0.05);
}

.lesson-play-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(147, 51, 234, 0.15);
  color: #9333EA;
}

.lesson-lock-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #eef2f6;
}

.lesson-bar-skel {
  height: 5px;
  background-color: #eef2f6;
  border-radius: 2.5px;
}

.lesson-item-skel.active .lesson-bar-skel {
  background-color: rgba(147, 51, 234, 0.25);
}

/* 4. Student Dashboard Mockup */
.dash-avatar-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(14, 165, 233, 0.15);
}

.dash-search-profile-skel {
  height: 8px;
  background-color: #eef2f6;
  border-radius: 4px;
  max-width: 45%;
}

.dash-icons-right div {
  width: 18px;
  height: 18px;
  border-radius: 40%;
  background-color: #f1f5f9;
  color: #64748b;
}

.dash-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.dash-circle-progress {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dash-progress-text {
  position: absolute;

  font-size: 0.65rem;
  font-weight: 700;
  color: #0ea5e9;
}

.dash-card-label {

  font-size: 0.55rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.dash-card-number {

  font-size: 1.1rem;
  font-weight: 700;
  color: #0ea5e9;
}

.recent-header {

  font-size: 0.6rem;
  font-weight: 700;
  color: #64748b;
}

.view-all-link {
  color: #0ea5e9;
}

.timeline-date {

  font-size: 0.5rem;
  color: #64748b;
  line-height: 1.1;
}

.timeline-line-wrap {
  height: 4px;
  background-color: #e6f0fa;
  border-radius: 2px;
}

.timeline-bar-progress {
  height: 100%;
  width: 70%;
  background-color: #0ea5e9;
  border-radius: 2px;
}

.timeline-bar-progress.empty {
  width: 0;
}

/* 5. Blog Mockup */
.blog-logo-block {
  width: 45px;
  height: 10px;
  background-color: rgba(202, 138, 4, 0.15);
  border-radius: 3px;
}

.blog-menu-line {
  width: 25px;
  height: 5px;
  background-color: #eef2f6;
  border-radius: 2.5px;
}

.blog-featured-skel {
  background-color: #fef9c3;
  border-radius: 12px;
  border: 1px solid rgba(202, 138, 4, 0.1);
}

.blog-category-tag-skel {

  font-size: 0.5rem;
  font-weight: 700;
  color: #ca8a04;
  background-color: rgba(202, 138, 4, 0.1);
  padding: 3px 6px;
  border-radius: 4px;
  display: inline-block;
}

.blog-featured-title-skel {
  height: 10px;
  background-color: rgba(202, 138, 4, 0.15);
  border-radius: 5px;
}

.author-circle-skel {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(202, 138, 4, 0.2);
}

.author-line-skel {
  width: 50px;
  height: 5px;
  background-color: #ca8a04;
  opacity: 0.25;
  border-radius: 2.5px;
}

.blog-card-skel {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.blog-card-img-skel {
  aspect-ratio: 1.8;
  background-color: #fefcf3;
  width: 100%;
}

.skel-line-thick {
  height: 6px;
  background-color: #eef2f6;
  border-radius: 3px;
}

.skel-line-thin {
  height: 5px;
  background-color: #f8f9fa;
  border-radius: 2.5px;
}

.blog-card-footer {

  font-size: 0.55rem;
  font-weight: 700;
  color: #ca8a04;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  padding-top: 8px;
}

/* ==========================================================================
   Responsive Utilities for Capabilities
   ========================================================================== */
@media (max-width: 991px) {
  .capabilities-section {
    padding: 60px 0;
  }

  .capabilities-tabs-container {
    padding: 0;
  }

  .capabilities-tabs-scroll {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 10px 1rem;
    scrollbar-width: none !important;
  }

  .capabilities-tabs-scroll::-webkit-scrollbar {
    display: none !important;
  }

  .capabilities-tabs-nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
    justify-content: flex-start !important;
    width: max-content !important;
    max-width: none !important;
    min-width: max-content !important;
    padding: 0;
    white-space: nowrap !important;
  }

  .capabilities-tabs-nav::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
  }

  .capabilities-tabs-nav .nav-item {
    flex: 0 0 auto !important;
    flex-shrink: 0 !important;
  }

  .capabilities-tabs-nav .nav-link {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }

  .tabs-nav-divider {
    margin: 1.5rem auto 0 auto;
  }

  .capability-title {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   Learmo AI Section Styling
   ========================================================================== */
.ai-engine-section {
  background-color: var(--bg-off-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Feature Cards */
.ai-feature-card {
  background-color: #F2F3FF;
  border-radius: 48px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 12px 32px rgba(20, 88, 217, 0.08);

}

.ai-card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(20, 88, 217, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--primary-blue);
  transition: background-color 0.3s ease;
}

.ai-feature-card:hover .ai-card-icon-wrap {
  background-color: rgba(20, 88, 217, 0.14);
}

.ai-card-title {

  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.ai-card-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Center Column: Engine */
.ai-engine-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 0;
}

/* Engine Circle Container with Horizontal Line */
.engine-circle-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;

}

.engine-circle-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0px;
  right: 0px;
  height: 1px;
  background-color: rgba(0, 75, 202, 0.2);
  z-index: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Engine Circle */
.engine-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 0 120px rgba(0, 97, 255, 0.6);
}

.engine-circle-content {
  background-color: rgba(255, 255, 255, 0.1);
  width: 207px;
  height: 207px;

  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.engine-circle-content img {
  filter: brightness(0) invert(1);
}

/* Dashed Inner Stroke */
.engine-circle::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 4px dashed rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

/* Sparks / Stars Icon */
.engine-stars-icon {
  margin-bottom: 8px;
}

/* Subtitle "HOW LEARMO WORKS" */
.engine-subtitle {

  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #1458D9;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Title "ENGINE" */
.engine-title {

  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
}

/* Meet Learmo AI Button */
.ai-meet-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-blue);
  color: #ffffff;

  font-weight: 600;
  font-size: 0.95rem;
  padding: 1.5rem 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(20, 88, 217, 0.25);
  position: relative;
  z-index: 1;
}

.ai-meet-btn:hover {
  background-color: var(--primary-blue-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(20, 88, 217, 0.35);
}

/* ==========================================================================
   Responsive: Learmo AI Section
   ========================================================================== */
@media (max-width: 991px) {
  .ai-engine-section {
    padding: 80px 0;
  }

  .ai-engine-center-col {
    padding: 2.5rem 0;
    gap: 2rem;
  }

  .engine-circle {
    width: 240px;
    height: 240px;
  }

  .engine-circle::before {
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .engine-stars-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 6px;
  }

  .engine-subtitle {
    font-size: 0.58rem;
    letter-spacing: 1.2px;
  }

  .engine-title {
    font-size: 1.75rem;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 767px) {
  .ai-engine-section {
    padding: 60px 0;
  }

  .engine-circle {
    width: 200px;
    height: 200px;
  }

  .engine-circle::before {
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .engine-stars-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 4px;
  }

  .engine-subtitle {
    font-size: 0.5rem;
    letter-spacing: 1px;
  }

  .engine-title {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }

  .ai-feature-card {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   How it Works Section
   ========================================================================== */
.how-it-works-section {
  padding: 120px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Timeline Container */
.timeline-container {
  position: relative;
  padding: 40px 0;
}

/* Central Vertical Line */
.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  border: 2px dashed rgba(0, 97, 255, 0.4);

  transform: translateX(-50%);
  z-index: 1;
}

/* Timeline Row */
.timeline-row {
  position: relative;
  margin-bottom: 100px;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

/* Timeline Columns */
.timeline-col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.timeline-col-mockup {
  display: flex;
  align-items: center;
}

/* Align text to center timeline connection depending on side */
.timeline-row .timeline-col-text-left {
  text-align: right;
  padding-right: 80px;
}

.timeline-row .timeline-col-text-left .timeline-badge {
  margin-left: auto;
}


.timeline-row .timeline-col-text-right {
  text-align: left;
  padding-left: 80px;
}

.timeline-row .timeline-col-mockup-left {
  justify-content: flex-end;
  padding-right: 80px;
}

.timeline-row .timeline-col-mockup-right {
  justify-content: flex-start;
  padding-left: 80px;
}

/* Numbered Badges */
.timeline-badge {

  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 1.05rem;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.badge-gold {
  background-color: #FBDDAE;
  color: var(--primary-blue);
}

.badge-blue {
  background-color: var(--primary-blue);
  color: #ffffff;
}

/* Typography styles for stages */
.timeline-stage-title {

  font-weight: 700;
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.timeline-stage-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 440px;
}

.timeline-row .timeline-col-text-left .timeline-stage-desc {
  margin-left: auto;
}

/* Mockup base styling */
.timeline-mockup {
  background-color: #ffffff;
  border-radius: 48px;
  box-shadow: 0 15px 35px rgba(20, 88, 217, 0.06), 0 5px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(20, 88, 217, 0.06);
  width: 100%;
  max-width: 320px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

/* Mockup details styling */
.mockup-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}

.mockup-header img {
  height: 15px;
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red {
  background-color: #BA1A1A;
}

.dot-yellow {
  background-color: #9D3000;
}

.dot-green {
  background-color: #004BCA;
}

.mockup-bar {
  height: 16px;
  width: 200px;
  background-color: #E1E1EE;
  border-radius: 999px;
}

.mockup-nav-lines {
  display: flex;
  gap: 8px;
}

.nav-line {
  height: 8px;
  width: 32px;
  background-color: rgba(0, 97, 255, 0.3);
  border-radius: 999px;
}

.mockup-share-icon {
  color: var(--text-muted);
  opacity: 0.5;
}

/* Mockup Specific Styles */

/* 1. Ideate */
.mockup-ideate .input-simulation {
  background-color: #F2F3FF;

  border-radius: 32px;
  padding: 0.6rem 0.8rem;
  font-size: 0.75rem;
  color: rgba(66, 70, 86, 0.5);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.line-skeleton {
  height: 6px;
  background-color: #F3F4F6;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.line-skeleton:last-child {
  margin-bottom: 0;
}

.width-80 {
  width: 80%;
}

.width-70 {
  width: 70%;
}

.width-60 {
  width: 60%;
}

.width-50 {
  width: 50%;
}

/* 2. Generate */
.generate-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.6rem;
}

.blue-indicator {
  width: 3px;
  height: 12px;
  background-color: var(--primary-blue);
  border-radius: 1.5px;
}

.line-text-skeleton {
  height: 32px;
  background-color: #F2F3FF;
  border-radius: 6px;
  display: inline-block;

}

.line-text-skeleton.width-80:nth-child(1) {
  position: relative;
  overflow: hidden;
}

.line-text-skeleton.width-80:nth-child(1)::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0px;
  width: 5px;
  background-color: var(--primary-blue);
  z-index: 999;
}

/* 3. Brand */
.color-swatches {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
}

.swatch {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.swatch-blue {
  background-color: var(--primary-blue);
}

.swatch-dark {
  background-color: var(--text-dark);
}

.swatch-accent {
  background-color: var(--accent-orange);
}

.swatch-empty {
  border: 1.5px dashed rgba(0, 0, 0, 0.15);
  background-color: transparent;
}

.typography-box {
  background-color: #F2F3FF;
  border-radius: 32px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.typography-label {
  font-size: 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.typography-value {

  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* 4. Create (AI Enhancer Mockup matching reference) */
.create-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.create-avatar-blue {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(20, 88, 217, 0.1);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.create-header-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.create-title-line {
  height: 8px;
  width: 90px;
  background-color: var(--text-dark);
  border-radius: 4px;
}

.create-sub-line {
  height: 4px;
  width: 140px;
  background-color: #E2E8F0;
  border-radius: 2px;
}

.ai-enhancer-panel {
  background-color: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  margin-top: 0.5rem;
}

.ai-enhancer-header {
  display: flex;
  align-items: center;
  color: var(--primary-blue);

  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.ai-enhancer-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ai-line-skeleton {
  height: 4px;
  background-color: #F1F5F9;
  border-radius: 2px;
  width: 100%;
}

.ai-line-skeleton.short {
  width: 70%;
}

/* 5. Launch (Live Now / Access Course mockup matching reference) */
.mockup-header-launch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.status-pill-green {
  font-size: 0.6rem;
  font-weight: 700;
  color: #15803D;
  background-color: #DCFCE7;
  padding: 0.4em 1rem;
  border-radius: 999px;
}

.settings-icon {
  color: var(--text-muted);
  opacity: 0.5;
}

.launch-bar-skeleton {
  height: 10px;
  width: 80px;
  background-color: #F1F5F9;
  border-radius: 999px;
}

.launch-blue-dot {
  width: 24px;
  height: 10px;
  background-color: var(--primary-blue);
  border-radius: 5px;
}

.launch-btn-black {
  background-color: var(--text-dark);
  color: #ffffff;

  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.75rem;
  border-radius: 999px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.launch-btn-black:hover {
  background-color: #2D3748;
}

/* 6. Scale (Growth +240% / Blue icon & chart mockup matching reference) */
.mockup-header-scale {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.scale-info {
  display: flex;
  flex-direction: column;
}

.scale-label {
  font-size: 0.55rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.scale-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.scale-icon-box-blue {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(20, 88, 217, 0.1);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bar-chart-five {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
}

.bar-five {
  width: 24px;
  border-radius: 4px 4px 0 0;
}

.bar-five-1 {
  height: 24px;
  width: calc(100% / 5);
  background-color: #F1F5F9;
}

.bar-five-2 {
  width: calc(100% / 5);

  height: 40px;
  background-color: #F1F5F9;
}

.bar-five-3 {
  width: calc(100% / 5);

  height: 32px;
  background-color: #F1F5F9;
}

.bar-five-4 {
  width: calc(100% / 5);

  height: 64px;
  background-color: #0b4cbf;
}

.bar-five-5 {
  width: calc(100% / 5);

  height: 80px;
  background-color: var(--primary-blue);
}

/* Responsive CSS for How it Works section */
@media (max-width: 767px) {
  .how-it-works-section {
    padding: 60px 0;
  }

  .timeline-container::before {
    left: 20px;
    transform: none;
  }

  .timeline-row .timeline-col-text-left .timeline-badge{
    margin-left: 0;
  }

  .timeline-badge {
    left: 0px;
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    top: 0;
    margin-right:auto;
  }

  .timeline-row {
    margin-bottom: 60px;
  }

  .timeline-row .timeline-col-text-left,
  .timeline-row .timeline-col-text-right {
    text-align: left !important;
    padding-left: 50px !important;
    padding-right: 0 !important;
    margin-bottom: 1.5rem;
  }

  .timeline-row .timeline-col-mockup-left,
  .timeline-row .timeline-col-mockup-right {
    justify-content: flex-start !important;
    padding-left: 50px !important;
    padding-right: 0 !important;
  }

  .timeline-stage-title {
    font-size: 1.4rem;
  }

  .timeline-stage-desc {
    max-width: 100%;
  }

  .timeline-mockup {
    max-width: 280px;
  }
}

/* ==========================================================================
   Audience Section
   ========================================================================== */
.audience-section {
  padding: 120px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Audience Card Base */
.audience-card {
  background-color: #ffffff;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
  border: 1.5px solid rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.audience-card-body {
  padding: 2.25rem 2rem;
  flex-grow: 1;
}

/* Specific Card Layouts */
.main-advantage-card {
  background-color: var(--primary-blue);
  border: none;
  box-shadow: 0 20px 40px rgba(20, 88, 217, 0.15);
}

.main-advantage-card .audience-card-body {
  z-index: 1;
  position: relative;
}

.card-pattern-watermark {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.1;
}



/* Advantage Card Inner Components */
.advantage-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.advantage-title {

  font-weight: 700;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.advantage-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: 2rem;
}

.advantage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.advantage-tag {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.2px;
}

/* Card titles and texts */
.audience-card-title {

  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.audience-card-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.mockup-inner-box {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mockup-dots-bar span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}

.mockup-dots-bar .dot-red {
  background-color: #F87171;
}


.mockup-dots-bar .dot-yellow {
  background-color: #FBBF24;
}

.mockup-dots-bar .dot-green {
  background-color: #34D399;
}

.fee-badge {
  background: #f8fbff;
  border: 1px dashed rgba(20, 88, 217, 0.2);
  color: #4a77e8;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  width: 100%;
}

.billing-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.total-earnings-row {
  font-weight: 700;
  font-size: 1.1rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 10px;
}

.btn-complete-transaction {
  width: 100%;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 10px;
}

.text-green {
  color: #00b894;
}


/* Colored Card Variants */
.bg-cream-card {
  background-color: #FFFAE7;
  border-color: rgba(20, 88, 217, 0.05);
}

.bg-blue-card {
  background-color: #F0F9FF;
  border-color: rgba(20, 88, 217, 0.05);
}

.bg-gray-card {
  background-color: #F0F7FF;
  border-color: rgba(20, 88, 217, 0.05);
}



/* Mockup Layouts inside Cards */
.audience-mockup {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
  padding: 1.25rem;
  width: 100%;
}


.audience-mockup.mockup-stack-v2{
  background-color: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

/* Mockup specific details */

/* 1. Brand Ownership Card */
.brand-ownership-card {
  background-color: #F5F7FA !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.brand-panel {
  background-color: #EDF0F4;
  border-radius: 18px;
  padding: 22px 20px 20px 20px;
  width: 100%;
}

.brand-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.brand-panel-label {

  font-size: 0.65rem;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: 1.2px;
}

.brand-panel-dots {
  display: flex;
  gap: 4px;
}

.brand-panel-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #C4CAD4;
  display: inline-block;
}

/* Setting Rows */
.brand-setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 10px;
}

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

/* Icon Containers */
.brand-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-icon-circle.icon-blue {
  background-color: #DBEAFE;
  color: #2563EB;
}

.brand-icon-square {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-icon-square.icon-green {
  background-color: #D1FAE5;
  color: #059669;
}

.brand-setting-label {

  font-size: 0.85rem;
  font-weight: 600;
  color: #1F2937;
}

/* Toggle */
.brand-toggle {
  width: 28px;
  height: 16px;
  background-color: #D1D5DB;
  border-radius: 99px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.brand-toggle.active {
  background-color: #2563EB;
}

.brand-toggle-knob {
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.2s ease;
}

.brand-toggle.active .brand-toggle-knob {
  transform: translateX(12px);
}

/* Replace Button */
.brand-replace-btn {

  font-size: 0.75rem;
  font-weight: 700;
  color: #2563EB;
  cursor: pointer;
}

/* Progress Section */
.brand-progress-section {
  margin-top: 6px;
  padding: 0 4px;
  background-color: #ffffff;
    border-radius: 14px;
    padding: 12px 16px;
}

.brand-progress-bar-track {
  width: 100%;
  height: 8px;
  background-color: #D1D5DB;
  border-radius: 99px;
  overflow: hidden;
}

.brand-progress-bar-fill {
  height: 100%;
  background-color: #2563EB;
  border-radius: 99px;
  transition: width 0.4s ease;
}

.brand-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.brand-progress-label {

  font-size: 0.7rem;
  font-weight: 500;
  color: #9CA3AF;
}

.brand-progress-value {

  font-size: 0.75rem;
  font-weight: 700;
  color: #6B7280;
}

/* 2. Revenue Flow */
.mockup-dots-bar {
  display: flex;
  gap: 4px;
}



.billing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.total-earnings-row {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.billing-btn {
  background-color: var(--text-dark);
  color: #ffffff;

  font-weight: 700;
  font-size: 0.7rem;
  text-align: center;
  padding: 0.6rem;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

/* 3. Student Ownership */
.student-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.student-header-title {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  gap: 4px;
}

.add-student-btn {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent-orange);
  background-color: rgba(217, 119, 6, 0.08);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
}

.student-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

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

.student-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(217, 119, 6, 0.1);
}

.student-info-skeleton {
  flex-grow: 1;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 2px;
  margin: 0 15px;
  max-width: 80px;
}

.student-action {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-muted);
}

.student-initials {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(217, 119, 6, 0.1);
  color: var(--accent-orange);
  font-size: 0.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.student-action-access {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--accent-green);
}

/* Marketplace Distraction Card in Audience Section */
.audience-card-marketplace {
  background-color: #F0F9FF !important;
  border: 1px solid rgba(20, 88, 217, 0.05) !important;
  border-radius: 48px !important;
  overflow: hidden;
}

.audience-marketplace-header {
  padding: 2.5rem 2rem 0 2rem;
}

.audience-card-marketplace .audience-card-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #111827;
}

.audience-card-marketplace .audience-card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4B5563;
  max-width: 320px;
}

.audience-mockup-marketplace {
  margin-top: auto;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}

.audience-focus-ui {
  display: flex;
  padding: 2.2rem 2rem 1rem 2rem;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
    background-color: #F0F9FF !important;
}

.ui-pane {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 85px;
}

.pane-bar {
  height: 20px;
  background-color: #E2E8F0;
  border-radius: 6px;
}

.pane-bar.bar-blue-mid {
  background-color: #89D9FF;
}

.pane-bar.bar-blue-dark {
  background-color: #0EA5E9;
}

.pane-bar.bar-blue-light {
  background-color: #B5EDFF;
}

.pane-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #D1D5DB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
}

.pane-label.label-active {
  color: #059669;
}

.ui-pane-divider {
  width: 1.5px;
  background-color: #F3F4F6;
  border-radius: 1px;
}

.audience-marketplace-footer {
  background-color: #D1EAFE;
  color: #1E3A5F;
  text-align: center;
  padding: 1.2rem 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* 5. Business Stack - Audience Section Variant */
.audience-card-stack {
  background-color: #EFF2EC !important;
  border-radius: 28px !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.audience-card-ai-create {
  background-color: #F0F6FE !important;
  border-radius: 28px !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.mockup-stack-v2 {
  padding: 0;
  overflow: hidden;
}

.stack-v2-layout {
  display: flex;
  min-height: 180px;
  gap: 16px;
}

/* Sidebar */
.stack-v2-sidebar {
  width: 56px;
  background-color: #ffffff;
  border-right: 1px solid #EEF2F6;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 10px;
  border-radius: 12px;
}

.stack-v2-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  background-color: transparent;
  transition: all 0.2s ease;
}

.stack-v2-icon.active {
  background-color: #EEF2F6;
}

.stack-v2-icon svg {
  stroke: #9CA3AF;
}

.stack-v2-icon.active svg {
  stroke: #10B981;
}

/* Main content area */
.stack-v2-main {
  flex-grow: 1;
  padding: 16px 18px 24px 18px;
  display: flex;
  flex-direction: column;
    background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

/* Top bar */
.stack-v2-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.stack-v2-topbar-line {
  width: 44px;
  height: 8px;
  background-color: #EFF2F5;
  border-radius: 99px;
}

.stack-v2-topbar-circle {
  width: 12px;
  height: 12px;
  background-color: #EFF2F5;
  border-radius: 50%;
}

/* Content cards row */
.stack-v2-cards-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.stack-v2-card {
  flex: 1;
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stack-v2-card.card-blue {
  background-color: #EFF6FF;
}

.stack-v2-card.card-green {
  background-color: #ECFDF5;
}

.stack-v2-card-header {
  height: 6px;
  border-radius: 99px;
  width: 24px;
}

.stack-v2-card-header.header-blue {
  background-color: #93C5FD;
}

.stack-v2-card-header.header-green {
  background-color: #6EE7B7;
}

/* Bars inside cards */
.stack-v2-card-bars {
  display: flex;
  flex-direction: column;
}

.stack-v2-bar {
  height: 10px;
  border-radius: 99px;
  width: 34px;
  display: block;
}

.stack-v2-bar.bar-dark-grey {
  background-color: #4B5563;
}

.stack-v2-bar.bar-dark-green {
  background-color: #059669;
}

/* Bottom divider */
.stack-v2-divider {
  height: 1px;
  background-color: #EEF2F6;
  margin: 6px 0 12px 0;
}

/* Bottom placeholder lines */
.stack-v2-bottom-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stack-v2-bottom-line {
  height: 6px;
  background-color: #F3F4F6;
  border-radius: 99px;
  display: block;
}

.stack-v2-bottom-line.line-long {
  width: 80px;
}

.stack-v2-bottom-line.line-short {
  width: 48px;
}

/* 6. AI Assistant - Audience Section Variant */
.mockup-ai {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  padding: 18px 20px;
  
}

.ai-mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.ai-mockup-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1F2937;

}

.ai-spark-icon {
  color: #2563EB;
}

.ai-status-badge {
  background-color: #EFF6FF;
  color: #2563EB;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid #DBEAFE;
}

.ai-mockup-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.ai-mockup-line-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-mockup-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ai-mockup-dot.blue-dot {
  background-color: #3B82F6;
}

.ai-mockup-dot.light-blue-dot {
  background-color: #BFDBFE;
}

.ai-mockup-line-pill {
  height: 8px;
  background-color: #F3F4F6;
  border-radius: 99px;
}

.ai-mockup-line-pill.length-long {
  width: 90px;
}

.ai-mockup-line-pill.length-medium {
  width: 70px;
}

.ai-mockup-line-pill.length-short {
  width: 36px;
}

.ai-mockup-boxes {
  display: flex;
  gap: 14px;
}

.ai-box {
  flex: 1;
  height: 76px;
  border: 1.5px dashed #BFDBFE;
  border-radius: 8px;
  background-color: #FAFDFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3B82F6;
}

.ai-box-icon {
  color: #3B82F6;
  opacity: 0.55;
}

/* Responsive CSS for Audience section */
@media (max-width: 991px) {
  .audience-section {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .audience-section {
    padding: 60px 0;
  }

  .advantage-title {
    font-size: 1.5rem;
  }

  .audience-card-body {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   Waitlist Section
   ========================================================================== */
.waitlist-section {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.waitlist-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: rgba(20, 88, 217, 0.08);
  color: var(--primary-blue);

  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 1px;
  border-radius: 9999px;
  text-transform: uppercase;
}

/* Avatar overlapping group */
.avatar-group {
  margin-top: 2rem;
}

.avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-right: -8px;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}



.avatar-more {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: #ffffff;

  font-weight: 700;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-right: -8px;
}

.avatar-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.5rem;
}

.btn-large-cta {
  width: min(100%, 400px);
  padding: 1.25rem 3.5rem;
  font-size: 1.1rem;
  border-radius: 9999px;
  background-color: #0061FF;
  box-shadow: 0 10px 25px rgba(20, 88, 217, 0.25);
  font-weight: 500;
}

/* ==========================================================================
   Footer CTA Responsive Layout
   ========================================================================== */


@media (min-width: 992px) {
  .cta-card {
    min-height: 360px;
  }

 

  .cta-content-col {
    margin-left: auto;
  }
}

@media (max-width: 991.98px) {
  .cta-section {
    padding: 70px 0;
  }

  .cta-card {
    min-height: 0;
    border-radius: 24px;
  }



  .cta-profile-image {
    width: 100%;
    height: clamp(260px, 48vw, 420px);
    min-height: 0;
    object-fit: contain;
    object-position: center bottom;
    border-radius: 24px 24px 0 0;
  }

  .cta-content-col {
    margin-left: 0;
    order: 2;
    padding: clamp(2rem, 5vw, 3rem);
    text-align: center;
    align-items: center;
  }

  .cta-heading {
    font-size: clamp(1.65rem, 5.2vw, 2.35rem);
  }

  .btn-cta-join {
    align-self: center;
  }
}

@media (max-width: 575.98px) {
  .cta-section {
    padding: 56px 0;
  }

  .cta-card {
    border-radius: 20px;
  }

  .cta-image-col {
    min-height: 250px;
  }

  .cta-profile-image {
    height: 250px;
    border-radius: 20px 20px 0 0;
  }

  .cta-content-col {
    padding: 1.75rem 1.25rem 2.1rem;
  }

  .cta-heading {
    font-size: 1.55rem;
  }

  .cta-heading br {
    display: none;
  }

  .cta-subtext {
    font-size: 0.9rem;
  }

  .btn-cta-join {
    width: 100%;
    min-width: 0;
  }
}
