/* ============================================
   UNIFIED COMMUNICATION SUITE - FULLY RESPONSIVE
   ============================================ */

/* Features Tabs Section */
.features-tabs-section {
  padding: 80px 0;
  background: var(--ln-new-bg-secondary);
  position: relative;
  overflow: hidden;
}

.features-tabs-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--ln-new-spacing-lg);
}

/* Section Header - Enhanced Responsive */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-size: var(--ln-new-text-sm);
  font-weight: 700;
  color: var(--ln-new-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: var(--ln-new-h2-size);
  font-weight: 800;
  color: var(--ln-new-dark);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: var(--ln-new-text-lg);
  color: var(--ln-new-grey-medium);
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Tab Navigation - Fully Responsive */
.feature-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  padding: 0 var(--ln-new-spacing-md);
}

.feature-tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border: 2px solid var(--ln-new-grey-border);
  background: var(--ln-new-white);
  color: var(--ln-new-grey-medium);
  font-size: var(--ln-new-text-base);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--ln-new-transition-base);
  white-space: nowrap;
  overflow: hidden;
  z-index: 2;
  min-height: 52px;
  font-family: var(--ln-new-font-primary);
}

.feature-tab-btn:hover {
  border-color: var(--ln-new-primary);
  color: var(--ln-new-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(103, 58, 183, 0.15);
}

.feature-tab-btn.active {
  background: linear-gradient(135deg, var(--ln-new-primary) 0%, var(--ln-new-secondary) 100%);
  border-color: var(--ln-new-primary);
  color: var(--ln-new-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(103, 58, 183, 0.3);
}

/* Tab Icon - Enhanced */
.tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  position: relative;
  z-index: 3;
  transition: all var(--ln-new-transition-base);
}

.feature-tab-btn.active .tab-icon {
  transform: scale(1.1);
}

/* Tab Label - Enhanced */
.tab-label {
  font-weight: 600;
  line-height: 1;
  position: relative;
  z-index: 3;
  font-size: var(--ln-new-text-base);
}

/* Tab Loader - Enhanced Animation */
.tab-loader {
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 48px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--ln-new-transition-base);
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.tab-loader.active {
  opacity: 1;
  visibility: visible;
}

.loader-circle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 48px;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0.6) 50%, 
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: translateX(-100%);
  animation: loader-spin 14s linear infinite;
}

/* Loader Animation */
@keyframes loader-spin {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Tab Content - Proper Height for Absolute Positioned Panels */
.feature-tabs-content {
  position: relative;
  min-height: 600px; /* Ensure container has height for absolute positioned panels */
}

.feature-tab-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(30px);
  min-height: auto; /* Remove fixed height */
}

.feature-tab-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Feature Content Grid - Fully Responsive */
.feature-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 500px;
  padding: 0 var(--ln-new-spacing-md);
}

.feature-content-grid.feature-reverse {
  direction: rtl;
}

.feature-content-grid.feature-reverse > * {
  direction: ltr;
}

/* Feature Text - Enhanced Typography */
.feature-text {
  padding: var(--ln-new-spacing-lg) 0;
  max-width: 100%;
}

.feature-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--ln-new-dark);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.feature-description {
  font-size: var(--ln-new-text-lg);
  color: var(--ln-new-grey-medium);
  margin-bottom: 20px;
  line-height: 1.7;
  font-family: var(--ln-new-font-secondary);
}

.feature-highlight {
  font-size: var(--ln-new-text-base);
  color: var(--ln-new-primary);
  font-weight: 600;
  margin-bottom: 32px;
  font-style: italic;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: var(--ln-new-text-base);
  color: var(--ln-new-grey-medium);
  line-height: 1.6;
  font-family: var(--ln-new-font-secondary);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ln-new-success);
  font-weight: 700;
  font-size: 18px;
}

.feature-badge {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--ln-new-primary) 0%, var(--ln-new-secondary) 100%);
  color: var(--ln-new-white);
  font-size: var(--ln-new-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(103, 58, 183, 0.3);
  font-family: var(--ln-new-font-primary);
}

/* Feature Visual - Enhanced Container */
.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--ln-new-spacing-lg) 0;
  position: relative;
}

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .features-tabs-container {
    max-width: 1400px;
  }
  
  .feature-content-grid {
    gap: 100px;
  }
  
  .feature-title {
    font-size: 2.5rem;
  }
  
  .feature-tabs-content {
    min-height: 650px;
  }
}

/* Desktop (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
  .features-tabs-container {
    max-width: 1024px;
    padding: 0 var(--ln-new-spacing-md);
  }
  
  .feature-content-grid {
    gap: 60px;
  }
  
  .feature-tabs-nav {
    gap: 12px;
  }
  
  .feature-tab-btn {
    padding: 14px 20px;
    font-size: var(--ln-new-text-sm);
  }
  
  .feature-tabs-content {
    min-height: 600px;
  }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
  .features-tabs-section {
    padding: 70px 0;
  }
  
  .features-tabs-container {
    padding: 0 var(--ln-new-spacing-md);
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }
  
  .section-subtitle {
    font-size: var(--ln-new-text-base);
  }
  
  .feature-tabs-nav {
    gap: 10px;
    margin-bottom: 50px;
  }
  
  .feature-tab-btn {
    padding: 12px 18px;
    font-size: var(--ln-new-text-sm);
    gap: 8px;
  }
  
  .tab-icon {
    font-size: 18px;
  }
  
  .feature-content-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    min-height: 600px;
  }
  
  .feature-content-grid.feature-reverse {
    direction: ltr;
  }
  
  .feature-visual {
    order: 1;
  }
  
  .feature-text {
    order: 2;
  }
  
  .feature-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  
  .feature-description {
    font-size: var(--ln-new-text-base);
  }
  
  .feature-tabs-content {
    min-height: 700px;
  }
}

/* Tablet Portrait (481px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
  .features-tabs-section {
    padding: 60px 0;
  }
  
  .features-tabs-container {
    padding: 0 var(--ln-new-spacing-md);
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
  
  .section-subtitle {
    font-size: var(--ln-new-text-base);
  }
  
  .feature-tabs-nav {
    gap: 8px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .feature-tab-btn {
    padding: 12px 16px;
    font-size: var(--ln-new-text-sm);
    gap: 6px;
    min-height: 48px;
  }
  
  .tab-icon {
    font-size: 16px;
  }
  
  .feature-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 0;
  }
  
  .feature-title {
    font-size: clamp(1.5rem, 5vw, 1.875rem);
  }
  
  .feature-description {
    font-size: var(--ln-new-text-base);
  }
  
  .feature-tabs-content {
    min-height: 650px;
  }
}

/* Mobile (320px - 480px) - Clean Content Only Design */
@media (max-width: 480px) {
  .features-tabs-section {
    padding: 50px 0;
    overflow: visible;
  }
  
  .features-tabs-container {
    padding: 0 var(--ln-new-spacing-md);
    max-width: 100%;
    overflow: visible;
  }
  
  .section-header {
    margin-bottom: 35px;
  }
  
  .section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.2;
  }
  
  .section-subtitle {
    font-size: var(--ln-new-text-sm);
  }
  
  .feature-tabs-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 0 10px 0;
    gap: 8px;
    margin-bottom: 35px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .feature-tabs-nav::-webkit-scrollbar {
    display: none;
  }
  
  .feature-tab-btn {
    flex-shrink: 0;
    padding: 10px 16px;
    font-size: var(--ln-new-text-sm);
    gap: 6px;
    min-height: 44px;
    min-width: 44px;
  }
  
  .tab-label {
    display: none;
  }
  
  .tab-icon {
    font-size: 18px;
  }
  
  /* Mobile: Remove Fixed Heights and Show Content After Image */
  .feature-tabs-content {
    min-height: auto !important; /* Remove fixed height */
    height: auto !important;
    position: relative;
  }
  
  .feature-tab-panel {
    position: static !important; /* Change from absolute to static */
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
    height: auto !important;
    min-height: auto !important;
  }
  
  .feature-tab-panel:not(.active) {
    display: none !important; /* Hide inactive panels */
  }
  
  .feature-tab-panel.active {
    display: block !important; /* Show active panel */
  }
  
  /* Mobile Content Grid - Content After Image */
  .feature-content-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
    text-align: left;
    padding: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  
  /* Show image first, then content */
  .feature-visual {
    order: 1 !important;
    display: block !important;
    margin-bottom: 20px;
  }
  
  .feature-text {
    order: 2 !important;
    padding: var(--ln-new-spacing-lg);
    background: var(--ln-new-white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--ln-new-grey-border);
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    height: auto;
  }
  
  /* Reverse layout for feature-reverse */
  .feature-content-grid.feature-reverse .feature-visual {
    order: 1 !important; /* Keep image first even in reverse */
  }
  
  .feature-content-grid.feature-reverse .feature-text {
    order: 2 !important; /* Keep content second even in reverse */
  }
  
  .feature-title {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.3;
    word-wrap: break-word;
  }
  
  .feature-description {
    font-size: var(--ln-new-text-sm);
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.5;
    word-wrap: break-word;
  }
  
  .feature-highlight {
    font-size: var(--ln-new-text-sm);
    margin-bottom: 20px;
    text-align: center;
    font-style: italic;
    line-height: 1.4;
    word-wrap: break-word;
  }
  
  .feature-list {
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
  }
  
  .feature-list li {
    font-size: var(--ln-new-text-sm);
    margin-bottom: 8px;
    padding-left: 20px;
    text-align: left;
    line-height: 1.4;
    word-wrap: break-word;
    width: 100%;
    box-sizing: border-box;
  }
  
  .feature-list li::before {
    font-size: 14px;
  }
  
  .feature-badge {
    font-size: 10px;
    padding: 6px 12px;
    display: block;
    text-align: center;
    margin: 0 auto;
    max-width: fit-content;
    word-wrap: break-word;
  }
}

/* Extra Small Mobile (below 320px) - Clean Content Only Design */
@media (max-width: 319px) {
  .features-tabs-section {
    padding: 40px 0;
  }
  
  .features-tabs-container {
    padding: 0 var(--ln-new-spacing-sm);
  }
  
  .section-title {
    font-size: 1.25rem;
  }
  
  .feature-title {
    font-size: 1.125rem;
  }
  
  .feature-tab-btn {
    padding: 8px 12px;
    min-width: 40px;
    min-height: 40px;
  }
  
  .tab-icon {
    font-size: 16px;
  }
  
  .feature-text {
    padding: var(--ln-new-spacing-md);
    margin: 0;
  }
  
  /* Remove fixed heights */
  .feature-tabs-content {
    min-height: auto !important;
    height: auto !important;
  }
  
  .feature-tab-panel {
    position: static !important;
    height: auto !important;
    min-height: auto !important;
  }
}
/* ============================================
   ENHANCED MOCKUP RESPONSIVENESS
   ============================================ */

/* All Mockups - Base Responsive Behavior */
.ln-new-feature-phone,
.ln-new-email-builder,
.ln-new-email-suite-mockup,
.ln-new-push-notification-mockup,
.ln-new-schedule-widget,
.ln-new-sms-phone {
  transition: all var(--ln-new-transition-base);
  margin: 0 auto;
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
  .ln-new-feature-phone,
  .ln-new-email-builder,
  .ln-new-email-suite-mockup,
  .ln-new-push-notification-mockup,
  .ln-new-schedule-widget,
  .ln-new-sms-phone {
    transform: scale(0.9);
    transform-origin: center;
  }
  
  .ln-new-email-builder-body {
    grid-template-columns: 100px 1fr;
  }
  
  .ln-new-schedule-widget-body {
    gap: 20px;
  }
}

/* Tablet Portrait (481px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
  .ln-new-feature-phone,
  .ln-new-email-builder,
  .ln-new-email-suite-mockup,
  .ln-new-push-notification-mockup,
  .ln-new-schedule-widget,
  .ln-new-sms-phone {
    transform: scale(0.85);
    transform-origin: center;
  }
  
  .ln-new-email-builder-sidebar {
    display: none;
  }
  
  .ln-new-email-builder-body {
    grid-template-columns: 1fr;
  }
  
  .ln-new-schedule-widget-body {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .ln-new-email-suite-body {
    grid-template-columns: 120px 1fr;
  }
}

/* Mobile (320px - 480px) - Show Images with Content */
@media (max-width: 480px) {
  /* Show mockups on mobile but scaled down */
  .ln-new-feature-phone,
  .ln-new-email-builder,
  .ln-new-email-suite-mockup,
  .ln-new-push-notification-mockup,
  .ln-new-schedule-widget,
  .ln-new-sms-phone {
    display: block !important;
    transform: scale(0.7);
    transform-origin: center;
    max-width: 90%;
    margin: 0 auto;
  }
  
  /* Simplify complex mockups on mobile */
  .ln-new-email-builder-sidebar {
    display: none;
  }
  
  .ln-new-email-builder-body {
    grid-template-columns: 1fr;
  }
  
  .ln-new-schedule-widget-body {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
  
  .ln-new-email-suite-body {
    grid-template-columns: 1fr;
  }
  
  .ln-new-email-suite-sidebar {
    display: none;
  }
  
  /* Ensure feature visual containers are shown */
  .feature-visual {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
  }
}

/* Extra Small Mobile (below 320px) - Smaller Images */
@media (max-width: 319px) {
  .ln-new-feature-phone,
  .ln-new-email-builder,
  .ln-new-email-suite-mockup,
  .ln-new-push-notification-mockup,
  .ln-new-schedule-widget,
  .ln-new-sms-phone {
    transform: scale(0.6);
    transform-origin: center;
    max-width: 85%;
  }
}

/* ============================================
   ACCESSIBILITY & PERFORMANCE ENHANCEMENTS
   ============================================ */

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .feature-tab-panel,
  .feature-tab-btn,
  .loader-circle,
  .ln-new-feature-phone,
  .ln-new-email-builder,
  .ln-new-email-suite-mockup,
  .ln-new-push-notification-mockup,
  .ln-new-schedule-widget,
  .ln-new-sms-phone {
    animation: none !important;
    transition: none !important;
  }
  
  .feature-tab-panel.active {
    transform: none !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .feature-tab-btn {
    border-width: 3px;
  }
  
  .feature-tab-btn.active {
    background: var(--ln-new-dark);
    border-color: var(--ln-new-dark);
  }
  
  .feature-badge {
    background: var(--ln-new-dark);
    border: 2px solid var(--ln-new-white);
  }
}

/* Focus Management for Accessibility */
.feature-tab-btn:focus {
  outline: 3px solid rgba(103, 58, 183, 0.5);
  outline-offset: 2px;
}

.feature-tab-btn:focus:not(:focus-visible) {
  outline: none;
}

/* Print Styles */
@media print {
  .features-tabs-section {
    background: white !important;
    padding: 20px 0 !important;
  }
  
  .feature-tabs-nav {
    display: none !important;
  }
  
  .feature-tab-panel {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  
  .feature-tab-panel:not(.active) {
    display: none !important;
  }
  
  .feature-content-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .ln-new-feature-phone,
  .ln-new-email-builder,
  .ln-new-email-suite-mockup,
  .ln-new-push-notification-mockup,
  .ln-new-schedule-widget,
  .ln-new-sms-phone {
    transform: none !important;
    box-shadow: none !important;
    border: 1px solid #000 !important;
  }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* GPU Acceleration for Smooth Animations */
.feature-tab-panel,
.feature-tab-btn,
.ln-new-feature-phone,
.ln-new-email-builder,
.ln-new-email-suite-mockup,
.ln-new-push-notification-mockup,
.ln-new-schedule-widget,
.ln-new-sms-phone {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Optimize Repaints */
.feature-tabs-content {
  contain: layout style paint;
}

.feature-visual {
  contain: layout style;
}

/* Lazy Loading Hint for Images */
.feature-visual img {
  loading: lazy;
  decoding: async;
}
/* ============================================
   CLEAN MOBILE CONTENT DESIGN
   ============================================ */

/* Simple Mobile Content Cards */
@media (max-width: 480px) {
  /* Simple animation for content cards */
  .feature-text {
    animation: ln-mobile-card-appear 0.5s ease-out;
    position: relative;
  }
  
  @keyframes ln-mobile-card-appear {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Clean mobile typography */
  .feature-title {
    font-weight: 700;
    color: var(--ln-new-dark);
  }
  
  /* Simple mobile list styling */
  .feature-list {
    padding: 0;
    margin-bottom: 24px;
  }
  
  .feature-list li {
    background: transparent;
    margin-bottom: 8px;
    padding: 8px 0 8px 24px;
    border: none;
    position: relative;
  }
  
  .feature-list li::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ln-new-success);
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline;
    font-size: 14px;
    font-weight: 700;
    background: transparent;
  }
  
  /* Simple mobile badge */
  .feature-badge {
    background: linear-gradient(135deg, var(--ln-new-primary) 0%, var(--ln-new-secondary) 100%);
    border-radius: 20px;
  }
  
  /* Clean mobile content spacing */
  .feature-description {
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .feature-highlight {
    background: transparent;
    padding: 0;
    border: none;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--ln-new-primary);
  }
  
  /* Remove fixed heights completely */
  .feature-tabs-content {
    min-height: auto !important;
    height: auto !important;
  }
  
  /* Clean mobile tab panel styling */
  .feature-tab-panel {
    padding: 0;
    height: auto !important;
    min-height: auto !important;
  }
}

/* ============================================
   RESPONSIVE DESIGN PRESERVATION
   ============================================ */

/* Tablets and Desktop - Keep Original Design */
@media (min-width: 481px) {
  /* Show both images and content on larger screens */
  .feature-visual {
    display: flex !important;
  }
  
  .ln-new-feature-phone,
  .ln-new-email-builder,
  .ln-new-email-suite-mockup,
  .ln-new-push-notification-mockup,
  .ln-new-schedule-widget,
  .ln-new-sms-phone {
    display: block !important;
  }
  
  /* Clean content styling for larger screens */
  .feature-text {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    margin: 0 !important;
    padding: var(--ln-new-spacing-lg) 0 !important;
  }
  
  .feature-title {
    color: var(--ln-new-dark) !important;
    font-weight: 700 !important;
  }
  
  .feature-list {
    background: transparent !important;
    padding: 0 !important;
  }
  
  .feature-list li {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding-left: 28px !important;
    margin-bottom: 14px !important;
  }
  
  .feature-list li::before {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    background: transparent !important;
    color: var(--ln-new-success) !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    display: inline !important;
    font-size: 18px !important;
  }
  
  .feature-highlight {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    color: var(--ln-new-primary) !important;
  }
}