/* Custom Font */
@font-face {
  font-family: 'CapSmall';
  src: url('../assets/Capsmall.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* CSS Variables */
:root {
  --primary-dark: #0a0a0a;
  --secondary-dark: #121212;
  --primary-blue: #00d4ff;
  --primary-blue-dark: #0099cc;
  --ios-blue: #007AFF;
  --ios-blue-dark: #0051D5;
  --web-teal: #00D4AA;
  --web-teal-dark: #00A886;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --header-height: 80px;
  --transition-speed: 0.3s;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, 
    #0a0a0a 0%, 
    #0f0f0f 20%, 
    rgba(15, 15, 15, 0.95) 40%,
    rgba(20, 10, 10, 0.98) 60%,  /* Subtle red tint */
    rgba(15, 15, 15, 0.95) 80%,
    #0a0a0a 100%
  );
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Add subtle pattern overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 100px,
      rgba(255, 50, 50, 0.01) 100px,
      rgba(255, 50, 50, 0.01) 101px
    );
  pointer-events: none;
  z-index: 1;
}

/* Ensure content appears above background pattern */
main {
  position: relative;
  z-index: 2;
}

/* Header Styles */
header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: all var(--transition-speed);
}

/* Header Brand Container */
.header-brand {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 1rem;
  -webkit-box-flex: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.header-logo {
  height: 55px !important;
  max-height: 55px !important;
  width: 55px !important;
  max-width: 55px !important;
  min-height: 55px !important;
  min-width: 55px !important;
  object-fit: contain !important;
  -o-object-fit: contain !important;
  display: block !important;
  -webkit-box-flex: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0 !important;
  vertical-align: middle !important;
}

header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  background: -webkit-linear-gradient(135deg, var(--primary-blue), var(--web-teal));
  background: linear-gradient(135deg, var(--primary-blue), var(--web-teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'CapSmall', 'Inter', sans-serif;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  white-space: nowrap;
  -webkit-box-flex: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  display: inline-block !important;
  vertical-align: middle !important;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-speed);
  padding: 0.5rem 0;
}

nav ul li a:hover {
  color: var(--primary-blue);
}

/* Product Indicators */
.has-indicator {
  position: relative;
}

.has-indicator.ios::before,
.has-indicator.web::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 20px;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 2px;
  transition: all var(--transition-speed);
}

.has-indicator.ios::before {
  background: var(--ios-blue);
}

.has-indicator.web::before {
  background: var(--web-teal);
}

.has-indicator:hover::before {
  height: 30px;
}

/* Login Button */
.login-nav-item {
  margin-left: 1rem;
}

.login-btn {
  padding: 0.6rem 1.5rem !important;
  background: linear-gradient(135deg, var(--primary-blue), var(--web-teal)) !important;
  border-radius: 6px;
  color: var(--text-primary) !important;
  font-weight: 600 !important;
  transition: all var(--transition-speed) !important;
  display: inline-block;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
  color: var(--text-primary) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}


/* Main Content */
main {
  margin-top: var(--header-height);
}

/* Section Styles with Background Variations */
section {
  padding: 5rem 5%;
  position: relative;
  overflow: hidden;
  margin: 0;
}

/* Background variations for better visual separation */
.value-section {
  background: #ffffff;
}

/* Enhanced iOS App Section */
#ios-app {
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 122, 255, 0.02) 20%,
    rgba(0, 30, 50, 0.25) 50%,
    rgba(0, 122, 255, 0.02) 80%,
    rgba(0, 0, 0, 0.3) 100%
  );
  padding: 5rem 5%;
  margin-top: -2rem;
  position: relative;
  overflow: hidden;
}

/* Dynamic background pattern for iOS */
.ios-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, 
    rgba(0, 122, 255, 0.05) 0%, 
    transparent 50%),
    radial-gradient(circle at 80% 80%, 
    rgba(0, 122, 255, 0.03) 0%, 
    transparent 50%);
  animation: floatBackground 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatBackground {
  0%, 100% { transform: translateX(0) translateY(0); }
  33% { transform: translateX(50px) translateY(-30px); }
  66% { transform: translateX(-30px) translateY(20px); }
}

/* iOS Highlights Bar */
.ios-highlights {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2.5rem 0 2rem;
  padding: 1.5rem;
  position: relative;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ios-blue);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.highlight-item:nth-child(1) { animation-delay: 0.2s; }
.highlight-item:nth-child(2) { animation-delay: 0.4s; }
.highlight-item:nth-child(3) { animation-delay: 0.6s; }

.highlight-item i {
  font-size: 1.3rem;
  color: var(--ios-blue);
  background: linear-gradient(135deg, 
    rgba(0, 122, 255, 0.1),
    rgba(0, 122, 255, 0.05));
  padding: 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 122, 255, 0.2);
}

/* iOS Features Wrapper */
.ios-features-wrapper {
  margin-top: 1rem;
  padding: 0.5rem 0 1rem;
  position: relative;
}

.ios-features-wrapper .features-title {
  margin: 1.5rem 0 2rem 0;
}

/* iOS Features Grid - Outline Style Matching Web App */
.ios-features.enhanced-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  margin-bottom: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* Remove background pattern for cleaner look */
.ios-features.enhanced-grid::before {
  display: none;
}

.ios-features.enhanced-grid .feature-card {
  padding: 2rem;
  background: transparent;
  border: 1px solid rgba(0, 122, 255, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  overflow: hidden;
}

.ios-features.enhanced-grid .feature-card .feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(0, 122, 255, 0.2);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.ios-features.enhanced-grid .feature-card .feature-icon i {
  font-size: 1.5rem;
  color: rgba(0, 122, 255, 0.7);
  transition: all 0.3s ease;
}

/* Remove icon glow effect for cleaner look */
.ios-features.enhanced-grid .feature-card .feature-icon::after {
  display: none;
}

/* Text content styling */
.ios-features.enhanced-grid .feature-card .feature-content {
  display: block;
}

.ios-features.enhanced-grid .feature-card h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.ios-features.enhanced-grid .feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  opacity: 0.9;
  transition: all 0.3s ease;
}

/* Hover effects */
.ios-features.enhanced-grid .feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 122, 255, 0.3);
  background: rgba(0, 122, 255, 0.02);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.1);
}

.ios-features.enhanced-grid .feature-card:hover .feature-icon {
  background: rgba(0, 122, 255, 0.05);
  border-color: rgba(0, 122, 255, 0.3);
}

.ios-features.enhanced-grid .feature-card:hover .feature-icon i {
  color: rgba(0, 122, 255, 0.9);
  transform: scale(1.1);
}

.ios-features.enhanced-grid .feature-card:hover h3 {
  color: var(--ios-blue);
}

.ios-features.enhanced-grid .feature-card:hover p {
  opacity: 1;
}

/* Maintain three column layout on larger screens */
@media (min-width: 1200px) {
  .ios-features.enhanced-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}


/* Mobile Responsive for iOS Highlights */
@media (max-width: 768px) {
  .ios-highlights {
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
  }
  
  .highlight-item {
    justify-content: center;
  }
  
  .ios-features.enhanced-grid {
    grid-template-columns: 1fr;
    padding: 1rem 2rem;
    gap: 2.5rem;
  }
  
  .ios-features.enhanced-grid .feature-card {
    gap: 1.5rem;
  }
  
  .ios-features.enhanced-grid .feature-card .feature-icon i {
    font-size: 2rem;
  }
}

/* About to Web App transition wave */
.about-to-webapp-transition {
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  height: 80px;
  overflow: hidden;
  z-index: 3;
}

.about-to-webapp-transition {
  display: none;
}

.about-to-webapp-transition svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  display: block;
}

.about-section .section-transition-bottom {
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 120px;
  overflow: hidden;
  z-index: 1;
}

.about-section .section-transition-bottom svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
  display: block;
}

.intro-section-closer {
  display: none;
}

/* Web App Section - Modern White Design */
.webapp-section {
  background: #ffffff !important;
  position: relative;
  padding: 0 !important;
  z-index: 10;
  width: 100%;
  isolation: isolate;
  margin: 0;
  border-top: none;
}

.webapp-hero {
  background: #ffffff;
  padding: 5rem 5%;
}

.webapp-hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.webapp-hero-text {
  animation: fadeInLeft 1s ease-out;
}

.webapp-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: none !important;
}

.webapp-title i {
  color: #00a886;
  font-size: 2.5rem;
}

.webapp-hero-text .section-intro {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin: 0;
  max-width: 100%;
}

.webapp-hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.webapp-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

#web-app {
  background: transparent;
  position: relative;
  padding-bottom: 100px;
}

.webapp-section .content-wrapper {
  background: #ffffff !important;
  padding: 0 5% !important;
}

/* Override any remaining background styles in webapp section */
.webapp-section > div,
.webapp-section section {
  background: #ffffff !important;
}

/* Web App section text colors for white background - ALL ELEMENTS */
.webapp-section h2,
.webapp-section h3,
.webapp-section h4 {
  color: #1a1a1a !important;
}

.webapp-section p,
.webapp-section li {
  color: #3a3a3a !important;
}

.webapp-section .section-intro {
  color: #3a3a3a !important;
}

.webapp-section .feature-card h4,
.webapp-section .feature-card h3 {
  color: #1a1a1a !important;
}

.webapp-section .feature-card p {
  color: #4a4a4a !important;
}

/* Session management section */
.webapp-section .session-comparison h3 {
  color: #1a1a1a !important;
}

.webapp-section .comparison-grid h4 {
  color: #1a1a1a !important;
}

.webapp-section .comparison-grid p,
.webapp-section .comparison-grid li {
  color: #3a3a3a !important;
}

/* Feature icons in Web App section */
.webapp-section .feature-icon {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  width: 50px !important;
  height: 50px !important;
  margin-bottom: 1rem !important;
}

.webapp-section .feature-icon i {
  color: #00a886 !important;
  font-size: 2rem !important;
}

/* Slider items - clean and minimal */
.webapp-section .slider-item {
  background: #fafafa !important;
  border: 1px solid #e8e8e8 !important;
  box-shadow: none !important;
  padding: 2.5rem !important;
  text-shadow: none !important;
}

.webapp-section .slider-item i {
  color: #00a886 !important;
  font-size: 2.5rem !important;
  margin-bottom: 1.5rem !important;
  text-shadow: none !important;
}

.webapp-section .slider-item p {
  color: #1a1a1a !important;
  font-size: 1.3rem !important;
  line-height: 1.7 !important;
  font-weight: 500 !important;
  text-shadow: none !important;
}

/* Tab system - connected design */
.webapp-section .feature-tabs {
  border-bottom: 2px solid #e0e0e0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.webapp-section .tab-button {
  color: #4a4a4a !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 3px solid transparent !important;
  box-shadow: none !important;
  padding: 1rem 1.5rem !important;
  border-radius: 0 !important;
  margin-bottom: -2px !important;
}

.webapp-section .tab-button.active {
  color: #00a886 !important;
  background: transparent !important;
  border-bottom: 3px solid #00a886 !important;
  box-shadow: none !important;
}

.webapp-section .tab-button:hover {
  color: #00a886 !important;
  background: #fafafa !important;
}

/* Tab content container */
.webapp-section .tab-content {
  background: #ffffff !important;
  padding: 2rem 0 !important;
  margin-top: 0 !important;
}

.webapp-section .tab-pane {
  background: #ffffff !important;
}

.webapp-section .features-grid {
  background: #ffffff !important;
}

/* Pro features grid - clean design */
.webapp-section .pro-feature {
  background: #ffffff !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
  padding: 2rem !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.webapp-section .pro-feature h4 {
  color: #1a1a1a !important;
  margin-bottom: 0.75rem !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
}

.webapp-section .pro-feature p {
  color: #3a3a3a !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
}

/* Subtle divider before Coming Soon & Pricing */
.webapp-section .webapp-subtle-divider {
  margin: 5rem 0 0 0;
  padding-top: 5rem;
  border-top: 1px solid #e8e8e8;
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
  min-height: 3rem;
}

/* Coming Soon section container */
.webapp-section .coming-soon-section {
  background: #fafafa !important;
  padding: 3rem 5% !important;
  margin: 0 !important;
}

.webapp-section .coming-soon-section h3 {
  color: #1a1a1a !important;
  font-weight: 700 !important;
}

.webapp-section .coming-soon-section .section-intro {
  color: #3a3a3a !important;
}

.webapp-section .pro-features-grid {
  background: transparent !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2rem !important;
  margin-top: 2rem !important;
}

@media (max-width: 1200px) {
  .webapp-section .pro-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .webapp-section .pro-features-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Pricing cards in Web App */
.webapp-section .pricing-card {
  background: #ffffff !important;
  border: 1px solid #e8e8e8 !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04) !important;
  border-radius: 12px !important;
  padding: 2rem !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 500px !important;
}

.webapp-section .pricing-card h3 {
  color: #1a1a1a !important;
  font-size: 1.5rem !important;
  margin-bottom: 1rem !important;
}

.webapp-section .pricing-card .price {
  color: #00a886 !important;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
}

.webapp-section .pricing-card .price-desc {
  color: #4a4a4a !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

.webapp-section .pricing-card li {
  color: #2a2a2a !important;
  padding: 0.5rem 0 !important;
}

.webapp-section .pricing-card i {
  color: #00a886 !important;
}

.webapp-section .pricing-card .cta-button,
.webapp-section .pricing-card button {
  width: 100% !important;
  padding: 1rem 1.5rem !important;
  font-size: 1rem !important;
  margin-top: auto !important;
  text-align: center !important;
}

.webapp-section .pricing-card .badge,
.webapp-section .pricing-card .coming-soon-badge {
  font-size: 0.85rem !important;
  padding: 0.4rem 0.8rem !important;
  white-space: nowrap !important;
  display: inline-block !important;
  border-radius: 4px !important;
}

.webapp-section .pricing-card .pricing-header {
  margin-bottom: 1.5rem !important;
}

/* Pricing section */
.webapp-section #pricing {
  background: #fafafa !important;
  padding: 4rem 5% 6rem !important;
  margin: 0 !important;
}

/* Pricing grid */
.webapp-section .pricing-grid {
  background: transparent !important;
  padding: 2rem 0 !important;
}

/* Screenshots title */
.webapp-section .screenshots-title {
  color: #1a1a1a !important;
}

/* CTA buttons */
.webapp-section .webapp-cta h3 {
  color: #1a1a1a !important;
}

/* Comparison items styling */
.webapp-section .compare-item {
  background: #f8f9fa !important;
  border: 2px solid #e0e0e0 !important;
}

.webapp-section .compare-item h4 {
  color: #1a1a1a !important;
}

.webapp-section .compare-item ul li {
  color: #2a2a2a !important;
}

.webapp-section .compare-item ul li::before {
  color: #00a886 !important;
}

/* Section divider in webapp - hide it */
.webapp-section .section-divider {
  display: none !important;
}

/* Session management section - clean design */
.webapp-section div[style*="background: linear-gradient"] {
  background: transparent !important;
}

/* Session management title */
.webapp-section h3[style*="-webkit-text-fill-color"] {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
  color: #1a1a1a !important;
  font-weight: 700 !important;
  border-bottom: none !important;
  padding-bottom: 1rem !important;
  display: block !important;
}

/* Session management step titles */
.webapp-section h4[style*="color: #00d4ff"],
.webapp-section h4[style*="color: rgb"] {
  color: #1a1a1a !important;
  font-weight: 600 !important;
}

/* Session management step descriptions */
.webapp-section p[style*="color: rgba(255, 255, 255"],
.webapp-section p[style*="color: rgb"] {
  color: #3a3a3a !important;
}

/* Number badges - clean solid style */
.webapp-section span[style*="color: #00D4AA"] {
  color: #ffffff !important;
  background: #00a886 !important;
  border: none !important;
  box-shadow: 0 3px 12px rgba(0, 168, 134, 0.3) !important;
}

/* Step containers - add subtle background */
.webapp-section div[style*="display: flex"][style*="gap: 40px"] {
  background: #f8f9fa !important;
  padding: 2rem !important;
  border-radius: 12px !important;
  border-left: 4px solid #00a886 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

/* Remove radial gradient glows behind badges */
.webapp-section div[style*="radial-gradient"] {
  display: none !important;
}

/* Features title */
.webapp-section .features-title {
  color: #1a1a1a !important;
  font-weight: 700 !important;
  border-bottom: none !important;
  padding-bottom: 1rem !important;
  display: block !important;
  font-size: 2rem !important;
  margin-bottom: 2rem !important;
}

/* Clean features list - REVER inspired */
.webapp-section .clean-features-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.webapp-section .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.webapp-section .feature-item:last-child {
  margin-bottom: 0;
}

.webapp-section .feature-item i {
  color: #00a886;
  font-size: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.webapp-section .feature-text h4 {
  color: #1a1a1a;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}

.webapp-section .feature-text p {
  color: #4a4a4a;
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0;
}

/* Feature cards - modern minimal design (keep for backwards compatibility) */
.webapp-section .feature-card {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 2rem 1.5rem !important;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
  border-left: 3px solid transparent !important;
}

.webapp-section .feature-card:hover {
  box-shadow: none !important;
  transform: none !important;
  border-left-color: #00a886 !important;
  background: #fafafa !important;
}

.webapp-section .feature-card h3,
.webapp-section .feature-card h4 {
  color: #1a1a1a !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  margin-bottom: 0.75rem !important;
}

.webapp-section .feature-card p {
  color: #3a3a3a !important;
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
}

/* Mobile responsive for clean features list */
@media (max-width: 768px) {
  .webapp-section .clean-features-list {
    padding: 2rem 1rem;
  }

  .webapp-section .feature-item {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .webapp-section .feature-item i {
    font-size: 1.25rem;
  }

  .webapp-section .feature-text h4 {
    font-size: 1.5rem;
  }

  .webapp-section .feature-text p {
    font-size: 1.1rem;
  }
}

/* Mobile responsive for Web App Hero */
@media (max-width: 768px) {
  .webapp-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .webapp-title {
    font-size: 2rem;
  }

  .webapp-hero-text .section-intro {
    font-size: 1.1rem;
  }

  .webapp-hero {
    padding: 3rem 5% 2rem;
  }
}

.comparison-section {
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(10, 10, 15, 0.5) 50%, 
    transparent 100%
  );
}

#pricing {
  background: linear-gradient(180deg, 
    rgba(5, 5, 10, 0.3) 0%, 
    rgba(15, 5, 5, 0.4) 50%, 
    rgba(5, 5, 10, 0.3) 100%
  );
}

section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== SECTION 1: Hero with Device Mockups ===== */
.hero-section {
  min-height: 100vh;
  padding: calc(var(--header-height) + 4rem) 5% 5rem;
  position: relative;
  overflow: hidden;
  margin: 0;
  /* Pure white background */
  background: #ffffff !important;
  z-index: 10;
  width: 100%;
  isolation: isolate;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  min-height: calc(100vh - var(--header-height) - 8rem);
  background: #ffffff;
}

.hero-left {
  animation: fadeInLeft 1s ease-out;
  position: relative;
  z-index: 100;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero-eyebrow {
  font-size: 1rem;
  font-weight: 500;
  color: #0066cc;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
}

.hero-main {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-accent {
  font-size: 3rem;
  font-weight: 300;
  color: #4a4a4a;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #5a5a5a;
  margin-bottom: 3rem;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  position: relative;
  z-index: 100;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-blue-dark), #006699);
  transition: left 0.3s ease;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary span,
.btn-primary i {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-primary i {
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(5px);
}

/* Device Mockups */
.hero-right {
  position: relative;
  height: auto;
  animation: fadeInRight 1s ease-out;
  background: #ffffff;
}

.device-mockups {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: visible;
  /* Pure white background for seamless blend */
  background: #ffffff;
}

.mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  background: #ffffff;
}

.mockup-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transform: none;
  transition: transform 0.5s ease;
  animation: fadeInRight 1s ease-out;
  filter: none;
  background: #ffffff;
  display: block;
}

.mockup-image:hover {
  transform: scale(1.02);
}

/* Remove shadow for seamless white background */
.device-mockups::before {
  display: none;
}

/* Scroll Prompt */
.scroll-prompt {
  margin-top: 3rem;
  animation: fadeIn 1s ease-out 0.5s both;
}

.scroll-down {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #5a5a5a;
  transition: all 0.3s ease;
  cursor: pointer;
}

.scroll-down span {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
}

.scroll-down span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #0066cc;
  transition: width 0.3s ease;
}

.scroll-down:hover span::after {
  width: 100%;
}

.scroll-down:hover {
  color: #0066cc;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  animation: bounceDown 2s infinite;
  color: #5a5a5a;
}

.scroll-arrow i {
  font-size: 0.9rem;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(5px);
  }
  60% {
    transform: translateY(3px);
  }
}

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

/* Section Transition - Enhanced Visibility */
.section-transition {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 150px;
  overflow: hidden;
  z-index: 1;
}

.section-transition svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 150px;
  display: block;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== SECTION 2: Value Proposition ===== */
.value-section {
  padding: 5rem 5%;
  background: #ffffff !important;
  position: relative;
  z-index: 10;
  width: 100%;
  isolation: isolate;
}

.value-container {
  max-width: 1000px;
  margin: 0 auto;
}

.value-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.title-line {
  color: var(--text-primary);
  letter-spacing: -1px;
}

.title-accent {
  color: var(--primary-blue);
  font-weight: 300;
  font-size: 2.5rem;
}

/* Value section specific text colors for white background */
.value-section .title-line {
  color: #1a1a1a;
}

.value-section .title-accent {
  color: #0066cc;
}

.value-description {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #4a4a4a;
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: center;
}

.value-cta {
  text-align: center;
  margin-top: 2.5rem;
  position: relative;
  z-index: 100;
}

.mechanic-info {
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 2rem 0 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mechanic-intro {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mechanic-question {
  font-size: 2.5rem;
  line-height: 1.4;
  color: #4a4a4a;
  font-weight: 400;
}

.mechanic-offer {
  font-size: 2.5rem;
  line-height: 1.4;
  color: #00a886;
  font-weight: 300;
}

.mechanic-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mechanic-features li {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #4a4a4a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.mechanic-features li::before {
  content: "✓";
  color: #00a886;
  font-weight: bold;
  font-size: 1.4rem;
}

.mechanic-cta {
  margin-top: 1rem;
  background: linear-gradient(135deg, #00a886 0%, #00c896 100%) !important;
}

.mechanic-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 168, 134, 0.3);
}

@media (max-width: 768px) {
  .mechanic-info {
    margin: 2rem auto 0;
  }

  .mechanic-question {
    font-size: 1.8rem;
  }

  .mechanic-offer {
    font-size: 1.8rem;
  }

  .mechanic-features li {
    font-size: 1.2rem;
  }

  .mechanic-features li::before {
    font-size: 1.2rem;
  }
}

.hero-cta {
  text-align: center;
  margin-top: 2.5rem;
  position: relative;
  z-index: 100;
}

.value-features {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 0;
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
  border-radius: 20px;
  position: relative;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-blue);
}

.feature-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.feature-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
}

/* Value section feature text colors */
.value-section .feature-content h3 {
  color: #1a1a1a;
}

.value-section .feature-content p {
  color: #5a5a5a;
}

.value-section .feature-icon {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.05));
  border: 1px solid rgba(0, 102, 204, 0.1);
}

.value-section .feature-icon i {
  color: #0066cc;
}

/* ===== SECTION 3: Platform Choice ===== */
.platform-section {
  padding: 8rem 5% 6rem;
  position: relative;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(255, 50, 50, 0.01) 50%, 
    transparent 100%
  );
}

.platform-container {
  max-width: 1000px;
  margin: 0 auto;
}

.platform-header {
  text-align: center;
  margin-bottom: 4rem;
}

.platform-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.platform-card {
  display: flex;
  align-items: center;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.platform-card:hover::before {
  transform: translateX(0);
}

.platform-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
}

.card-icon i {
  font-size: 2rem;
  color: var(--primary-blue);
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.card-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.card-content small {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-blue);
  opacity: 0.8;
  font-weight: 400;
  line-height: 1.4;
}

.card-arrow {
  margin-left: auto;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.platform-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.card-arrow i {
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 50, 50, 0.2), 
    rgba(255, 255, 255, 0.3), 
    rgba(255, 50, 50, 0.2), 
    transparent);
  margin: 5rem auto 0;
  max-width: 800px;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(180deg, 
    transparent, 
    rgba(255, 50, 50, 0.05), 
    transparent);
}

/* Old Hero Section - Hide */
.hero {
  display: none;
}

/* Platform Notice */
.platform-notice {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin: 2rem auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
}

.platform-notice i {
  color: var(--primary-blue);
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  position: relative;
  z-index: 100;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  z-index: 100;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-blue-dark), #006699);
  transition: left var(--transition-speed);
  z-index: -1;
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-button small {
  display: block;
  font-size: 0.8em;
  opacity: 0.8;
  font-weight: normal;
}

.cta-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Pricing card buttons should be full width */
.pricing-card .cta-button {
  width: 100%;
}

/* Themed Buttons */
.ios-themed {
  background: linear-gradient(135deg, var(--ios-blue), var(--ios-blue-dark));
}

.ios-themed::before {
  background: linear-gradient(135deg, var(--ios-blue-dark), #003d99);
}

.web-themed {
  background: linear-gradient(135deg, var(--web-teal), var(--web-teal-dark));
}

.web-themed::before {
  background: linear-gradient(135deg, var(--web-teal-dark), #008866);
}

/* Platform Choice Buttons */
.platform-choice .cta-button {
  flex-direction: column;
  padding: 1.5rem 3rem;
  min-width: 200px;
}

.platform-choice .cta-button span {
  font-size: 1.2rem;
}

/* ===== Comparison Section - Clean Design ===== */
.comparison-section {
  padding: 5.6rem 5% 100px;
  background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.01));
  position: relative;
}

.comparison-container {
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-header {
  text-align: center;
  margin-bottom: 4rem;
}

.comparison-header .platform-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.comparison-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.compare-item {
  position: relative;
  padding-top: 2rem;
}

.compare-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.compare-subtitle {
  font-size: 0.95rem;
  color: #8B7355;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.compare-header i {
  font-size: 2.5rem;
  color: var(--primary-blue);
}

.compare-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 0.5rem;
}

.compare-badge {
  margin-left: auto;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--primary-blue);
  font-weight: 500;
}

.compare-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.feature-group h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.feature-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.feature-group li {
  font-size: 1.1rem;
  color: var(--text-primary);
  padding-left: 1.5rem;
  position: relative;
}

.feature-group li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
}

.limitations li {
  color: var(--text-secondary);
  opacity: 0.7;
}

.limitations li::before {
  content: '×';
  color: rgba(255, 100, 100, 0.5);
}

.best-for {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.use-primarily {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
  opacity: 0.9;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  text-decoration: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary i {
  transition: transform 0.3s ease;
}

.btn-secondary:hover i {
  transform: translateX(5px);
}

/* Compare Learn More - styled like scroll-down */
.compare-learn-more {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 1.5rem;
}

.compare-learn-more span {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
}

.compare-learn-more span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.compare-learn-more:hover span::after {
  width: 100%;
}

.compare-learn-more:hover {
  color: var(--primary-blue);
}

.learn-more-arrow {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.compare-learn-more:hover .learn-more-arrow {
  border-color: var(--primary-blue);
}

.learn-more-arrow i {
  font-size: 0.9rem;
  animation: bounceDown 2s infinite;
}

/* Migration Section - Standalone */
.migration-section {
  padding: 3rem 5%;
  background: transparent;
}

.migration-section .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.migration-note {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.03), transparent);
  border-left: 3px solid var(--primary-blue);
  border-radius: 0 10px 10px 0;
}

.migration-note i {
  font-size: 2rem;
  color: var(--primary-blue);
  opacity: 0.7;
}

.note-content h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.note-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Old comparison grid - hide */
.comparison-grid {
  display: none;
}

.comparison-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 2rem;
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
}

.comparison-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.comparison-card.ios::before {
  background: var(--ios-blue);
}

.comparison-card.web::before {
  background: var(--web-teal);
}

.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-header i {
  font-size: 2rem;
}

.comparison-card.ios .card-header i {
  color: var(--ios-blue);
}

.comparison-card.web .card-header i {
  color: var(--web-teal);
}

.badge {
  background: var(--primary-blue);
  color: var(--primary-dark);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: auto;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list i.fa-check {
  color: #00ff88;
}

.feature-list i.fa-times {
  color: #ff4444;
}

.best-for {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  font-style: italic;
  color: var(--text-secondary);
}

/* Migration Notice */
.migration-notice {
  background: linear-gradient(135deg, var(--glass-bg), rgba(0, 212, 255, 0.05));
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.migration-notice h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Decision Helper */
.decision-helper {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.decision-flow {
  margin-top: 2rem;
}

.question {
  display: none;
}

.question.active {
  display: block;
}

.choice-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  color: var(--text-primary);
  padding: 1.5rem 2rem;
  margin: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-speed);
  font-size: 1.1rem;
}

.choice-btn:hover {
  border-color: var(--primary-blue);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

.result {
  display: none;
  animation: fadeIn 0.5s ease;
}

.result h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 2rem;
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-speed);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.3);
}

.feature-card:hover::after {
  opacity: 1;
}

/* Feature icon in cards - more subtle */
.feature-card .feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  transition: all var(--transition-speed);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
  font-weight: 600;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Web App Feature Card Styling - Keep darker background */
.tab-content .feature-card {
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  border-radius: 12px !important;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tab-content .feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.1) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.6) !important;
}

.tab-content .feature-icon i {
  color: rgba(0, 212, 255, 0.7);  /* Primary blue with transparency */
}

.tab-content .feature-card:hover .feature-icon {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.2);
}

.tab-content .feature-card:hover .feature-icon i {
  color: rgba(0, 212, 255, 0.9);
}

/* Ensure consistent typography in Web App tiles */
.tab-content .feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.tab-content .feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  opacity: 0.9;
}

/* Section Intro */
.section-intro {
  font-size: 1.2rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* ===== About Section - Redesigned with Citation ===== */
.about-section {
  padding: 5rem 5%;
  padding-bottom: 0;
  position: relative;
  background: #f5f5f5 !important;
  z-index: 10;
  width: 100%;
  margin: 0;
  isolation: isolate;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0 0 0;
  background: #f5f5f5;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 50, 50, 0.7);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.about-header .section-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1a1a1a, #3a3a3a) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 0;
}

/* Founder Quote Styling */
.founder-quote {
  max-width: 900px;
  margin: 0 auto 5rem;
  position: relative;
}

/* Quote block with vertical line */
.quote-block {
  position: relative;
  padding-left: 3rem;
  margin: 3rem 0;
  border-left: 4px solid rgba(255, 50, 50, 0.4);
}

/* Intro text - not italicized */
.quote-intro {
  font-size: 1.15rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
  font-style: normal;
  font-weight: 400;
  opacity: 0.9;
}

.quote-text {
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding: 0;
  position: relative;
  font-weight: 300;
  opacity: 0.95;
}

/* About section text colors for light grey background */
.about-section .quote-intro {
  color: #3a3a3a !important;
}

.about-section .quote-text {
  color: #1a1a1a !important;
}

.about-section .section-label {
  color: #e74c3c !important;
}

.about-section .stat-number {
  background: linear-gradient(135deg, #e74c3c, #ff6b6b) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.about-section .stat-label {
  color: #3a3a3a !important;
}

.about-section .quote-block cite {
  color: #3a3a3a !important;
}

.about-section .quote-block {
  border-left-color: rgba(231, 76, 60, 0.5) !important;
}

/* Quote emphasis removed - merged into single quote */

.quote-block footer {
  text-align: right;
  margin-top: 1.5rem;
  background: transparent !important;
}

.quote-block cite {
  display: inline-block;
  font-style: normal;
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
  opacity: 0.8;
  background: transparent !important;
  padding: 0;
  border: none;
  box-shadow: none;
}

/* Experience Stats with Background */
.experience-stats {
  position: relative;
  margin: 4rem 0 0 0;
  padding: 3rem 0 5rem 0;
}

.stats-background {
  position: absolute;
  top: 0;
  left: -10vw;
  right: -10vw;
  height: 100%;
  overflow: hidden;
  opacity: 0.5;
}

.stats-pattern {
  width: 100%;
  height: 100%;
}

.stats-grid {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  z-index: 2;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, 
    transparent, 
    rgba(255, 50, 50, 0.3), 
    transparent
  );
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(255, 50, 50, 0.8), rgba(255, 100, 100, 0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}

/* Section Transitions */
.section-transition-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  overflow: hidden;
  z-index: 1;
}

.section-transition-top svg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100px;
  display: block;
}

.section-transition-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 100px;
  overflow: hidden;
  z-index: 1;
}

.section-transition-bottom svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  display: block;
}

/* Mobile Responsive - About Section */
@media (max-width: 768px) {
  .about-header .section-title {
    font-size: 2.5rem;
  }
  
  .quote-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .quote-block {
    padding-left: 2rem;
    margin: 2rem 0;
  }
  
  .quote-text {
    font-size: 1.1rem;
    padding: 0;
  }
  
  .stats-grid {
    flex-direction: column;
    gap: 2rem;
  }
  
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

/* Web App Hero Section with Slider */
.web-app-hero {
  text-align: center;
  padding: 3rem 0 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-statement {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.hero-tagline {
  font-size: 1.5rem;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 4rem;
  letter-spacing: -0.3px;
}

/* Feature Slider Enhanced - Clean & Minimal */
.feature-slider-enhanced {
  position: relative;
  padding: 4rem 2rem;
  margin: 4rem 0;
  background: transparent;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Feature Slider - Open Design */
.feature-slider {
  position: relative;
  padding: 4rem 2rem;
  margin: 3rem auto;
  max-width: 1000px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-slider-enhanced .slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-slider-enhanced .slider-item {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 1.5rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.feature-slider-enhanced .slider-item.active {
  opacity: 1;
  transform: translateY(0);
}

.feature-slider-enhanced .slider-icon {
  grid-row: 1 / 3;
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.feature-slider-enhanced .slider-icon i {
  font-size: 4rem;
  color: #00a886;
}

.feature-slider-enhanced .slider-item h4 {
  grid-row: 1;
  grid-column: 2;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  text-align: left;
  padding-top: 0.5rem;
}

.feature-slider-enhanced .slider-item p {
  grid-row: 2;
  grid-column: 2;
  font-size: 1.05rem;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0.5rem 0 0 0;
  text-align: left;
}

.slider-item {
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.slider-item.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.slider-item.exit {
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
}

.slider-item i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary-blue), #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
}

.slider-item p {
  font-size: 1.8rem;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.4;
  max-width: 800px;
  margin: 0;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Enhanced Slider Dots - Minimal */
.feature-slider-enhanced .slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.feature-slider-enhanced .slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-slider-enhanced .slider-dots .dot.active {
  background: #00a886;
  transform: scale(1.2);
}

.feature-slider-enhanced .slider-dots .dot:hover {
  background: #7a7a7a;
}

/* Slider Dots - Minimal Design */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.slider-dots .dot {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.slider-dots .dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-blue);
  transition: left 0.4s ease;
}

.slider-dots .dot.active::before {
  left: 0;
}

.slider-dots .dot.active {
  transform: scaleX(1.2);
}

.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive - New Sections */
@media (max-width: 768px) {
  /* Hero Section Mobile */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
  }
  
  .hero-main {
    font-size: 3rem;
  }
  
  .hero-accent {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-right {
    display: none; /* Hide mockups on mobile */
  }
  
  /* Value Section Mobile */
  .value-features {
    gap: 3rem;
  }
  
  .feature-row {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 1rem;
  }
  
  .feature-icon {
    margin: 0 auto 1rem;
  }
  
  .feature-content h3 {
    font-size: 1.5rem;
  }

  .feature-content p {
    font-size: 1.1rem;
  }

  .value-description {
    font-size: 1.2rem;
    margin: 2rem auto 0;
  }

  /* Platform Section Mobile */
  .platform-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .title-accent {
    font-size: 1.8rem;
  }
  
  /* Slider Mobile */
  .hero-statement {
    font-size: 1.6rem;
    padding: 0 1rem;
  }
  
  .hero-tagline {
    font-size: 1.2rem;
  }
  
  .feature-slider {
    padding: 3rem 1.5rem;
    min-height: 180px;
  }
  
  .slider-item i {
    font-size: 2.5rem;
  }
  
  .slider-item p {
    font-size: 1.3rem;
    font-weight: 600;
  }
  
  .slider-container {
    height: 140px;
  }
  
  .slider-dots .dot {
    width: 30px;
    height: 3px;
  }

  /* Enhanced Slider Mobile */
  .feature-slider-enhanced {
    padding: 3rem 1.5rem;
    min-height: 180px;
  }

  .feature-slider-enhanced .slider-container {
    height: 160px;
  }

  .feature-slider-enhanced .slider-item {
    gap: 0 1rem;
    padding: 0 1rem;
  }

  .feature-slider-enhanced .slider-icon i {
    font-size: 2.5rem;
  }

  .feature-slider-enhanced .slider-item h4 {
    font-size: 1.3rem;
    padding-top: 0.25rem;
  }

  .feature-slider-enhanced .slider-item p {
    font-size: 1rem;
  }
}

/* Value Proposition Section */
.value-prop {
  padding: 5rem 5%;
}

.value-prop h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--web-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: all var(--transition-speed);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.3);
}

.value-item h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.value-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats span {
  padding: 0.5rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--primary-blue);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--primary-blue);
  font-weight: 500;
}

/* About Section */
#about {
  text-align: center;
  background: linear-gradient(180deg, 
    rgba(0, 0, 0, 0.3) 0%, 
    rgba(20, 10, 10, 0.5) 50%, 
    rgba(0, 0, 0, 0.3) 100%
  );
}

#about .content-wrapper p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

#about .content-wrapper p:first-child {
  font-size: 1.3rem;
  color: var(--primary-blue);
  font-weight: 500;
  margin-bottom: 2rem;
}

/* Platform Choice Section */
.platform-choice {
  padding: 4rem 0;
  text-align: center;
}

.platform-choice h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.platform-choice .platform-notice {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--primary-blue);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin: 2rem auto;
  max-width: 600px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.platform-choice .platform-notice i {
  color: var(--primary-blue);
  font-size: 1.2rem;
}

/* Session Timeline - Completely New Flow Design */
.session-timeline {
  margin: 6rem 0 8rem !important;
  padding: 3rem 0 !important;
  position: relative !important;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(0, 212, 255, 0.03) 50%, 
    transparent 100%
  ) !important;
}

.session-timeline h3 {
  text-align: center !important;
  margin-bottom: 6rem !important;
  font-size: 2rem !important;
  background: linear-gradient(135deg, var(--primary-blue), var(--web-teal)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 600 !important;
}

.timeline-container {
  position: relative !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 3rem !important;
}

/* Connecting line - more visible */
.timeline-line {
  position: absolute !important;
  top: 35px !important;
  left: 5% !important;
  right: 5% !important;
  height: 4px !important;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(0, 212, 255, 0.3) 15%,
    rgba(0, 212, 170, 0.5) 50%,
    rgba(0, 212, 255, 0.3) 85%,
    transparent 100%
  ) !important;
  z-index: 0 !important;
  border-radius: 2px !important;
}

/* Timeline steps with strong visibility */
.timeline-step {
  position: relative !important;
  margin-bottom: 5rem !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 4rem !important;
  opacity: 1 !important;
  animation: none !important;
}

.timeline-step[data-step="1"] {
  padding-left: 5% !important;
  padding-right: 25% !important;
}

.timeline-step[data-step="2"] {
  flex-direction: row-reverse !important;
  padding-left: 25% !important;
  padding-right: 5% !important;
}

.timeline-step[data-step="3"] {
  padding-left: 5% !important;
  padding-right: 25% !important;
}

/* Step indicator - larger and more visible */
.step-indicator {
  position: relative !important;
  flex-shrink: 0 !important;
}

.timeline-step .step-number {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 70px !important;
  height: 70px !important;
  background: linear-gradient(135deg, 
    rgba(0, 212, 255, 0.15),
    rgba(0, 212, 170, 0.15)
  ) !important;
  border: 3px solid rgba(0, 212, 255, 0.5) !important;
  border-radius: 50% !important;
  font-weight: bold !important;
  font-size: 1.8rem !important;
  color: #00D4AA !important;
  position: relative !important;
  z-index: 3 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.2) !important;
}

.timeline-step:hover .step-number {
  background: linear-gradient(135deg, 
    rgba(0, 212, 255, 0.3),
    rgba(0, 212, 170, 0.3)
  ) !important;
  border-color: #00D4AA !important;
  transform: scale(1.15) !important;
  box-shadow: 0 0 40px rgba(0, 212, 170, 0.4) !important;
}

/* Pulsing effect - more visible */
.step-pulse {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 90px !important;
  height: 90px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, 
    rgba(0, 212, 255, 0.3),
    transparent 70%
  ) !important;
  animation: pulseBig 2.5s infinite !important;
  z-index: 1 !important;
}

/* Step content - clearer typography */
.step-content {
  flex: 1 !important;
  padding-top: 12px !important;
}

.step-content h4 {
  margin-bottom: 1.2rem !important;
  color: #00d4ff !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.1rem !important;
  line-height: 1.9 !important;
  opacity: 1 !important;
}

/* Alternate layout for step 2 */
.timeline-step[data-step="2"] .step-content {
  text-align: right !important;
}

/* New animations */
@keyframes pulseBig {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .timeline-line {
    display: none !important;
  }
  
  .timeline-step,
  .timeline-step[data-step="1"],
  .timeline-step[data-step="2"],
  .timeline-step[data-step="3"] {
    flex-direction: column !important;
    text-align: center !important;
    gap: 2rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .timeline-step[data-step="2"] .step-content {
    text-align: center !important;
  }
  
  .step-indicator {
    margin: 0 auto !important;
  }
  
  .session-timeline {
    margin: 4rem 0 6rem !important;
  }
}

/* Features Title */
.features-title {
  text-align: center;
  font-size: 1.8rem;
  margin: 4rem 0 1.5rem 0;
  font-weight: 600;
  color: var(--text-primary);
}

/* Feature Tabs */
.feature-tabs {
  display: flex;
  justify-content: center;
  margin: 0;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--primary-blue);
  gap: 0;
  padding: 0 2rem;
  position: relative;
}

.tab-button {
  background: transparent;
  border: 1px solid transparent;
  border-bottom: none;
  color: var(--text-secondary);
  padding: 1rem 1.5rem;
  margin-bottom: -1px;
  cursor: pointer;
  transition: all var(--transition-speed);
  font-size: 1.05rem;
  font-weight: 500;
  display: inline-block;
  border-radius: 8px 8px 0 0;
  position: relative;
  margin-right: 2px;
  white-space: nowrap;
}

.tab-button:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.tab-button.active {
  background: rgba(0, 212, 255, 0.08);
  color: var(--primary-blue);
  border: 1px solid transparent;
  border-bottom: none;
  font-weight: 600;
  transform: translateY(0);
  font-size: 1.1rem;
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-blue);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

/* Tab Content */
.tab-content {
  margin-top: 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 0 0 15px 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane.active {
  display: block;
}

/* Analytics Preview */
.analytics-preview {
  text-align: center;
}

.analytics-feature {
  margin-bottom: 3rem;
}

.chart-preview {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 600px;
}

.chart-preview img {
  width: 100%;
  height: auto;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.analytics-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-speed);
}

.analytics-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-blue);
}

.analytics-card i {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tool-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 2rem;
  transition: all var(--transition-speed);
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.tool-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tool-header i {
  font-size: 2rem;
  color: var(--web-teal);
}

/* Collaboration Content */
.sharing-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.benefit-card i {
  font-size: 2rem;
  color: var(--web-teal);
  margin-bottom: 1rem;
}

.team-preview {
  margin-top: 3rem;
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 2rem;
}

.coming-soon-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--primary-blue);
  color: var(--primary-dark);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Webapp CTA */
.webapp-cta {
  margin-top: 4rem;
  padding: 3rem 2rem 4rem;
  text-align: center;
  background: transparent;
  border: none;
}

.webapp-cta h3 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
}

.webapp-cta .cta-buttons {
  margin-bottom: 2rem;
}

/* Coming Soon Section */
#pro-features {
  background: linear-gradient(180deg, 
    rgba(0, 0, 0, 0.3) 0%, 
    rgba(255, 50, 50, 0.02) 20%,
    rgba(50, 10, 10, 0.25) 50%, 
    rgba(255, 50, 50, 0.02) 80%,
    rgba(0, 0, 0, 0.3) 100%
  );
  padding-top: 8rem;
  margin-top: -2rem;
}

.coming-soon-section {
  text-align: center;
  padding: 2rem;
}

.coming-soon-section h3 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #1a1a1a;
  font-weight: 700;
}

.pro-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pro-feature {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all var(--transition-speed);
  opacity: 0.7;
}

.pro-feature:hover {
  transform: translateY(-5px);
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary-blue);
}

.pro-feature h4 {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.pro-feature p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
  margin-top: 3rem;
  padding-top: 1rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  position: relative;
  transition: all var(--transition-speed);
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.popular {
  transform: scale(1.05);
  border: 2px solid var(--primary-blue);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-card.inactive {
  opacity: 0.7;
}

.pricing-card.coming-soon {
  opacity: 0.85;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--primary-blue);
  transform: scale(1);
}

.pricing-card.featured:hover {
  transform: translateY(-5px);
}

.pricing-card .badge,
.pricing-card .coming-soon-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}

.pricing-card .badge {
  background: var(--primary-blue);
  border: 1px solid var(--primary-blue);
}

.pricing-card .coming-soon-badge {
  background: transparent;
  color: #ff9a00;
  border: none;
  white-space: nowrap;
  position: static;
  transform: none;
  padding: 0;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 0.5rem;
  display: block;
}

.pricing-header {
  padding-top: 0.5rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

.pricing-header h3,
.pricing-header h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  margin-top: 0;
  font-weight: 600;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.price span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.price-yearly {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.savings {
  color: #00ff88;
  font-weight: bold;
}

.price-desc {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  line-height: 1.4;
  min-height: 3em;
}

.pricing-card .features {
  list-style: none;
  margin: 1.25rem 0;
  text-align: left;
  flex: 1;
  padding: 0;
}

.pricing-card .features li {
  padding: 0.35rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.3;
}

.pricing-card .features i {
  color: #00ff88;
}

.pricing-card.inactive .features i {
  color: var(--text-secondary);
}

/* Mechanic Plan styling */
.pricing-card.mechanic-plan {
  background: rgba(0, 168, 134, 0.04) !important;
  border: 1px solid rgba(0, 168, 134, 0.2) !important;
}

.mechanic-info-btn {
  display: inline-block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #00a886;
  text-decoration: none;
  border: 1px solid #00a886;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  transition: all var(--transition-speed);
  margin-top: auto;
}

.mechanic-info-btn:hover {
  background: #00a886;
  color: white;
  transform: translateY(-2px);
}

/* Pricing Comparison Link */
.pricing-comparison-link {
  display: inline-block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #0066cc;
  text-decoration: none;
  text-align: center;
  border-radius: 6px;
  transition: all var(--transition-speed);
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: auto;
  border: 1px solid rgba(0, 102, 204, 0.2);
}

.pricing-comparison-link:hover {
  background: rgba(0, 102, 204, 0.05);
  border-color: #0066cc;
  transform: translateY(-2px);
}

/* Pricing CTA Buttons at Bottom */
.pricing-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.pricing-cta-buttons .cta-button {
  min-width: 220px;
}

/* MyRacing Mobile Section */
.mobile-section {
  background: #ffffff;
  padding: 6rem 5% 5rem;
  position: relative;
}

.section-divider {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  width: 100%;
}

.mobile-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mobile-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00a886;
}

.mobile-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-title-icon {
  height: 50px;
  width: auto;
  display: inline-block;
}

.mobile-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  color: #4a4a4a;
  margin: 0;
  line-height: 1.3;
}

.mobile-description {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #5a5a5a;
  margin: 0;
}

.mobile-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.store-badge-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.store-badge-link:hover {
  transform: translateY(-3px);
}

.store-badge {
  height: 50px;
  width: auto;
  display: block;
}

.mobile-beta-text {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0, 102, 204, 0.05);
  border-left: 4px solid #0066cc;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: #2a2a2a;
}

.mobile-beta-text strong {
  color: #0066cc;
  font-size: 1.05rem;
}

.mobile-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-mockup {
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.mobile-image {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .mobile-section {
    padding: 4rem 5% 3rem;
  }

  .section-divider {
    margin-bottom: 3rem;
  }

  .mobile-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mobile-left {
    text-align: center;
  }

  .mobile-title {
    font-size: 2.5rem;
  }

  .mobile-title-icon {
    height: 40px;
  }

  .mobile-subtitle {
    font-size: 1.3rem;
  }

  .mobile-description {
    font-size: 1.1rem;
  }

  .mobile-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .store-badge {
    height: 45px;
  }

  .mobile-beta-text {
    margin-top: 1.5rem;
    padding: 1.2rem;
    font-size: 0.95rem;
  }

  .mobile-beta-text strong {
    font-size: 1rem;
  }

  .mobile-image {
    max-height: 450px;
  }
}

/* Download Section */
.download-section {
  background: transparent;
  border: none;
  padding: 3rem 2rem;
  margin-top: 4rem;
  text-align: center;
}

.download-section h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--ios-blue), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
  opacity: 0.9;
}

/* Screenshots Galleries - Modern Design */
.screenshots-section {
  margin: 1rem 0 5rem 0;
  padding: 2rem 0;
  position: relative;
}

/* Key Features Intro Section */
.key-features-intro {
  background: #ffffff;
  padding: 4rem 5% 3rem;
  margin: 0;
  text-align: center;
}

.intro-container {
  max-width: 900px;
  margin: 0 auto;
}

.intro-hook {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.intro-eyebrow {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00a886;
  margin-bottom: 1rem;
}

.intro-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.intro-description {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin: 0;
}

@media (max-width: 768px) {
  .intro-hook {
    font-size: 1.5rem;
  }

  .intro-title {
    font-size: 2rem;
  }

  .intro-description {
    font-size: 1.2rem;
  }

  .key-features-intro {
    padding: 3rem 5% 2rem;
  }
}

/* AI Racing Coach Section */
.ai-coach-section {
  background: #fafafa;
  padding: 5rem 5%;
  margin: 0;
  text-align: center;
  position: relative;
}

.ai-coach-content {
  max-width: 1000px;
  margin: 0 auto;
}

.ai-coach-ornament {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 168, 134, 0.3) 50%, transparent 100%);
  margin: 0 auto;
  max-width: 200px;
  position: relative;
}

.ai-coach-ornament.top {
  margin-bottom: 2rem;
}

.ai-coach-ornament.top::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #00a886;
  border-radius: 50%;
}

.ai-coach-ornament.middle {
  margin: 2.5rem auto;
  max-width: 100px;
}

.ai-coach-eyebrow {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0066cc;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.ai-coach-title {
  font-size: 4rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 3px;
  margin: 0;
  line-height: 1.2;
}

.ai-coach-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #00a886;
  margin: 1.5rem 0 0;
  line-height: 1.4;
}

.ai-coach-image {
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
}

.ai-coach-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.ai-coach-heading {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a2a2a;
  margin: 0 0 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ai-coach-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}

/* Dialogue bubble watermarks - messenger style with tails */
.ai-coach-features::before {
  content: '';
  position: absolute;
  left: -60px;
  top: 0;
  width: calc(50% + 2.5rem);
  height: calc(50% + 0.75rem);
  background: rgba(0, 168, 134, 0.08);
  border-radius: 20px;
  z-index: 0;
  pointer-events: none;
}

/* Left tail pointing outward to the left */
.ai-coach-features::before {
  clip-path: polygon(
    30px 0, 100% 0, 100% 100%, 30px 100%,
    30px calc(100% - 20px),
    0 calc(100% - 10px),
    30px calc(100% - 40px),
    30px 0
  );
}

.ai-coach-features::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: 0;
  width: calc(50% + 2.5rem);
  height: calc(50% + 0.75rem);
  background: rgba(0, 168, 134, 0.08);
  border-radius: 20px;
  z-index: 0;
  pointer-events: none;
}

/* Right tail pointing outward to the right */
.ai-coach-features::after {
  clip-path: polygon(
    0 0, calc(100% - 30px) 0,
    calc(100% - 30px) calc(100% - 40px),
    100% calc(100% - 10px),
    calc(100% - 30px) calc(100% - 20px),
    calc(100% - 30px) 100%, 0 100%
  );
}

.ai-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.ai-feature-item i {
  color: #00a886;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.ai-feature-text p {
  color: #2a2a2a;
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.ai-coach-cta {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .ai-coach-section {
    padding: 4rem 5%;
  }

  .ai-coach-eyebrow {
    font-size: 1.2rem;
    letter-spacing: 1.5px;
  }

  .ai-coach-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .ai-coach-subtitle {
    font-size: 1.3rem;
  }

  .ai-coach-heading {
    font-size: 1.2rem;
  }

  .ai-coach-features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Hide dialogue bubbles on mobile */
  .ai-coach-features::before,
  .ai-coach-features::after {
    display: none;
  }

  .ai-feature-text p {
    font-size: 1.05rem;
  }
}

/* Events Section */
.events-section {
  background: #ffffff;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 10;
}

.events-content {
  background: #ffffff;
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.events-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 2px;
}

.events-header-image {
  width: 100%;
  max-width: 900px;
  background: #ffffff;
  margin: 0 auto 1.5rem;
  padding: 0;
}

.events-header-image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

.events-content .clean-features-list {
  max-width: 1000px;
  margin: 0 auto;
}

.events-section .feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.events-section .feature-item i {
  color: #00a886;
  font-size: 1.5rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.events-section .feature-text h4 {
  color: #1a1a1a;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}

.events-section .feature-text p {
  color: #4a4a4a;
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .events-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .events-content {
    padding: 3rem 5%;
  }

  .events-section .feature-text h4 {
    font-size: 1.5rem;
  }

  .events-section .feature-text p {
    font-size: 1.1rem;
  }
}

/* Events Divider */
.events-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
  margin: 4rem auto 0;
  max-width: 1000px;
}

/* Session Management Highlight - Subtle Differentiation */
.session-management-highlight {
  margin: 4rem 0;
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, rgba(0, 168, 134, 0.02) 0%, rgba(0, 212, 170, 0.02) 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

/* WebApp Screenshots - Match intro section width */
.webapp-section .screenshots-section {
  background: #ffffff;
  padding: 2rem 5% 3rem;
  margin: 0;
}

.webapp-section .screenshots-section h3 {
  max-width: 1400px;
  margin: 0 auto 1.5rem;
}

.screenshots-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--web-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ios-screenshots .screenshots-title {
  background: linear-gradient(135deg, var(--ios-blue), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.screenshots-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

.screenshots-slider {
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, 
    rgba(0, 212, 255, 0.02),
    rgba(0, 212, 170, 0.02)
  );
  padding: 2rem;
  position: relative;
}

.screenshots-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
}

.screenshot-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: visible;
}

.screenshot-item.phone {
  width: 280px;
}

.screenshot-item.desktop {
  width: 550px;
}

.screenshot-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 30px 60px rgba(0, 212, 255, 0.2),
    0 0 40px rgba(0, 212, 170, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
  z-index: 10;
}

.screenshot-item img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
  border-radius: 15px 15px 0 0;
  background: rgba(0, 0, 0, 0.5);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.screenshot-caption {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0 0 15px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.screenshot-caption h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
  text-align: center;
}

.screenshot-caption p {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.4;
  margin-top: 0.5rem;
  text-align: center;
}

/* Navigation Buttons */
.screenshots-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 1rem;
}

.screenshot-nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.screenshot-nav-btn:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--primary-blue);
  transform: scale(1.1);
}

.screenshot-nav-btn i {
  font-size: 1.2rem;
}

/* Empty State */
.screenshots-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
}

.screenshots-empty i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* Hero Section Mobile */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
  }
  
  .hero-right {
    height: auto;
    margin-top: 2rem;
  }
  
  .mockup-image {
    max-width: 100%;
    transform: none;
  }
  
  .mockup-image:hover {
    transform: scale(1.02);
  }
  
  .device-mockups {
    padding: 1rem 0;
  }
  
  .hero-main,
  .hero-accent {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .screenshots-container {
    padding: 0 1rem;
  }
  
  .screenshots-slider {
    padding: 1rem;
  }
  
  .screenshot-item.phone {
    width: 200px;
  }

  .screenshot-item.desktop {
    width: 380px;
  }
  
  .screenshots-track {
    gap: 1rem;
  }
  
  .screenshot-nav-btn {
    width: 35px;
    height: 35px;
  }
}

/* Screenshot Modal/Lightbox */
.screenshot-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 9999;
  padding: 2rem;
  cursor: zoom-out;
  animation: fadeIn 0.3s ease;
}

.screenshot-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshot-modal-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  animation: zoomIn 0.3s ease;
}

.screenshot-modal img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.screenshot-modal-caption {
  text-align: center;
  color: white;
  margin-top: 1rem;
  font-size: 1.2rem;
  opacity: 0.9;
}

.screenshot-modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

.screenshot-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.screenshot-modal-close::before,
.screenshot-modal-close::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: white;
}

.screenshot-modal-close::before {
  transform: rotate(45deg);
}

.screenshot-modal-close::after {
  transform: rotate(-45deg);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { 
    opacity: 0;
    transform: scale(0.8);
  }
  to { 
    opacity: 1;
    transform: scale(1);
  }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition-speed);
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-caption {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
}

/* Video Gallery Section */
.videos-section {
  padding: 2rem 0;
}

.videos-container {
  position: relative;
  margin: 0 auto;
}

.videos-slider {
  overflow: hidden;
  border-radius: 10px;
  background: var(--glass-bg);
  padding: 1rem;
}

.videos-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.3s ease;
}

.video-item {
  flex: 0 0 320px;
  background: rgba(30, 30, 40, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-speed);
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.video-item video {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: #000;
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  opacity: 0.8;
  transition: all var(--transition-speed);
  pointer-events: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-item:hover .video-play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
}

.video-caption h4 {
  margin: 0;
  font-size: 1rem;
  color: white;
}

.videos-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
  transform: translateY(-50%);
}

.video-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all var(--transition-speed);
  backdrop-filter: blur(10px);
}

.video-nav-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

.videos-empty {
  text-align: center;
  padding: 3rem;
  color: var(--text-secondary);
}

.videos-empty i {
  font-size: 3rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 9999;
  padding: 2rem;
  cursor: pointer;
  animation: fadeIn 0.3s ease;
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  animation: zoomIn 0.3s ease;
  cursor: default;
}

.video-modal video {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-caption {
  text-align: center;
  color: white;
  margin-top: 1rem;
  font-size: 1.2rem;
  opacity: 0.9;
}

.video-modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.video-modal-close::before,
.video-modal-close::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: white;
}

.video-modal-close::before {
  transform: rotate(45deg);
}

.video-modal-close::after {
  transform: rotate(-45deg);
}

/* News Grid */
/* News Slider Container */
.news-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.news-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
}

.news-slider::-webkit-scrollbar {
  display: none;
}

.news-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 2rem;
  min-width: 350px;
  max-width: 350px;
  flex-shrink: 0;
  transition: all var(--transition-speed);
  display: flex;
  flex-direction: column;
}

.news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.news-date {
  color: var(--primary-blue);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.news-item h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.news-content {
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.news-content.collapsed {
  max-height: 150px;
  overflow: hidden;
  position: relative;
}

.news-content.collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--glass-bg));
}

.news-read-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-blue);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-speed);
  background: none;
  border: none;
  padding: 0;
}

.news-read-more:hover {
  color: var(--primary-green);
}

.news-loader {
  text-align: center;
  padding: 3rem;
  color: var(--text-secondary);
  min-width: 350px;
}

/* News Navigation Buttons */
.news-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed);
  z-index: 10;
  color: var(--primary-blue);
}

.news-nav-btn:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.news-prev {
  left: 0;
}

.news-next {
  right: 0;
}

@media (max-width: 768px) {
  .news-slider-container {
    padding: 0 50px;
  }

  .news-item {
    min-width: 300px;
    max-width: 300px;
    padding: 1.5rem;
  }

  .news-nav-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .news-slider-container {
    padding: 0 45px;
  }

  .news-item {
    min-width: 280px;
    max-width: 280px;
  }

  .news-nav-btn {
    width: 35px;
    height: 35px;
  }
}

/* FAQ Section */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem;
  text-align: left;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-speed);
}

.accordion-header:hover {
  background: rgba(0, 212, 255, 0.05);
}

.accordion-header i {
  transition: transform var(--transition-speed);
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed);
  padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-speed);
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-blue);
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.contact-card h3 {
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.contact-card a:hover {
  color: var(--primary-blue);
}

/* Footer */
footer {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 3rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  padding: 0.3rem 0;
}

.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.footer-column a:hover {
  color: var(--primary-blue);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  flex: 1;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  color: var(--text-primary);
}

.newsletter-form button {
  background: var(--primary-blue);
  color: var(--primary-dark);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all var(--transition-speed);
}

.newsletter-form button:hover {
  background: var(--primary-blue-dark);
}

.language-selector {
  margin-top: 1rem;
}

.language-selector select {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 0.5rem;
  border-radius: 5px;
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.social-links a {
  font-size: 1.5rem;
  color: var(--text-secondary);
  transition: all var(--transition-speed);
}

.social-links a:hover {
  color: var(--primary-blue);
  transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary-blue);
  color: var(--primary-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal on Scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Loading States */
.skeleton {
  background: linear-gradient(90deg, var(--glass-bg) 25%, rgba(255, 255, 255, 0.1) 50%, var(--glass-bg) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  nav ul {
    gap: 1.5rem;
  }
  
  .hero-content h2 {
    font-size: 3rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Responsive breakpoints for pricing grid */
@media (max-width: 1400px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 1.25rem;
  }

  .pricing-card {
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  .menu-toggle {
    display: block;
  }

  .header-logo {
    height: 45px !important;
    max-height: 45px !important;
    width: 45px !important;
    max-width: 45px !important;
  }

  .header-brand {
    gap: 0.75rem;
  }

  header h1 {
    font-size: 1.6rem;
  }

  /* Pricing Grid Mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  nav ul {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform var(--transition-speed);
  }

  nav ul.active {
    transform: translateX(0);
  }

  .login-nav-item {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
  }

  .login-btn {
    display: block;
    text-align: center;
    width: 100%;
  }


  /* Hero Adjustments */
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .platform-choice .cta-button {
    min-width: 150px;
    padding: 1rem 2rem;
  }
  
  /* Section Adjustments */
  section {
    padding: 3rem 5%;
  }
  
  section h2 {
    font-size: 2rem;
  }
  
  /* Comparison Cards */
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  /* Feature Tabs */
  .feature-tabs {
    padding: 0 0.5rem;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  
  .tab-button {
    padding: 0.7rem 0.8rem;
    font-size: 0.85rem;
    white-space: nowrap;
    margin-right: 1px;
  }
  
  .tab-content {
    border-radius: 0 0 10px 10px;
    padding: 1.5rem 1rem;
  }
  
  /* Pricing Grid */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  /* Very Small Screens */
  .header-logo {
    height: 38px !important;
    max-height: 38px !important;
    width: 38px !important;
    max-width: 38px !important;
  }

  .header-brand {
    gap: 0.5rem;
  }

  header h1 {
    font-size: 1.4rem;
  }

  .hero-content h2 {
    font-size: 2rem;
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .features-grid,
  .tools-grid,
  .analytics-grid {
    grid-template-columns: 1fr;
  }
  
  .decision-flow {
    flex-direction: column;
  }
  
  .choice-btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}

/* Cookie Consent Banner */
.cookie-consent {
  display: none;
  position: fixed !important;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(10, 10, 20, 0.98) !important;
  backdrop-filter: blur(20px);
  border: 2px solid var(--primary-blue);
  border-radius: 15px;
  padding: 1.5rem;
  max-width: 600px;
  width: 90%;
  z-index: 999999 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0, 212, 255, 0.2);
  animation: slideUp 0.5s ease;
}

.cookie-consent-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-consent-text h3 {
  margin: 0 0 0.5rem 0;
  color: var(--primary-blue);
  font-size: 1.2rem;
}

.cookie-consent-text p {
  margin: 0 0 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cookie-consent-text a {
  color: var(--primary-blue);
  text-decoration: underline;
  font-size: 0.85rem;
}

.cookie-consent-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-speed);
  font-size: 0.9rem;
}

.cookie-btn.accept {
  background: var(--primary-blue);
  color: white;
}

.cookie-btn.accept:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-2px);
}

.cookie-btn.decline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--glass-border);
}

.cookie-btn.decline:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cookie-btn.settings {
  background: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
}

.cookie-btn.settings:hover {
  background: rgba(0, 212, 255, 0.1);
}

/* Removed cookie settings modal - simplified to accept/decline only */

@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

/* Mobile responsive for cookie banner */
@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

/* Print Styles */
@media print {
  header,
  .menu-toggle,
  .back-to-top,
  #bg-video {
    display: none;
  }
  
  main {
    margin-top: 0;
  }
  
  section {
    page-break-inside: avoid;
  }
}
/* ========================================
   PLANS COMPARISON TABLE
   ======================================== */

.plans-comparison-section {
  background: #f5f5f5;
  padding: 3rem 5% 5rem;
  overflow: visible;
}

.plans-comparison-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Sticky Header */
.plans-sticky-header {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 80px !important;
  background: #f5f5f5 !important;
  padding: 0.5rem 0 0.5rem 0 !important;
  z-index: 500 !important;
  margin-bottom: 0 !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

/* Header Row with Plan Names */
.plans-header-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px 12px 0 0;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-feature {
  /* Empty column for feature names */
}

.header-plan {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 1px;
}

.header-plan i {
  margin-right: 0.5rem;
  font-size: 1.3rem;
  color: #0066cc;
}

/* Pricing Row */
.plans-pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  background: #ffffff;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-top: 1px solid #e5e5e5;
}

.pricing-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.pricing-value {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #4a4a4a;
  line-height: 1.6;
}

/* Savings Note Row */
.plans-savings-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  background: #ffffff;
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 0;
}

.savings-cell {
  text-align: center;
  font-size: 0.85rem;
  color: #00a886;
  font-weight: 500;
}

/* Feature Categories */
.feature-category {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  clear: both;
}

.feature-category:first-of-type {
  margin-top: 12rem !important;
}

.category-toggle {
  width: 100%;
  background: rgba(0, 102, 204, 0.08) !important;
  border: none;
  padding: 0.6rem 1.5rem !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 40px !important;
}

.category-toggle:hover {
  background: rgba(0, 102, 204, 0.12) !important;
}

.category-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0066cc;
  letter-spacing: 0.5px;
  text-align: left;
  line-height: 1.4;
  display: block;
}

.category-toggle i {
  color: #0066cc;
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.category-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.category-content.active {
  max-height: 5000px;
}

/* Feature Rows */
.feature-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 0.4rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  align-items: center;
}

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

.feature-row:hover {
  background: rgba(0, 0, 0, 0.02);
}

.feature-name {
  font-size: 0.9rem;
  color: #4a4a4a;
  font-weight: 400;
}

.feature-value {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  font-weight: 400;
}

.feature-value.check {
  color: #00a886;
  font-size: 1.4rem;
  font-weight: 700;
}

.feature-value.unavailable {
  color: #cccccc;
  font-size: 1.4rem;
  font-weight: 700;
}

/* Coming Soon Badge */
.badge-coming-soon {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 12px;
  margin-left: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.coming-soon-category .category-toggle {
  background: rgba(255, 107, 53, 0.1) !important;
}

.coming-soon-category .category-toggle:hover {
  background: rgba(255, 107, 53, 0.15) !important;
}

.coming-soon-category .category-title {
  color: #ff6b35;
}

.coming-soon-category .category-toggle i {
  color: #ff6b35;
}

/* CTA Section */
.plans-cta {
  margin-top: 3rem;
  text-align: center;
}

/* ========================================
   PLAN DETAILS SECTION (Who is it for)
   ======================================== */

.plan-details-section {
  background: #ffffff;
  padding: 5rem 5% 6rem;
}

.plan-details-container {
  max-width: 1200px;
  margin: 0 auto;
}

.plan-detail-block {
  margin-bottom: 6rem;
  padding: 0 0 6rem 0;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.plan-detail-block:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.plan-detail-block#free-plan-details {
  background: transparent;
}

.plan-detail-block#pro-plan-details {
  background: transparent;
}

.plan-detail-block.mechanic-block {
  background: transparent;
}

/* Plan Title - Centered, Bigger */
.plan-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-title i {
  margin-right: 1rem;
  color: #0066cc;
  font-size: 2.8rem;
}

/* Plan Subtitle - Centered */
.plan-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-weight: 400;
  text-align: center;
  margin: 0 0 3rem 0;
  line-height: 1.4;
}

/* Plan Reasons Section */
.plan-reasons {
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
}

.plan-reasons h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0066cc;
  margin: 0 0 1.2rem 0;
  text-align: left;
}

.plan-reasons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-reasons ul li {
  padding-left: 1.8rem;
  margin-bottom: 0.9rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
}

.plan-reasons ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00a886;
  font-weight: 700;
  font-size: 1.4rem;
}

/* What You Get Section */
.plan-what-you-get {
  margin: 0 auto 2.5rem auto;
  max-width: 900px;
}

.plan-what-you-get h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #00a886;
  margin: 0 0 1rem 0;
  text-align: left;
}

.plan-what-you-get p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
}

/* Plan CTA Buttons */
.plan-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.plan-cta-buttons .cta-button {
  min-width: 200px;
}

/* Responsive for Plan Details */
@media (max-width: 768px) {
  .plan-details-section {
    padding: 3rem 5% 4rem;
  }

  .plan-detail-block {
    margin-bottom: 4rem;
    padding: 0 0 4rem 0;
  }

  .plan-detail-block:last-child {
    padding-bottom: 0;
  }

  .plan-title {
    font-size: 2rem;
  }

  .plan-title i {
    font-size: 1.8rem;
    margin-right: 0.7rem;
  }

  .plan-subtitle {
    font-size: 1rem;
    margin: 0 0 2rem 0;
  }

  .plan-reasons h3,
  .plan-what-you-get h3 {
    font-size: 1.1rem;
  }

  .plan-reasons ul li,
  .plan-what-you-get p {
    font-size: 0.95rem;
  }

  .plan-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .plan-cta-buttons .cta-button {
    min-width: 100%;
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .feature-row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
  }

  .feature-name {
    font-size: 0.85rem;
  }

  .feature-value {
    font-size: 0.8rem;
  }

  .header-plan {
    font-size: 1.3rem;
  }

  .pricing-value {
    font-size: 0.9rem;
  }

  .category-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .plans-sticky-header {
    position: static;
  }

  .plans-header-row,
  .plans-pricing-row,
  .plans-savings-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    border-radius: 12px;
  }

  .plans-header-row {
    padding: 1rem;
  }

  .header-plan {
    font-size: 1.3rem;
    padding: 0.8rem;
    background: #f0f7ff;
    border-radius: 8px;
  }

  .header-feature {
    display: none;
  }

  .plans-pricing-row {
    padding: 1rem;
    margin-top: 1rem;
  }

  .pricing-label {
    display: none;
  }

  .pricing-value {
    padding: 0.8rem;
    background: #f9f9f9;
    border-radius: 8px;
  }

  .pricing-value::before {
    display: block;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 0.3rem;
  }

  .pricing-value:nth-child(2)::before {
    content: "FREE";
  }

  .pricing-value:nth-child(3)::before {
    content: "RIDER PRO";
  }

  .pricing-value:nth-child(4)::before {
    content: "MECHANIC";
  }

  .plans-savings-row {
    padding: 0.5rem 1rem 1rem;
    margin-top: -0.5rem;
  }

  .savings-cell:nth-child(3) {
    text-align: center;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1.2rem;
  }

  .feature-name {
    font-weight: 700;
    color: #0066cc;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #e5e5e5;
  }

  .feature-value {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    text-align: left;
  }

  .feature-value::before {
    content: attr(data-plan);
    font-weight: 600;
    color: #666;
  }

  /* Add data-plan attributes via JavaScript or adjust HTML for mobile */
  .feature-row .feature-value:nth-child(2)::before {
    content: "FREE: ";
  }

  .feature-row .feature-value:nth-child(3)::before {
    content: "RIDER PRO: ";
  }

  .feature-row .feature-value:nth-child(4)::before {
    content: "MECHANIC: ";
  }

  .category-title {
    font-size: 0.9rem;
  }

  .badge-coming-soon {
    display: block;
    margin: 0.5rem 0 0 0;
  }
}

