:root{
  --lb-bg: #1c2230;
  --lb-surface: rgba(255,255,255,0.06);
  --lb-border: rgba(255,255,255,0.12);
  --lb-text: rgba(255,255,255,0.92);
  --lb-muted: rgba(255,255,255,0.68);
  --lb-radius: 18px;
  --lb-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

*{ box-sizing:border-box; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html, body{
  height: 100%;
  margin: 0;
}

body{
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--lb-text);
  background: #1c2230;
  padding-top: 0;
}

/* Reset ACF WYSIWYG editors to default WordPress styling */
.acf-editor-wrap iframe,
.acf-editor-wrap .mce-content-body {
  background: #fff !important;
  color: #2c3338 !important;
}

.lb-page {
  min-height: calc(100vh - 66px);
}

.lb-page--bottom-padding {
  padding-bottom: 72px;
}

/* Page Intro Section */
.lb-page-intro {
  padding: 140px 0 0;
  text-align: center;
}
.lb-page-intro__heading {
  margin: 0 0 20px;
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
/* Start hidden for fade-in animation (only on front-end) */
body:not(.block-editor-page) .lb-page-intro__heading {
  opacity: 0;
  transform: translateY(30px);
}
.lb-page-intro__subheading {
  margin: 0;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: var(--lb-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
/* Start hidden for fade-in animation (only on front-end) */
body:not(.block-editor-page) .lb-page-intro__subheading {
  opacity: 0;
  transform: translateY(30px);
}
.lb-page-intro__cta {
  margin-top: 32px;
}
/* Start hidden for fade-in animation (only on front-end) */
body:not(.block-editor-page) .lb-page-intro__cta {
  opacity: 0;
  transform: translateY(30px);
}
/* Ensure content is visible when JavaScript is disabled (SEO + accessibility) */
@media (scripting: none) {
  .lb-page-intro__heading,
  .lb-page-intro__subheading,
  .lb-page-intro__cta {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* Animate when visible (only on front-end) */
body:not(.block-editor-page) .lb-animate .lb-page-intro__heading {
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 0.1s;
}
body:not(.block-editor-page) .lb-animate .lb-page-intro__subheading {
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 0.2s;
}
body:not(.block-editor-page) .lb-animate .lb-page-intro__cta {
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 0.3s;
}

/* Page CTA Text Link Style */
.lb-page-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.2s ease;
}

.lb-page-cta-link:hover {
  opacity: 0.9;
  gap: 12px;
  text-decoration-color: #6366f1;
}

.lb-page-cta-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.lb-page-cta-link:hover svg {
  transform: translateX(4px);
}

.lb-site-wrapper{
  display: flex;
  flex-direction: column;
}

.lb-site-content{
  flex: 1;
  overflow-y: auto;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:0.92; }

strong {
  font-weight: 600;
  color: #ffffff;
}

.lb-container{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.lb-container--narrow {
  max-width: 880px;
}

.lb-container--wide {
  max-width: 1440px;
}

.lb-section{
  padding: 72px 0;
}

/* Optional reduced top padding */
.lb-section--reduced-padding {
  padding-top: 24px !important;
}

/* Heading Size Modifier - applies to all blocks */
.lb-heading--medium h1,
.lb-heading--medium h2 {
  font-size: 32px !important;
}

/* Background color options for sections */
.lb-section--bg-transparent {
  background: transparent;
}

.lb-section--bg-primary {
  background: var(--lb-bg-primary, #0a0a0a);
}

.lb-section--bg-secondary {
  background: var(--lb-bg-secondary, #111827);
}

.lb-section--bg-tertiary {
  background: var(--lb-bg-tertiary, #1c2230);
}

.lb-section--bg-elevated {
  background: var(--lb-bg-elevated, #202538);
}

.lb-section--bg-surface-subtle {
  background: var(--lb-surface-subtle, rgba(255, 255, 255, 0.05));
}

.lb-section--bg-surface-default {
  background: var(--lb-surface-default, rgba(255, 255, 255, 0.08));
}

.lb-card{
  background: var(--lb-surface);
  border: 1px solid var(--lb-border);
  border-radius: var(--lb-radius);
  box-shadow: var(--lb-shadow);
}

.lb-muted{ color: var(--lb-muted); }
.lb-small{ font-size: 12px; }

.lb-btn{
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 15px;
}
.lb-btn-primary{
  background: #6366f1;
  color: #ffffff;
  border: none;
}
.lb-btn-primary:hover{
  background: #5558e3;
  opacity: 1;
}
.lb-btn-coming-soon{
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
  pointer-events: none;
}
.lb-btn-sm{ 
  padding: 8px 16px !important;  
  font-size: 14px;
  white-space: nowrap;
}

/* AppHeader Styling - matches the Next.js app */
.lb-app-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #111827;
  color: #ffffff;
  transition: all 0.3s ease-in-out, transform 0.3s ease-in-out;
  padding: 8px 0;
  min-height: 50px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transform: translateY(0);
}

.lb-app-header.transparent{
  background-color: transparent;
  box-shadow: none;
}

.lb-app-header-container{
  max-width: 100%;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.lb-logo{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.lb-logo-icon{
  height: 40px;
}

.lb-logo-text{
  height: 24px;
}

.lb-nav{
  display: flex;
  align-items: center;
  gap: 48px;
}

.lb-nav-link{
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.lb-nav-link:hover{
  color: #ffffff;
  opacity: 1;
}

.lb-auth-actions{
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.lb-btn-secondary{
  background: transparent;
  color: #ffffff;
  border: none;
  border-radius: 0;
}

.lb-btn-secondary:hover{
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

.lb-auth-actions .lb-btn-primary{
  margin-left: -2px;
  position: relative;
  z-index: 1;
}

/* Mobile Menu Styles */
.lb-mobile-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

.lb-hamburger {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.lb-hamburger-line {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform-origin: center;
}

.lb-hamburger.active .lb-hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lb-hamburger.active .lb-hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.lb-hamburger.active .lb-hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.lb-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #1c2230;
  backdrop-filter: blur(20px);
  padding: 24px 32px 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.lb-mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.lb-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    top: -16px;
    left: -16px;
}

.lb-mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.lb-mobile-menu.active .lb-mobile-menu-logo {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.05s;
}

.lb-mobile-menu-logo-icon {
  height: 40px;
}

.lb-mobile-menu-logo-text {
  height: 24px;
}

.lb-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lb-mobile-nav-link {
  color: #ffffff;
  font-size: 18px;
  padding: 16px 0;
  transition: all 0.2s ease;
  opacity: 0;
  transform: translateX(20px);
}

.lb-mobile-menu.active .lb-mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
}

.lb-mobile-menu.active .lb-mobile-nav-link:nth-child(1) {
  transition-delay: 0.1s;
}

.lb-mobile-menu.active .lb-mobile-nav-link:nth-child(2) {
  transition-delay: 0.15s;
}

.lb-mobile-menu.active .lb-mobile-nav-link:nth-child(3) {
  transition-delay: 0.2s;
}

.lb-mobile-menu.active .lb-mobile-nav-link:nth-child(4) {
  transition-delay: 0.25s;
}

.lb-mobile-nav-link:hover {
  color: #6366f1;
  opacity: 1;
  padding-left: 12px;
}

.lb-mobile-menu::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.lb-mobile-menu.active::before {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  body{
    padding-top: 0;
  }
  
  .lb-logo-icon{
    height: 36px;
  }
  
  .lb-nav{
    display: none;
  }
  
  .lb-auth-actions{
    display: none;
  }
  
  .lb-mobile-actions {
    display: flex;
  }
  
  .lb-header-cta {
    padding: 8px 16px;
    font-size: 13px;
    transition: opacity 0.3s ease;
    white-space: nowrap;
  }

  /* Hide header CTA on home page by default (hero has the button) */
  body.home .lb-header-cta {
    opacity: 0;
    pointer-events: none;
  }
  
  .lb-hamburger {
    width: 28px;
    height: 28px;
    padding: 6px;
    gap: 4px;
  }
  
  .lb-hamburger-line {
    width: 20px;
    height: 2px;
  }
  
  .lb-hamburger.active .lb-hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  
  .lb-hamburger.active .lb-hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  
  .lb-app-header-container{
    padding: 0 16px;
  }

  /* Hero mobile styles */
  .lb-hero {
    padding: 60px 24px;
    padding-top: 118px;
  }

  .lb-hero__title {
    font-size: 36px;
  }

  .lb-hero__subtitle {
    font-size: 16px;
  }

  /* Feature grid mobile styles */
  .lb-features-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .lb-feature-item {
    display: grid !important;
    grid-template-columns: 80px 1fr !important;
    flex-direction: row !important;
    gap: 16px !important;
    align-items: start !important;
    text-align: left !important;
  }

  .lb-feature-icon,
  .lb-feature-image {
    grid-column: 1 !important;
    margin-bottom: 0 !important;
    width: 100% !important;
  }

  .lb-feature-content {
    grid-column: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .lb-feature-icon {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 4px;
    margin-bottom: 0;
  }

  .lb-feature-icon svg {
    width: 40px;
    height: 40px;
  }

  .lb-feature-image {
    height: 100%;
    min-height: 120px;
    max-height: 180px;
  }

  .lb-feature-title {
    text-align: left;
    margin: 0;
  }

  .lb-feature-description {
    text-align: left;
  }

  /* Override alignment classes on mobile */
  .lb-features-grid--align-center .lb-feature-item,
  .lb-features-grid--align-right .lb-feature-item {
    text-align: left;
    align-items: flex-start;
  }

  .lb-features-grid--align-center .lb-feature-title,
  .lb-features-grid--align-center .lb-feature-description,
  .lb-features-grid--align-right .lb-feature-title,
  .lb-features-grid--align-right .lb-feature-description {
    text-align: left;
    margin: 0;
    max-width: 100%;
  }
}

.lb-hero {
  padding: 100px 80px;
  text-align: left;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding-top: 166px;
}

.lb-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(33, 37, 56, 0.6);
  z-index: 1;
}

.lb-hero__content {
  position: relative;
  z-index: 2;
  width: 1320px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  animation: fadeInUp 0.8s ease-out forwards;
  will-change: transform;
}

.lb-hero__title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.lb-hero__subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
  line-height: 1.6;
}

.lb-hero__cta {
  display: inline-block;
  padding: 14px 32px;
  background: #6366f1;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.2s ease;
}

.lb-hero__cta:hover {
  background: #4f46e5;
  transform: translateY(-2px);
  opacity: 1;
}

/* Legacy support for old hero structure */
.lb-hero-content{
  max-width: 900px;
  margin: 0 auto 60px;
  animation: fadeInUp 0.8s ease-out forwards;
}

.lb-hero h1{
  margin: 0 0 20px;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lb-hero p{
  margin: 0 0 32px;
  color: var(--lb-muted);
  font-size: 20px;
  line-height: 1.5;
}

.lb-hero-actions{ 
  display: flex; 
  gap: 16px; 
  justify-content: center;
  flex-wrap: wrap;
}

.lb-hero-media{
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.lb-hero-media img{
  width: 100%;
  height: auto;
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.lb-media--contained {
  border-radius: var(--lb-radius);
  overflow:hidden;
  border: 1px solid var(--lb-border);
  background: rgba(255,255,255,0.04);
}


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

.lb-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Features Section - Songcraft Style */
.lb-features-section {
  padding: 120px 0;
}

.lb-features-heading {
  text-align: center;
  margin: 0 auto;
}

/* Start hidden for fade-in animation (only on front-end) */
body:not(.block-editor-page) .lb-features-heading {
  opacity: 0;
  transform: translateY(30px);
}

.lb-features-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--lb-text-primary, #ffffff);
}

.lb-features-heading--medium h2 {
  font-size: 32px;
}

.lb-features-subheading {
  margin: 0;
  font-size: var(--lb-font-size-lg, 18px);
  line-height: 1.6;
  color: var(--lb-text-secondary, rgba(255, 255, 255, 0.7));
  max-width: 640px;
  margin: 0 auto;
}

.lb-features-media {
  margin: 60px auto 80px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

/* Hide YouTube branding overlay */
.lb-video-wrapper {
  position: relative;
  width: 100%;
}

.lb-video-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 68px;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

/* Start hidden for fade-in animation (only on front-end) */
body:not(.block-editor-page) .lb-features-media {
  opacity: 0;
  transform: translateY(30px);
}

.lb-features-media img,
.lb-features-media video {
  width: auto;
  margin: 0 auto;
  height: auto;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* Ensure heading and media visible when JavaScript is disabled */
@media (scripting: none) {
  .lb-features-heading,
  .lb-features-media {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Animate heading and media when visible (only on front-end) */
body:not(.block-editor-page) .lb-animate .lb-features-heading {
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 0.05s;
}

body:not(.block-editor-page) .lb-animate .lb-features-media {
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 0.15s;
}

.lb-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 80px 64px;
  margin: 0 auto;
}

/* Add spacing when grid comes directly after heading (no media) */
.lb-features-heading + .lb-features-grid {
  margin-top: 80px;
}

.lb-feature-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lb-features-grid--align-left .lb-feature-item {
  text-align: left;
  align-items: flex-start;
}

.lb-features-grid--align-left .lb-feature-description {
  margin: 0;
}

.lb-features-grid--align-right .lb-feature-item {
  text-align: right;
  align-items: flex-end;
}

.lb-features-grid--align-right .lb-feature-description {
  margin: 0 0 0 auto;
}

/* Start hidden for fade-in animation (only on front-end) */
body:not(.block-editor-page) .lb-feature-item {
  opacity: 0;
  transform: translateY(30px);
}

/* Ensure content is visible when JavaScript is disabled (SEO + accessibility) */
@media (scripting: none) {
  .lb-feature-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Animate when visible (only on front-end) */
body:not(.block-editor-page) .lb-animate .lb-feature-item {
  animation: fadeUp 0.6s ease-out forwards;
}

/* Stagger animation for each item */
body:not(.block-editor-page) .lb-animate .lb-feature-item:nth-child(1) { animation-delay: 0.25s; }
body:not(.block-editor-page) .lb-animate .lb-feature-item:nth-child(2) { animation-delay: 0.35s; }
body:not(.block-editor-page) .lb-animate .lb-feature-item:nth-child(3) { animation-delay: 0.45s; }
body:not(.block-editor-page) .lb-animate .lb-feature-item:nth-child(4) { animation-delay: 0.55s; }
body:not(.block-editor-page) .lb-animate .lb-feature-item:nth-child(5) { animation-delay: 0.65s; }
body:not(.block-editor-page) .lb-animate .lb-feature-item:nth-child(6) { animation-delay: 0.75s; }

.lb-feature-icon {
  width: 100px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.lb-feature-icon svg {
  width: 50px;
  height: 50px;
  color: #ffffff;
  stroke-width: 1;
}

.lb-feature-image {
  width: 100%;
  height: 300px;
  background-color: #2c3e50;
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;
  margin-bottom: 16px;
  border-radius: 8px;
}

.lb-feature-title {
  margin: 0 0 8px 0;
  font-size: var(--lb-font-size-xl, 20px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--lb-text-primary, #ffffff);
}

.lb-feature-description {
  margin: 0 auto;
  font-size: var(--lb-font-size-base, 16px);
  line-height: 1.6;
  color: var(--lb-text-secondary, rgba(255, 255, 255, 0.7));
  max-width: 90%;
}

/* Override feature description in mobile */
@media (max-width: 768px) {
  .lb-feature-description {
    margin: 0;
    max-width: 100%;
  }
}

/* Legacy feature card styles (keep for backward compatibility) */
.lb-feature-card{ padding: 18px; }
.lb-feature-card h3{ margin: 0 0 8px; font-size: 16px; }
.lb-feature-card p{ margin: 0; color: var(--lb-muted); font-size: 14px; line-height: 1.45; }

.lb-split{
  display:grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items:start;
}
/* Image left layout - swap order */
.lb-split--image-left .lb-media {
  order: -1;
}
.lb-split-content{ 
  padding-top: 32px;
  max-width: 560px;
}
/* Start hidden for fade-in animation (only on front-end, not in editor) */
body:not(.block-editor-page) .lb-split .lb-media,
body:not(.block-editor-page) .lb-split-content > * {
  opacity: 0;
  transform: translateY(30px);
}
/* Ensure content is visible when JavaScript is disabled (SEO + accessibility) */
@media (scripting: none) {
  .lb-split .lb-media,
  .lb-split-content > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* Animate when visible */
body:not(.block-editor-page) .lb-animate .lb-media,
body:not(.block-editor-page) .lb-animate .lb-split-content > * {
  animation: fadeUp 0.6s ease-out forwards;
}
body:not(.block-editor-page) .lb-animate .lb-media {
  animation-delay: 0.1s;
}
body:not(.block-editor-page) .lb-animate .lb-split__heading {
  animation-delay: 0.2s;
}
body:not(.block-editor-page) .lb-animate .lb-split__subheading {
  animation-delay: 0.3s;
}
body:not(.block-editor-page) .lb-animate .lb-split__body {
  animation-delay: 0.4s;
}
.lb-split__heading{ margin:0 0 6px; font-size: 30px; }
.lb-split__subheading{ margin:0 0 12px; font-size: 18px; font-weight: 500; color: #ffffff; }
.lb-split__body{ 
  margin:0; 
  color: var(--lb-muted); 
  line-height:1.65; 
  font-size: 15px; 
}
.lb-split__body p {
  margin: 0 0 16px;
}
.lb-split__body p:last-child {
  margin-bottom: 0;
}
.lb-split__body a {
  color: #ffffff;
  text-decoration: underline;
}
.lb-split__body strong {
  color: #ffffff;
}

/* Rich Text Block */
.lb-richtext {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 20px;
}
.lb-richtext__heading {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 1.2;
}
.lb-richtext__subheading {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 500;
  color: var(--lb-muted);
}
.lb-richtext__content {
  color: var(--lb-muted);
  line-height: 1.65;
  font-size: 16px;
}
.lb-richtext__content h1,
.lb-richtext__content h2,
.lb-richtext__content h3,
.lb-richtext__content h4,
.lb-richtext__content h5,
.lb-richtext__content h6 {
  color: #ffffff;
  margin: 32px 0 16px;
  line-height: 1.3;
}
.lb-richtext__content h1 { font-size: 28px; }
.lb-richtext__content h2 { font-size: 24px; }
.lb-richtext__content h3 { font-size: 20px; }
.lb-richtext__content p {
  margin: 0 0 16px;
}
.lb-richtext__content a {
  color: #ffffff;
  text-decoration: underline;
}
.lb-richtext__content strong {
  color: #ffffff;
}
.lb-richtext__content ul,
.lb-richtext__content ol {
  margin: 0 0 16px;
  padding-left: 24px;
}
.lb-richtext__content li {
  margin-bottom: 8px;
}
.lb-richtext__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}
.lb-richtext__content blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--lb-primary);
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
}

.lb-proof-strip{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.lb-pill{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--lb-border);
  background: rgba(255,255,255,0.06);
  color: var(--lb-muted);
  font-size: 13px;
}

/* FAQ Block - Split Layout */
.lb-faq {
  padding: 100px 0;
}
.lb-faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.lb-faq--no-image .lb-faq-wrapper {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}
.lb-faq-image {
  position: sticky;
  top: 100px;
  align-self: start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  min-height: 500px;
  position: relative;
}
.lb-faq-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #1c2230;
  opacity: 0.6;
  border-radius: 12px;
  pointer-events: none;
}
.lb-faq-content {
  /* Content side */
}
.lb-faq:not(.lb-faq--no-image) .lb-faq-content {
  padding-top: 40px;
}
.lb-faq-header {
  margin-bottom: 40px;
}
.lb-faq__heading {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.lb-faq__subheading {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--lb-muted);
  max-width: 520px;
}
.lb-faq-intro {
  margin-bottom: 32px;
  color: var(--lb-muted);
  line-height: 1.65;
  font-size: 15px;
}
.lb-faq-intro p {
  margin: 0 0 16px;
}
.lb-faq-intro p:last-child {
  margin-bottom: 0;
}
.lb-faq-intro a {
  color: #ffffff;
  text-decoration: underline;
}
.lb-faq-intro strong {
  color: #ffffff;
}

/* Accordion Styles */
.lb-accordion {
  display: flex;
  flex-direction: column;
}
.lb-faq--numbered .lb-accordion {
  counter-reset: faq-counter;
}
.lb-faq--numbered .lb-accordion-question-text::before {
  counter-increment: faq-counter;
  content: counter(faq-counter, decimal-leading-zero) ". ";
  font-weight: 600;
  margin-right: 16px;
  color: var(--lb-primary);
}
.lb-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.lb-accordion-item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.lb-accordion-item[open] {
  background: rgba(139, 92, 246, 0.05);
}
.lb-accordion-question {
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  gap: 16px;
  user-select: none;
  list-style: none;
}
.lb-accordion-question::-webkit-details-marker {
  display: none;
}
.lb-accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-accordion-icon svg {
  width: 16px;
  height: 16px;
  color: #ffffff;
  transition: all 0.3s ease;
}
.lb-accordion-icon .lb-icon-minus {
  display: none;
}
.lb-accordion-item[open] .lb-accordion-icon {
  background: var(--lb-primary);
}
.lb-accordion-item[open] .lb-accordion-icon .lb-icon-plus {
  display: none;
}
.lb-accordion-item[open] .lb-accordion-icon .lb-icon-minus {
  display: block;
}
.lb-accordion-answer {
  padding: 0 24px 20px;
  color: var(--lb-muted);
  line-height: 1.65;
  font-size: 15px;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile: Hide image, single column */
@media (max-width: 920px) {
  .lb-faq {
    padding: 60px 0;
  }
  .lb-faq-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .lb-faq-image {
    display: none;
  }
  .lb-faq:not(.lb-faq--no-image) .lb-faq-content {
    padding-top: 0;
  }
  .lb-faq-header {
    margin-bottom: 32px;
  }
  .lb-accordion-question {
    padding: 16px 20px;
    font-size: 15px;
  }
  .lb-accordion-answer {
    padding: 0 20px 16px;
    font-size: 14px;
  }
}

/* Final CTA Section */
.lb-final-cta-section {
  padding: 120px 0;
}

.lb-final-cta-content {
  text-align: center;
}

.lb-final-cta-heading {
  margin: 0 0 24px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--lb-text-primary, #ffffff);
}

.lb-final-cta-subheading {
  margin: 0 0 40px;
  font-size: var(--lb-font-size-lg, 18px);
  line-height: 1.6;
  color: var(--lb-text-secondary, rgba(255, 255, 255, 0.7));
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.lb-final-cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: #6366f1;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.2s ease;
}

.lb-final-cta-button:hover {
  background: #4f46e5;
  transform: translateY(-2px);
  opacity: 1;
}

.lb-site-footer{ 
  padding: 72px 0;
  background: #111827
}

.lb-footer-content{
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.lb-footer-brand{
  max-width: 320px;
}

.lb-footer-logo{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.lb-footer-logo-icon{
  height: 36px;
  width: auto;
}

.lb-footer-logo-text{
  height: 22px;
  width: auto;
}

.lb-footer-tagline{
  color: var(--lb-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.lb-footer-nav{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.lb-footer-column{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lb-footer-heading{
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.lb-footer-links{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lb-footer-links a{
  color: var(--lb-muted);
  font-size: 15px;
  transition: color 0.2s ease;
}

.lb-footer-links a:hover{
  color: #ffffff;
  opacity: 1;
}

.lb-footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.lb-footer-copyright{
  color: var(--lb-muted);
  font-size: 14px;
  margin: 0;
}

.lb-footer-social{
  display: flex;
  gap: 16px;
}

.lb-social-link{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--lb-muted);
  transition: all 0.2s ease;
}

/* Admin Edit Button */
.lb-admin-edit-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #6366f1;
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  transition: all 0.2s ease;
  z-index: 9999;
}

.lb-admin-edit-button:hover {
  background: #5558e3;
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}

.lb-admin-edit-button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .lb-admin-edit-button {
    bottom: 16px;
    left: 16px;
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Edge-to-edge accordions in mobile */
  .lb-accordion,
  .lb-comparison-mobile {
    margin-left: -24px;
    margin-right: -24px;
  }
  
  .lb-accordion-question,
  .lb-comparison-mobile__feature-header {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.lb-social-link:hover{
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 920px){
  .lb-split{ 
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Always show text first on mobile, regardless of left/right setting */
  .lb-split .lb-split-content {
    order: -1;
    padding-top: 0;
    max-width: 87.5%;
  }
  .lb-split .lb-media {
    order: 1;
  }
  .lb-split__heading {
    font-size: 22px;
  }
  .lb-grid{ grid-template-columns: 1fr; }
  .lb-hero h1{ font-size: 42px; }
  .lb-hero p{ font-size: 18px; }
  .lb-hero{ padding: 48px 0 40px; }
  .lb-hero-content{ margin-bottom: 40px; }
  
  .lb-hero__content {
    max-width: 80%;
    margin: 0;
  }
  
  /* Page intro mobile - constrain width */
  .lb-page-intro__heading,
  .lb-page-intro__subheading {
    padding: 0 20px;
    max-width: 100%;
  }
  
  /* Features responsive */
  .lb-features-section {
    padding: 48px 0;
  }
  
  .lb-final-cta-section {
    padding: 48px 0;
  }
  
  .lb-final-cta-subheading {
    margin-bottom: 24px;
  }
  
  .lb-features-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .lb-btn-primary,
  .lb-hero__cta,
  .lb-final-cta-button,
  .lb-video-cta-button {
    padding: 12px 20px;
  }
  
  .lb-footer-content{
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .lb-footer-nav{
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .lb-footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Hide page title field in editor for Home template */
.editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper {
  display: none;
}

/* Block Editor Styles */
.editor-styles-wrapper {
  background: var(--lb-bg);
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--lb-text);
}

.editor-styles-wrapper .block-editor-block-list__layout {
  padding-top: 0;
}

/* Ensure buttons look correct in editor */
.editor-styles-wrapper .lb-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 15px;
}

.editor-styles-wrapper .lb-btn-primary {
  background: #6366f1;
  color: #ffffff;
  border: none;
}

.editor-styles-wrapper .lb-btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

/* Hero section in editor */
.editor-styles-wrapper .lb-hero {
  padding: 60px 24px;
}

.editor-styles-wrapper .lb-hero h1 {
  color: #ffffff;
  text-align: center;
}

.editor-styles-wrapper .lb-hero p {
  color: var(--lb-muted);
  text-align: center;
}

/* ============================================
   Pricing Table Block
   ============================================ */

.lb-pricing {
  padding: 80px 0;
}

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

.lb-pricing__heading {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #ffffff;
}

.lb-pricing__subheading {
  font-size: 18px;
  color: var(--lb-muted);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* Pricing Toggle */
.lb-pricing-toggle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0px auto 56px;
}

.lb-pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px;
  width: fit-content;
}

.lb-pricing-toggle__option {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lb-pricing-toggle__option:hover {
  color: rgba(255, 255, 255, 0.9);
}

.lb-pricing-toggle__option--active {
  background: #6366f1;
  color: #ffffff;
}

.lb-pricing-toggle__savings {
  font-size: 13px;
  font-weight: 500;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
  margin: 0;
}

.lb-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1011px) {
  .lb-pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Pricing Card - Based on ConfigurableCard from app */
.lb-pricing-card {
  background: #212538;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
  position: relative;
}

.lb-pricing-card--highlight {
  transform: scale(1.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
  z-index: 1;
}

@media (max-width: 767px) {
  .lb-pricing-card--highlight {
    transform: scale(1.02);
  }
}


.lb-pricing-card__title-wrapper {
  margin-bottom: 8px;
}

.lb-pricing-card__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.lb-pricing-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #373a4b;
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lb-pricing-card__description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.lb-pricing-card__button {
  margin-top: 24px;
  width: 100%;
  display: block;
  text-align: center;
}

.lb-pricing-card__toggle {
  display: none;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--lb-primary);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 0;
  margin-top: 16px;
  cursor: pointer;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  transition: opacity 0.2s ease;
}

.lb-pricing-card__toggle:hover {
  opacity: 0.8;
}

.lb-pricing-card__toggle svg {
  transition: transform 0.3s ease;
}

.lb-pricing-card__toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

@media (max-width: 1010px) {
  .lb-pricing-card__toggle {
    display: flex;
  }
  
  .lb-pricing-card__features {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .lb-pricing-card__features.is-expanded {
    max-height: 1000px;
  }
}

.lb-pricing-card__price-wrapper {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lb-pricing-card__price {
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.lb-pricing-card__currency {
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
  margin-right: 4px;
}

.lb-pricing-card__period {
  font-size: 16px;
  font-weight: 400;
  color: var(--lb-muted);
}

.lb-pricing-card__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 8px 0 0 0;
}

.lb-pricing-card__note-separator {
  margin: 0 4px;
  opacity: 0.5;
}

/* Pricing Features */
.lb-pricing-card__features {
  flex: 1;
}

.lb-pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lb-pricing-feature {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.lb-pricing-feature:last-child {
  margin-bottom: 0;
}

.lb-pricing-feature__icon {
  flex-shrink: 0;
  color: var(--lb-primary);
  margin-top: 2px;
}

.lb-pricing-feature__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lb-pricing-feature__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.lb-pricing-feature__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* Mobile adjustments */
@media (max-width: 1010px) {
  .lb-pricing {
    padding: 60px 0;
  }

  .lb-pricing__heading {
    font-size: 28px;
  }

  .lb-pricing__subheading {
    font-size: 16px;
  }

  .lb-pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .lb-pricing-card__price-wrapper {
    margin-bottom: 0;
  }

  .lb-pricing-card__price {
    font-size: 40px;
  }
}

/* WordPress Block Editor Sidebar Resizer */
.lb-editor-resizer {
  position: relative;
  width: 8px;
  height: 100%;
  cursor: ew-resize;
  flex-shrink: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.lb-editor-resizer:hover {
  background-color: rgba(99, 102, 241, 0.1);
}

.lb-editor-resizer-line {
  width: 2px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

.lb-editor-resizer:hover .lb-editor-resizer-line,
.lb-editor-resizer--active .lb-editor-resizer-line {
  background-color: #6366f1;
}

.lb-editor-resizer--active {
  background-color: rgba(99, 102, 241, 0.15);
}

/* Ensure sidebar maintains custom width */
body.block-editor-page .interface-interface-skeleton__sidebar {
  flex: 0 0 auto !important;
}

/* Ensure sidebar content fills the resized width */
body.block-editor-page .interface-complementary-area,
body.block-editor-page .components-panel,
body.block-editor-page .edit-post-sidebar,
body.block-editor-page .edit-site-sidebar,
body.block-editor-page .interface-complementary-area__fill {
  width: 100% !important;
  max-width: none !important;
}

body.block-editor-page .components-panel__body,
body.block-editor-page .components-panel__body-content {
  width: 100% !important;
  max-width: none !important;
}

/* Ensure form fields expand to fill available width */
body.block-editor-page .components-base-control,
body.block-editor-page .components-text-control,
body.block-editor-page .components-textarea-control,
body.block-editor-page .acf-field,
body.block-editor-page .acf-input {
  width: 100% !important;
  max-width: none !important;
}

body.block-editor-page .components-base-control__field,
body.block-editor-page .components-text-control__input,
body.block-editor-page .components-textarea-control__input,
body.block-editor-page .acf-input input[type="text"],
body.block-editor-page .acf-input input[type="url"],
body.block-editor-page .acf-input textarea,
body.block-editor-page .acf-input select {
  width: 100% !important;
  max-width: none !important;
}

/* ============================================
   Carousel Block - SEO-Friendly
   ============================================ */

.lb-carousel-section {
  padding: 120px 0;
}

.lb-carousel-heading {
  text-align: center;
  margin: 0 auto 80px;
}

.lb-carousel-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--lb-text-primary, #ffffff);
}

.lb-carousel-heading.lb-features-heading--medium h2 {
  font-size: 32px;
}

.lb-carousel-subheading {
  margin: 0;
  font-size: var(--lb-font-size-lg, 18px);
  line-height: 1.6;
  color: var(--lb-text-secondary, rgba(255, 255, 255, 0.7));
  max-width: 640px;
  margin: 0 auto;
}

.lb-carousel {
  position: relative;
  overflow: hidden;
}

.lb-carousel-track-container {
  overflow: hidden;
  position: relative;
}

.lb-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.lb-carousel-item {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Keep all content in DOM for SEO, just visually transition */
.lb-carousel-item:not(.lb-carousel-item--active) {
  pointer-events: none;
}

/* Ensure split layout works inside carousel */
.lb-carousel-item .lb-split {
  width: 100%;
}

.lb-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.lb-carousel-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #ffffff;
  flex-shrink: 0;
}

.lb-carousel-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.lb-carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.lb-carousel-btn svg {
  width: 24px;
  height: 24px;
}

.lb-carousel-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.lb-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.lb-carousel-dot:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.2);
}

.lb-carousel-dot--active {
  background: #6366f1;
  width: 12px;
  height: 12px;
}

/* Mobile adjustments */
@media (max-width: 920px) {
  .lb-carousel-section {
    padding: 80px 0;
  }
  
  .lb-carousel-heading {
    margin-bottom: 48px;
  }
  
  .lb-carousel-controls {
    margin-top: 32px;
    gap: 16px;
  }
  
  .lb-carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .lb-carousel-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .lb-carousel-dot {
    width: 8px;
    height: 8px;
  }
  
  .lb-carousel-dot--active {
    width: 10px;
    height: 10px;
  }
}

/* Plan Comparison Table */
.lb-plan-comparison {
  background: transparent;
}

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

.lb-section__heading {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #ffffff;
}

.lb-section__subheading {
  font-size: 18px;
  color: var(--lb-muted);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.lb-comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 48px;
}

.lb-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #212538;
  border-radius: 12px;
  overflow: hidden;
  table-layout: fixed;
}

.lb-comparison-table thead th {
  padding: 24px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.02);
  border-bottom: none;
}

.lb-comparison-table__corner {
  width: 40%;
  border-right: 1px solid #262a3d;
}

.lb-comparison-table__plan {
  text-align: center;
  position: relative;
  width: 20%;
}

.lb-comparison-table thead .lb-comparison-table__plan {
  text-align: center;
}

.lb-comparison-table__plan--highlight {
  background: rgba(99, 102, 241, 0.1);
}

.lb-comparison-table__group-row {
  transition: background-color 0.2s ease;
}

.lb-comparison-table__group-row:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.lb-comparison-table__group-row td {
  padding: 16px 20px;
  background: transparent;
  border-top: none;
  border-bottom: 1px solid #262a3d;
}

.lb-comparison-table__group-row td:first-child {
  border-right: 1px solid #262a3d;
}

.lb-comparison-table__group-name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lb-comparison-table__feature-row {
  transition: background-color 0.2s ease;
}

.lb-comparison-table__feature-row:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.lb-comparison-table__feature-row td {
  padding: 16px 20px;
  border-top: none;
  border-bottom: 1px solid #262a3d;
}

.lb-comparison-table__feature-row td:first-child {
  border-right: 1px solid #262a3d;
}

.lb-comparison-table__feature-name {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lb-comparison-tooltip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.4);
  cursor: help;
  transition: color 0.2s ease;
}

.lb-comparison-tooltip-trigger:hover {
  color: rgba(255, 255, 255, 0.8);
}

.lb-comparison-table__cell {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.lb-comparison-table__cell--highlight {
  background: rgba(99, 102, 241, 0.05);
}

.lb-comparison-checkmark {
  display: inline-block;
}

.lb-comparison-dash {
  color: rgba(255, 255, 255, 0.3);
  font-size: 18px;
}

.lb-comparison-table__button-row {
  transition: background-color 0.2s ease;
}

.lb-comparison-table__button-row:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.lb-comparison-table__button-row td {
  padding: 24px 20px;
  border-top: none;
  border-bottom: none;
}

.lb-comparison-table__button-row .lb-btn {
  width: 100%;
  max-width: 200px;
}

/* Tooltip */
.lb-comparison-tooltip {
  position: absolute;
  z-index: 1000;
  background: #1a1d2e;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

/* Mobile Accordion */
.lb-comparison-mobile {
  display: none;
}

@media (max-width: 920px) {
  .lb-comparison-table-wrapper {
    display: none;
  }
  
  .lb-comparison-mobile {
    display: block;
    margin-top: 32px;
  }
  
  .lb-comparison-mobile__group-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 0;
    margin-top: 16px;
  }
  
  .lb-comparison-mobile__feature {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    margin-bottom: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .lb-comparison-mobile__feature:hover {
    background: rgba(255, 255, 255, 0.04);
  }
  
  .lb-comparison-mobile__feature-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease;
    gap: 16px;
  }
  
  .lb-comparison-mobile__feature-header:hover {
    background-color: transparent;
  }
  
  .lb-comparison-mobile__feature-name {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .lb-comparison-mobile__chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #ffffff;
    transition: all 0.3s ease;
  }
  
  .lb-comparison-mobile__feature-header[aria-expanded="true"] .lb-comparison-mobile__chevron {
    transform: rotate(180deg);
    color: var(--lb-primary);
  }
  
  .lb-comparison-mobile__feature-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .lb-comparison-mobile__feature-content.is-expanded {
    max-height: 500px;
  }
  
  .lb-comparison-mobile__plans {
    padding: 0 24px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .lb-comparison-mobile__plan {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    border-bottom: none;
  }
  
  .lb-comparison-mobile__plan:last-child {
    border-bottom: none;
  }
  
  .lb-comparison-mobile__plan-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }
  
  .lb-comparison-mobile__plan-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .lb-comparison-mobile__buttons {
    display: none;
  }
}

/* Video Block */
.lb-video-section {
  padding: 80px 0;
}

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

.lb-video-heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #ffffff;
}

.lb-video-heading--small {
  font-size: clamp(24px, 3vw, 32px);
}

.lb-video-heading--medium {
  font-size: clamp(28px, 3.5vw, 40px);
}

.lb-video-heading--large {
  font-size: clamp(32px, 4vw, 48px);
}

.lb-video-subheading {
  font-size: 18px;
  line-height: 1.6;
  color: var(--lb-muted);
  margin: 0 auto;
  max-width: 700px;
}

.lb-video-media {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.lb-video-text {
  max-width: 800px;
  margin: 0px auto 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--lb-muted);
  text-align: center;
}

.lb-video-cta {
  text-align: center;
  margin-top: 40px;
}

.lb-video-cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: #6366f1;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.2s ease;
}

.lb-video-cta-button:hover {
  background: #4f46e5;
  transform: translateY(-2px);
  opacity: 1;
}

@media (max-width: 768px) {
  .lb-video-section {
    padding: 48px 0;
  }
  
  .lb-video-header {
    margin-bottom: 32px;
  }
  
  .lb-video-heading {
    font-size: 28px;
  }
  
  .lb-video-subheading {
    font-size: 16px;
  }
}

/* Responsive */
@media (max-width: 920px) {
  .lb-comparison-table-wrapper {
    margin: 32px -20px 0;
  }
  
  .lb-comparison-table thead th,
  .lb-comparison-table__feature-row td,
  .lb-comparison-table__group-row td,
  .lb-comparison-table__button-row td {
    padding: 12px 16px;
  }
  
  .lb-comparison-table__corner {
    width: 40%;
  }
  
  .lb-comparison-table__plan {
    width: 20%;
  }
  
  .lb-comparison-table__feature-name {
    font-size: 13px;
  }
  
  .lb-comparison-table__cell {
    font-size: 13px;
  }
}
