/**
 * بِسَاط (Bisaat) — Reusable Components System
 * Kajabi-Aligned Modern SaaS Components
 * High-Contrast, Minimalist, Precision-Engineered
 */

/* ==========================================================================
   1. Buttons (Kajabi Pill Design System)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-body);
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  padding: 0.75rem 1.65rem;
  min-height: 48px;
  transition: var(--transition-fast);
  user-select: none;
  white-space: nowrap;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none !important;
  transform: none !important;
}

/* White Pill Button (Primary on Dark Backgrounds) */
.btn-white-pill,
.btn-white {
  background-color: var(--color-white);
  color: #080B11;
  border-color: var(--color-white);
  font-weight: var(--font-weight-bold);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-white-pill:hover,
.btn-white:hover {
  background-color: #F3F4F6;
  border-color: #F3F4F6;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-white-pill:active,
.btn-white:active {
  transform: translateY(0);
  background-color: #E5E7EB;
}

/* Dark Pill Button (Primary on Light Backgrounds) */
.btn-dark-pill,
.btn-dark {
  background-color: #080B11;
  color: var(--color-white);
  border-color: #080B11;
  font-weight: var(--font-weight-bold);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-dark-pill:hover,
.btn-dark:hover {
  background-color: #151C2C;
  border-color: #151C2C;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-dark-pill:active,
.btn-dark:active {
  transform: translateY(0);
  background-color: #000000;
}

/* Outline Pill (on Dark) */
.btn-outline-white,
.btn-outline-pill {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline-white:hover,
.btn-outline-pill:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Outline Dark (on Light) */
.btn-outline-dark {
  background-color: transparent;
  color: var(--text-light-primary);
  border-color: var(--border-light-medium);
}

.btn-outline-dark:hover {
  background-color: var(--bg-light-muted);
  border-color: var(--text-light-primary);
  transform: translateY(-2px);
}

/* Outline Primary */
.btn-outline-primary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-primary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--color-primary-glow);
}

/* Brand Blue Pill */
.btn-primary-pill,
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px var(--color-primary-glow);
}

.btn-primary-pill:hover,
.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--color-primary-glow);
}

/* Text Link with Directional Arrow */
.btn-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-body);
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-link-arrow .arrow-icon {
  display: inline-block;
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn-link-arrow:hover .arrow-icon {
  transform: translateX(-4px);
  /* RTL slide left */
}

/* Sizes */
.btn-sm {
  padding: 0.45rem 1.15rem;
  font-size: var(--font-body-sm);
  min-height: 38px;
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: var(--font-body-lg);
  min-height: 54px;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ==========================================================================
   2. Inline Lead Capture Form (Kajabi Hero Input Style)
   ========================================================================== */

.inline-lead-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  padding: 5px;
  max-width: 480px;
  width: 100%;
  transition: border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.inline-lead-form:focus-within {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.inline-lead-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-white);
  font-family: var(--font-family-primary);
  font-size: var(--font-body);
  padding: 0.65rem 1.25rem;
  min-width: 0;
}

.inline-lead-input::placeholder {
  color: var(--text-dark-secondary);
  opacity: 0.75;
}

.inline-lead-btn {
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.4rem;
  min-height: 42px;
  font-size: var(--font-body-sm);
  font-weight: var(--font-weight-bold);
  white-space: nowrap;
}

@media (max-width: 576px) {
  .inline-lead-form {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: var(--space-2);
  }

  .inline-lead-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-pill);
    min-height: 48px;
  }

  .inline-lead-btn {
    width: 100%;
    min-height: 48px;
  }
}

/* Light variant for light sections */
.inline-lead-form.light {
  background: #FFFFFF;
  border: 1px solid var(--border-light-medium);
  box-shadow: var(--shadow-sm);
}

.inline-lead-form.light .inline-lead-input {
  color: var(--text-light-primary);
}

.inline-lead-form.light .inline-lead-input::placeholder {
  color: var(--text-light-secondary);
}

/* ==========================================================================
   3. Badges & Micro-Labels
   ========================================================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-caption);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1.2;
}

.badge-saudi {
  background: rgba(16, 185, 129, 0.12);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.badge-primary {
  background: var(--color-primary-subtle);
  color: #A5B4FC;
  border: 1px solid rgba(70, 85, 229, 0.3);
}

.badge-light-primary {
  background: rgba(70, 85, 229, 0.08);
  color: var(--color-primary, #4655E5);
  border: 1px solid rgba(70, 85, 229, 0.2);
  font-weight: var(--font-weight-semibold);
}

.badge-light-dark {
  background: #F1F5F9;
  color: #334155;
  border: 1px solid #E2E8F0;
  font-weight: var(--font-weight-semibold);
}

.badge-new {
  background: #FFFFFF;
  color: #080B11;
  font-weight: var(--font-weight-bold);
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
}

/* ==========================================================================
   4. Products Showcase Tabs (Kajabi Tab Navigator)
   ========================================================================== */

.products-tab-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-block-end: var(--space-8);
}

.products-tab-btn {
  font-family: var(--font-family-primary);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.45rem;
  font-size: var(--font-body-sm);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
  padding: 0.65rem 2.9rem;
}

.products-tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.2);
}

.products-tab-btn.active,
.products-tab-btn[aria-selected="true"] {
  background: var(--color-white);
  color: #080B11;
  font-weight: var(--font-weight-bold);
  border-color: var(--color-white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.products-tab-panel {
  display: none;
  opacity: 0;
  will-change: transform, opacity;
}

.products-tab-panel.active {
  display: block;
  animation: tabSlideInFromRight 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.products-tab-panel.is-exiting {
  display: block;
  animation: tabSlideOutToRight 0.22s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
}

/* Tab Enter: From Right to Left */
@keyframes tabSlideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

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

/* Tab Exit: From Left to Right */
@keyframes tabSlideOutToRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(100px);
  }
}

@media (prefers-reduced-motion: reduce) {

  .products-tab-panel.active,
  .products-tab-panel.is-exiting {
    animation: none;
    transform: none;
    opacity: 1;
  }
}

/* Product Showcase Big Card (Stacked Layout: Top Info + 2-Col Grid + Bottom Full Visual) */
.product-showcase-card {
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-dark-medium);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.product-showcase-content {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
  overflow: hidden;
  background-color: #03040B;
  background-image:
    radial-gradient(ellipse 60% 70% at 0% 20%, rgba(67, 56, 202, 0.72) 0%, rgba(37, 99, 235, 0.40) 30%, transparent 70%),
    radial-gradient(ellipse 60% 70% at 100% 20%, rgba(67, 56, 202, 0.72) 0%, rgba(37, 99, 235, 0.40) 30%, transparent 70%),
    radial-gradient(circle 500px at 10% 50%, rgba(99, 102, 241, 0.30) 0%, transparent 65%),
    radial-gradient(circle 500px at 90% 50%, rgba(99, 102, 241, 0.30) 0%, transparent 65%),
    linear-gradient(180deg, #0D1226 0%, #060814 60%, #020307 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-showcase-content::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -15%;
  width: 45%;
  height: 160%;
  background: linear-gradient(62deg, rgba(99, 102, 241, 0.42) 0%, rgba(79, 70, 229, 0.20) 35%, transparent 75%);
  filter: blur(55px);
  transform: rotate(-10deg);
  pointer-events: none;
  z-index: 0;
}

.product-showcase-content::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 45%;
  height: 160%;
  background: linear-gradient(-62deg, rgba(99, 102, 241, 0.42) 0%, rgba(79, 70, 229, 0.20) 35%, transparent 75%);
  filter: blur(55px);
  transform: rotate(10deg);
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 992px) {
  .product-showcase-content {
    padding: var(--space-8) var(--space-10) var(--space-6);
  }
}

.product-showcase-header-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .product-showcase-header-row {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-6);
  }
}

.product-showcase-header-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
  max-width: 820px;
}

.product-showcase-header-info .badge {
  align-self: flex-start;
}

.product-showcase-header-info h3 {
  font-size: 1.65rem;
  font-weight: bold;
  color: #FFF;
  line-height: 1.3;
  margin: 0;
}

.product-showcase-header-info p {
  color: var(--text-dark-secondary);
  font-size: var(--font-body);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.product-showcase-header-action {
  flex-shrink: 0;
  margin-top: 4px;
}

.product-feature-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3) var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-5);
}

@media (min-width: 768px) {
  .product-feature-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.product-feature-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.product-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-body-sm);
  color: var(--text-dark-secondary);
  line-height: var(--leading-normal);
}

.product-feature-item .check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(70, 85, 229, 0.2);
  color: #818CF8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  margin-top: 2px;
}

.product-showcase-visual {
  background: #0B0E17;
  padding: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-dark-subtle);
  width: 100%;
}

@media (min-width: 992px) {
  .product-showcase-visual {
    padding: var(--space-8) var(--space-10) var(--space-10);
  }
}

/* Tab Placeholder Image Card */
.tab-image-placeholder-card {
  width: 100%;
  max-width: 1000px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.8);
  transition: transform var(--duration-normal) var(--ease-base), box-shadow var(--duration-normal) var(--ease-base);
}

.tab-image-placeholder-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.95);
}

.tab-showcase-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

/* ==========================================================================
   4.5 Live Collaborative Laptop Showcase with Animated Multi-User Cursors
   ========================================================================== */

.live-experience-section {
  background-color: #FFFFFF;
  padding-block: var(--space-10) var(--space-12);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.live-experience-section .section-header {
  margin-block-end: var(--space-8);
}

.live-experience-section .section-header h2 {
  color: #0F172A;
}

.live-experience-section .section-header p {
  color: #475569;
}

.laptop-showcase-container {
  max-width: 1060px;
  margin-inline: auto;
  position: relative;
  padding-inline: var(--space-2);
}

.laptop-device {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 25px 45px rgba(15, 23, 42, 0.18));
}

.laptop-screen-lid {
  background: #0B0E14;
  border: 12px solid #1E293B;
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 35px rgba(70, 85, 229, 0.08);
  overflow: hidden;
}

@media (max-width: 768px) {
  .laptop-screen-lid {
    border-width: 7px;
    border-radius: 14px 14px 0 0;
  }
}

.laptop-webcam {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background: #05070A;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: 30;
}

@media (max-width: 768px) {
  .laptop-webcam {
    top: -5px;
    width: 5px;
    height: 5px;
  }
}

.laptop-display {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}

.laptop-screen-content {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.laptop-base {
  height: 18px;
  background: linear-gradient(180deg, #334155 0%, #1E293B 100%);
  border-radius: 0 0 16px 16px;
  position: relative;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .laptop-base {
    height: 10px;
    border-radius: 0 0 10px 10px;
  }
}

.laptop-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 5px;
  background: #0B0E14;
  border-radius: 0 0 5px 5px;
}

@media (max-width: 768px) {
  .laptop-notch {
    width: 50px;
    height: 3px;
  }
}

/* Multi-user Cursors Layer */
.live-cursors-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 25;
}

.live-cursor {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  pointer-events: none;
  user-select: none;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.45));
}

.cursor-pointer {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.cursor-label {
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  margin-top: 6px;
  margin-right: -2px;
}

@media (max-width: 640px) {
  .cursor-pointer {
    width: 13px;
    height: 13px;
  }

  .cursor-label {
    font-size: 0.55rem;
    padding: 1px 5px;
  }
}

/* Click Ripple Effect */
.cursor-click-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid currentColor;
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0.9;
  animation: cursorRipple 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes cursorRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0.9;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

/* ==========================================================================
   5. 2-Column Alternating Feature Rows (Kajabi Clean Light Section)
   ========================================================================== */

#why-bisaat {
  overflow-x: clip;
}

.kajabi-feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  margin-block-end: var(--space-16);
}

.kajabi-feature-row:last-child {
  margin-block-end: 0;
}

@media (min-width: 992px) {
  .kajabi-feature-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }

  .kajabi-feature-row.reverse .kajabi-feature-content {
    order: 2;
  }

  .kajabi-feature-row.reverse .kajabi-feature-visual {
    order: 1;
  }
}

.kajabi-feature-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.kajabi-feature-visual {
  background: #F8F9FB;
  border: 1px solid var(--border-light-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

/* ==========================================================================
   Scroll Animations for Why Bisaat (Smooth Entry from Right & Left, Exit on Scroll Up)
   ========================================================================== */

.kajabi-feature-content,
.kajabi-feature-visual {
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Mobile: Gentle slide up */
@media (max-width: 991px) {

  .kajabi-feature-row .kajabi-feature-content,
  .kajabi-feature-row .kajabi-feature-visual {
    opacity: 0;
    transform: translateY(36px);
  }

  .kajabi-feature-row.in-view .kajabi-feature-content,
  .kajabi-feature-row.in-view .kajabi-feature-visual {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Desktop (RTL layout): Right part slides from Right, Left part slides from Left */
@media (min-width: 992px) {

  /* Standard Row: Content is on Right, Visual is on Left */
  .kajabi-feature-row:not(.reverse) .kajabi-feature-content {
    opacity: 0;
    transform: translateX(70px);
  }

  .kajabi-feature-row:not(.reverse) .kajabi-feature-visual {
    opacity: 0;
    transform: translateX(-70px);
  }

  /* Reverse Row: Visual is on Right, Content is on Left */
  .kajabi-feature-row.reverse .kajabi-feature-visual {
    opacity: 0;
    transform: translateX(70px);
  }

  .kajabi-feature-row.reverse .kajabi-feature-content {
    opacity: 0;
    transform: translateX(-70px);
  }

  /* When In View: Both settle gracefully at 0 offset with full opacity */
  .kajabi-feature-row.in-view .kajabi-feature-content,
  .kajabi-feature-row.in-view .kajabi-feature-visual {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .kajabi-feature-content,
  .kajabi-feature-visual {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.kajabi-checkmarks {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-block: var(--space-3);
}

.kajabi-check-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-body);
  color: var(--text-light-secondary);
}

.kajabi-check-item .check-circle {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #080B11;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* ==========================================================================
   6. Innovation Cards Grid (Kajabi "See what's new" Architecture)
   ========================================================================== */

.innovation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

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

.innovation-card {
  background: rgba(10, 15, 30, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-base), border-color var(--duration-normal) var(--ease-base), box-shadow var(--duration-normal) var(--ease-base);
  position: relative;
  min-height: 480px;
}

.innovation-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 20px 45px -10px rgba(67, 56, 202, 0.35);
}

.innovation-card-content {
  padding: var(--space-8) var(--space-8) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.innovation-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.innovation-card-header .badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 2px;
}

.innovation-card-title {
  font-size: 1.35rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  line-height: 1.3;
  margin: 0;
  width: 100%;
}

.innovation-card-desc {
  font-size: var(--font-body-sm);
  color: var(--text-dark-secondary);
  line-height: var(--leading-relaxed);
  min-height: 48px;
}

.innovation-card-visual {
  padding: 0 var(--space-6) var(--space-6);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  margin-top: auto;
}

.innovation-preview-box {
  width: 100%;
  background: rgba(70, 85, 229, 0.09);
  border: 1px solid rgba(99, 102, 241, 0.22);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--duration-normal) var(--ease-base), border-color var(--duration-normal) var(--ease-base);
}

.innovation-card:hover .innovation-preview-box {
  background: rgba(70, 85, 229, 0.14);
  border-color: rgba(99, 102, 241, 0.38);
}

/* ==========================================================================
   6b. Packages Showcase (Calm Light Theme)
   ========================================================================== */

.packages-showcase-section {
  background-color: #F8FAFC;
  padding-block: var(--space-20);
  border-top: 1px solid var(--border-light-subtle, #E2E8F0);
  border-bottom: 1px solid var(--border-light-subtle, #E2E8F0);
}

.packages-showcase-section .section-header h2 {
  color: #0F172A;
  font-weight: 800;
}

.packages-showcase-section .section-header p {
  color: #475569;
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

@media (min-width: 1100px) {
  .packages-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.package-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform var(--duration-normal) var(--ease-base), border-color var(--duration-normal) var(--ease-base), box-shadow var(--duration-normal) var(--ease-base);
}

.package-card:hover {
  transform: translateY(-5px);
  border-color: #CBD5E1;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.package-card.package-card-featured {
  background: #FFFFFF;
  border: 2px solid var(--color-primary, #4655E5);
  box-shadow: 0 10px 30px rgba(70, 85, 229, 0.1);
}

.package-card.package-card-featured:hover {
  border-color: var(--color-primary, #4655E5);
  box-shadow: 0 20px 40px rgba(70, 85, 229, 0.18);
}

.package-card-preview {
  height: 165px;
  position: relative;
  background-color: #0E1B2C;
  overflow: hidden;
}

.package-card-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card:hover .package-card-preview img {
  transform: scale(1.06);
}

.package-card-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(15, 23, 42, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 12px 16px;
  pointer-events: none;
}

.package-card-preview-tag {
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  color: #FFFFFF;
  background: rgba(15, 23, 42, 0.65);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.package-card-content {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: var(--space-3);
  background: #FFFFFF;
}

.package-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.package-card-header .badge {
  display: inline-flex;
  align-self: flex-start;
}

.package-card-title {
  font-size: 1.35rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-light-primary, #0F172A);
  line-height: 1.25;
  margin: 0;
}

.package-card-desc {
  font-size: var(--font-body-sm);
  color: var(--text-light-secondary, #475569);
  line-height: var(--leading-relaxed);
  flex-grow: 1;
  margin-bottom: var(--space-4);
  min-height: 72px;
}

.package-card-footer {
  margin-top: auto;
}

/* ==========================================================================
   Enterprise Standalone Showcase Card (Row Design)
   ========================================================================== */

.package-enterprise-card {
  margin-top: var(--space-8);
  background: linear-gradient(135deg, #090D18 0%, #111827 50%, #0F172A 100%);
  border: 1.5px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-2xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), 0 0 50px rgba(70, 85, 229, 0.08);
  transition: border-color var(--duration-normal) var(--ease-base), box-shadow var(--duration-normal) var(--ease-base), transform var(--duration-normal) var(--ease-base);
}

.package-enterprise-card:hover {
  border-color: rgba(99, 102, 241, 0.55);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 70px rgba(70, 85, 229, 0.16);
  transform: translateY(-3px);
}

.package-enterprise-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(70, 85, 229, 0.22) 0%, rgba(124, 58, 237, 0.12) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.package-enterprise-inner {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .package-enterprise-inner {
    grid-template-columns: 1.25fr 0.85fr;
  }
}

.package-enterprise-content {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .package-enterprise-content {
    padding: var(--space-10) var(--space-12);
  }
}

.package-enterprise-badge-group {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.enterprise-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #A5B4FC;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

.enterprise-tag-custom {
  font-size: 0.7rem;
  font-weight: 600;
  color: #FBBF24;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.package-enterprise-card .package-enterprise-title,
.package-enterprise-card h3.package-enterprise-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #FFFFFF !important;
  line-height: 1.3;
  margin: 0 0 var(--space-3);
  letter-spacing: -0.01em;
}

.enterprise-title-highlight {
  background: linear-gradient(135deg, #A5B4FC 0%, #C084FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-display, inherit);
  display: inline-block;
  margin-inline-start: 6px;
}

.package-enterprise-card .package-enterprise-desc,
.package-enterprise-card p.package-enterprise-desc {
  font-size: var(--font-body-md);
  color: #CBD5E1 !important;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  max-width: 680px;
}

.package-enterprise-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
  .package-enterprise-features {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4) var(--space-6);
  }
}

.enterprise-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.enterprise-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: #A5B4FC;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.package-enterprise-card .enterprise-feature-name,
.package-enterprise-card h4.enterprise-feature-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin: 0 0 3px;
}

.package-enterprise-card .enterprise-feature-sub,
.package-enterprise-card p.enterprise-feature-sub {
  font-size: 0.8rem;
  color: #94A3B8 !important;
  margin: 0;
  line-height: 1.45;
}

.package-enterprise-actions {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  flex-wrap: nowrap;
}

.btn-outline-enterprise {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #F8FAFC;
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-outline-enterprise:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
}

@media (max-width: 640px) {
  .package-enterprise-actions {
    flex-wrap: wrap;
  }

  .package-enterprise-actions .btn,
  .package-enterprise-actions .btn-outline-enterprise {
    width: 100%;
    text-align: center;
  }
}

.package-enterprise-media {
  display: flex;
  align-items: stretch;
  position: relative;
  background: #0B101D;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 991px) {
  .package-enterprise-media {
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 260px;
  }
}

.package-enterprise-photo-card {
  width: 100%;
  height: 100%;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.package-enterprise-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.92) contrast(1.05);
  transition: transform 0.6s ease;
}

.package-enterprise-card:hover .package-enterprise-img {
  transform: scale(1.04);
}

.package-enterprise-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 16, 29, 0.1) 0%, rgba(11, 16, 29, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-6);
}

.enterprise-overlay-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
}

.enterprise-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  display: inline-block;
}

/* ==========================================================================
   6b. Real Platforms Showcase Section (Dark Theme with Laptop Mockups)
   ========================================================================== */

.real-platforms-section {
  position: relative;
  background-color: #050711;
  background-image:
    radial-gradient(circle 800px at 85% 15%, rgba(70, 85, 229, 0.22) 0%, rgba(30, 27, 75, 0.12) 45%, transparent 70%),
    radial-gradient(circle 700px at 15% 85%, rgba(124, 58, 237, 0.18) 0%, rgba(15, 23, 42, 0.1) 50%, transparent 75%),
    linear-gradient(180deg, #03040A 0%, #060919 50%, #03040A 100%);
  padding-block: var(--space-16);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.real-platforms-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.real-platforms-section .container {
  position: relative;
  z-index: 1;
}

.platforms-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
  padding-inline: var(--space-2);
}

.platforms-carousel-indicators {
  display: flex;
  align-items: center;
  gap: 8px;
}

.platforms-indicator-dot {
  width: 28px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.platforms-indicator-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.platforms-indicator-dot.active {
  width: 48px;
  background: #4655E5;
}

.platforms-carousel-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.platforms-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.platforms-nav-btn:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}

.platforms-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: var(--space-6);
  padding-bottom: var(--space-4);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.platforms-carousel-track::-webkit-scrollbar {
  display: none;
}

.platforms-carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (min-width: 860px) {
  .platforms-carousel-slide {
    flex: 0 0 calc(50% - (var(--space-6) / 2));
  }
}

.platform-item-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: transform var(--duration-normal) var(--ease-base), border-color var(--duration-normal) var(--ease-base);
  height: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.platform-item-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 25px 50px -10px rgba(70, 85, 229, 0.3);
}

.platform-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.platform-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.platform-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  align-self: flex-start;
}

.platform-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #FFFFFF;
  margin: 0;
}

.platform-stat-tag {
  font-size: 0.75rem;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* Realistic Mini Laptop Chassis */
.laptop-mini-mockup {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: var(--space-2);
}

.laptop-mini-lid {
  width: 100%;
  background: #0B0E14;
  border: 1.5px solid #2D3748;
  border-radius: 12px 12px 0 0;
  padding: 8px 8px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  position: relative;
}

.laptop-mini-camera {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1A202C;
  border: 1px solid #4A5568;
  margin: 0 auto 6px;
}

.laptop-mini-screen {
  background: #000;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  display: flex;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.8);
}

.laptop-mini-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.platform-item-card:hover .laptop-mini-screen-img {
  transform: scale(1.03);
}

.laptop-mini-base {
  width: 106%;
  height: 9px;
  background: linear-gradient(180deg, #334155 0%, #1E293B 100%);
  border-radius: 0 0 10px 10px;
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
}

.laptop-mini-notch {
  width: 60px;
  height: 4px;
  background: #0F172A;
  border-radius: 0 0 4px 4px;
}

.platform-desc {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   7. Testimonials Carousel (Kajabi "Why Experts Choose Kajabi" Design)
   ========================================================================== */

.testimonials-section {
  background-color: var(--bg-dark-base);
  padding-block: var(--space-20);
  border-top: 1px solid var(--border-dark-subtle);
  position: relative;
  overflow: hidden;
}

.kajabi-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 0;
}

.kajabi-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: var(--space-6);
  padding-bottom: var(--space-4);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.kajabi-carousel-track::-webkit-scrollbar {
  display: none;
}

.kajabi-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.kajabi-expert-card {
  width: 100%;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  transition: border-color var(--duration-normal) var(--ease-base);
}

.kajabi-expert-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 860px) {
  .kajabi-expert-card {
    display: grid;
    grid-template-columns: clamp(340px, 32vw, 450px) 1fr;
    padding: var(--space-10) var(--space-12);
    gap: var(--space-10);
    align-items: stretch;
    min-height: 460px;
  }
}

.kajabi-expert-photo-col {
  width: 100%;
  display: flex;
}

.kajabi-expert-photo-box {
  width: 100%;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #0E1B2C;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

@media (min-width: 860px) {
  .kajabi-expert-photo-box {
    height: 100%;
    min-height: 380px;
  }
}

.kajabi-expert-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kajabi-expert-content-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: var(--space-2);
}

.kajabi-quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: #6B7280;
  font-family: Georgia, serif;
  margin-bottom: var(--space-3);
  user-select: none;
}

.kajabi-expert-quote {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.8;
  color: #F3F4F6;
  font-weight: var(--font-weight-regular);
  margin: 0 0 var(--space-6) 0;
  font-style: normal;
}

.kajabi-expert-author {
  margin-bottom: var(--space-6);
}

.kajabi-expert-name {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: #FFFFFF;
  line-height: 1.3;
}

.kajabi-expert-title {
  font-size: 0.9rem;
  color: #9CA3AF;
  margin-top: 4px;
}

.kajabi-expert-stat {
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.kajabi-stat-number {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.kajabi-stat-label {
  font-size: 0.85rem;
  color: #9CA3AF;
  margin-top: 4px;
}

/* Controls Bar (Positioned before the Card) */
.kajabi-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: var(--space-6);
  padding-inline: var(--space-2);
  width: 100%;
}

.kajabi-carousel-indicators {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kajabi-indicator-dash {
  width: 28px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.kajabi-indicator-dash:hover {
  background: rgba(255, 255, 255, 0.4);
}

.kajabi-indicator-dash.active {
  width: 52px;
  background: #FFFFFF;
}

.kajabi-carousel-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kajabi-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.kajabi-carousel-btn:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.kajabi-carousel-btn:active {
  transform: scale(0.95);
}

/* ==========================================================================
   8. FAQ Accordion (Kajabi Minimalist Accordion)
   ========================================================================== */

.kajabi-faq-list {
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.kajabi-faq-item {
  border-bottom: 1px solid var(--border-dark-medium);
  transition: border-color var(--duration-fast) var(--ease-out);
}

.kajabi-faq-item:first-child {
  border-top: 1px solid var(--border-dark-medium);
}

.kajabi-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  color: var(--color-white);
  font-family: var(--font-family-primary);
  font-size: var(--font-h4);
  font-weight: var(--font-weight-semibold);
  text-align: right;
  transition: color var(--duration-fast) var(--ease-out);
}

.kajabi-faq-btn:hover {
  color: #A5B4FC;
}

.kajabi-faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform var(--duration-normal) var(--ease-base);
  color: var(--text-dark-secondary);
  flex-shrink: 0;
}

.kajabi-faq-item.active .kajabi-faq-icon {
  transform: rotate(45deg);
  color: var(--color-white);
}

.kajabi-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.kajabi-faq-item.active .kajabi-faq-answer {
  opacity: 1;
}

.kajabi-faq-answer-inner {
  padding-bottom: var(--space-6);
  color: var(--text-dark-secondary);
  font-size: var(--font-body);
  line-height: var(--leading-relaxed);
}

/* ==========================================================================
   9. Modals (Clean Overlay Dialogs)
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) var(--ease-base), visibility var(--duration-normal) var(--ease-base);
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background-color: var(--bg-dark-surface);
  border: 1px solid var(--border-dark-highlight);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.96) translateY(12px);
  transition: transform var(--duration-normal) var(--ease-base);
  padding: var(--space-8);
  color: var(--color-white);
}

.modal-backdrop.open .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: var(--space-5);
  inset-inline-end: var(--space-5);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   10. Toast Notification
   ========================================================================== */

.toast-container {
  position: fixed;
  bottom: var(--space-6);
  inset-inline-start: var(--space-6);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.toast {
  background-color: #0F172A;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: var(--space-3) var(--space-5);
  font-size: var(--font-body-sm);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-lg);
  animation: slideInToast 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInToast {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   11. Real Platforms Showcase Section (Dark Theme with Laptop Mockups)
   ========================================================================== */

.real-platforms-section {
  position: relative;
  background-color: #050711;
  background-image:
    radial-gradient(circle 800px at 85% 15%, rgba(70, 85, 229, 0.22) 0%, rgba(30, 27, 75, 0.12) 45%, transparent 70%),
    radial-gradient(circle 700px at 15% 85%, rgba(124, 58, 237, 0.18) 0%, rgba(15, 23, 42, 0.1) 50%, transparent 75%),
    linear-gradient(180deg, #03040A 0%, #060919 50%, #03040A 100%);
  padding-block: var(--space-16);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.real-platforms-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.real-platforms-section .container {
  position: relative;
  z-index: 1;
}

.platforms-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
  padding-inline: var(--space-2);
}

.platforms-carousel-indicators {
  display: flex;
  align-items: center;
  gap: 8px;
}

.platforms-indicator-dot {
  width: 28px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.platforms-indicator-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.platforms-indicator-dot.active {
  width: 48px;
  background: #4655E5;
}

.platforms-carousel-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.platforms-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.platforms-nav-btn:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}

.platforms-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: var(--space-6);
  padding-bottom: var(--space-4);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.platforms-carousel-track::-webkit-scrollbar {
  display: none;
}

.platforms-carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (min-width: 860px) {
  .platforms-carousel-slide {
    flex: 0 0 calc(50% - (var(--space-6) / 2));
  }
}

.platform-item-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: transform var(--duration-normal) var(--ease-base), border-color var(--duration-normal) var(--ease-base);
  height: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.platform-item-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 25px 50px -10px rgba(70, 85, 229, 0.3);
}

.platform-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.platform-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.platform-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  align-self: flex-start;
}

.platform-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #FFFFFF;
  margin: 0;
}

.platform-stat-tag {
  font-size: 0.75rem;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* Realistic Mini Laptop Chassis */
.laptop-mini-mockup {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: var(--space-2);
}

.laptop-mini-lid {
  width: 100%;
  background: #0B0E14;
  border: 1.5px solid #2D3748;
  border-radius: 12px 12px 0 0;
  padding: 8px 8px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  position: relative;
}

.laptop-mini-camera {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1A202C;
  border: 1px solid #4A5568;
  margin: 0 auto 6px;
}

.laptop-mini-screen {
  background: #000;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1024 / 543;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.8);
}

.laptop-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.laptop-ui-header {
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.laptop-ui-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.laptop-ui-hero-banner {
  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.laptop-ui-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.laptop-ui-card {
  padding: 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.laptop-mini-base {
  width: 106%;
  height: 9px;
  background: linear-gradient(180deg, #334155 0%, #1E293B 100%);
  border-radius: 0 0 10px 10px;
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
}

.laptop-mini-notch {
  width: 60px;
  height: 4px;
  background: #0F172A;
  border-radius: 0 0 4px 4px;
}

.platform-desc {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.6;
  margin: 0;
}