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

:root {
  /* FinSnap theme colors - enhanced with modern palette */
  --primary-color: rgba(207, 253, 54, 1);
  --primary-dark: rgba(180, 220, 45, 1);
  --primary-light: rgba(207, 253, 54, 0.15);
  --primary-glow: rgba(207, 253, 54, 0.3);
  --primary-glow-strong: rgba(207, 253, 54, 0.5);
  --accent-border: rgba(93, 115, 25, 1);
  --accent-border-light: rgba(207, 253, 54, 0.3);
  --secondary-color: #34C759;
  --text-light: #FFFFFF;
  --text-secondary: rgba(189, 189, 189, 0.9);
  --text-disabled: rgba(189, 189, 189, 0.4);
  --text-lighter: rgba(156, 163, 175, 0.8);
  --bg-primary: #000000;
  --bg-secondary: rgba(29, 28, 28, 1);
  --bg-tertiary: rgba(45, 44, 44, 1);
  --bg-card: rgba(36, 36, 36, 1);
  --bg-stats: rgba(23, 23, 23, 1);
  --bg-glass: rgba(36, 36, 36, 0.75);
  --bg-glass-strong: rgba(36, 36, 36, 0.85);
  --border-primary: rgba(255, 255, 255, 0.12);
  --border-secondary: rgba(96, 116, 25, 1);
  --gradient-1: linear-gradient(135deg, rgba(207, 253, 54, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
  --gradient-2: linear-gradient(135deg, rgba(207, 253, 54, 0.15) 0%, rgba(0, 0, 0, 0.8) 100%);
  --gradient-hero: radial-gradient(ellipse at top, rgba(207, 253, 54, 0.18) 0%, transparent 70%),
                    radial-gradient(ellipse at bottom right, rgba(207, 253, 54, 0.1) 0%, transparent 60%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  --gradient-text: linear-gradient(135deg, #FFFFFF 0%, rgba(207, 253, 54, 0.95) 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.8);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
  --shadow-glow: 0 0 40px rgba(207, 253, 54, 0.25);
  --shadow-glow-strong: 0 0 60px rgba(207, 253, 54, 0.4);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
  --shadow-card-hover: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(207, 253, 54, 0.25), 0 0 50px rgba(207, 253, 54, 0.15);
  
  /* Modern spacing scale */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Border radius scale */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  
  /* Transition timing */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-light);
  background: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  z-index: 0;
  overflow: hidden;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
      radial-gradient(circle at 30% 40%, rgba(207, 253, 54, 0.15) 0%, transparent 40%),
      radial-gradient(circle at 70% 60%, rgba(207, 253, 54, 0.1) 0%, transparent 40%);
  animation: rotate 25s linear infinite;
  will-change: transform;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      radial-gradient(circle at 50% 50%, rgba(207, 253, 54, 0.08) 0%, transparent 60%);
  animation: pulse 10s ease-in-out infinite;
  will-change: opacity, transform;
}

@keyframes rotate {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
      opacity: 1;
      transform: scale(1);
  }
  50% {
      opacity: 0.8;
      transform: scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-text {
  color: white;
}

.hero-title {
  font-size: clamp(40px, 7.5vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 32px;
  animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.03em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px rgba(207, 253, 54, 0.2));
  position: relative;
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0.92;
  color: var(--text-secondary);
  font-weight: 400;
  animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
  max-width: 90%;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--bg-primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-2xl), var(--shadow-glow-strong);
  border-color: var(--primary-color);
}

.btn-secondary {
  background: var(--bg-glass-strong);
  color: var(--primary-color);
  border: 2px solid var(--accent-border-light);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background: rgba(207, 253, 54, 0.18);
  border-color: var(--primary-color);
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-card-hover);
  color: var(--primary-color);
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--accent-border);
}

.btn-outline:hover {
  background: var(--primary-light);
  border-color: var(--primary-color);
}

.app-badges {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  align-items: center;
}

.badge-link {
  display: inline-block;
  transition: all var(--transition-base);
  line-height: 0;
}

.badge-link:hover {
  transform: translateY(-4px) scale(1.05);
  filter: drop-shadow(0 8px 16px rgba(207, 253, 54, 0.2));
}

.app-badge {
  height: 50px;
  width: 160px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.app-badge-large {
  height: 60px;
  width: 192px;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Обрезка отступов для Google Play бейджа */
.app-badge-google {
  object-fit: cover;
  object-position: center;
  transform: scale(1.15);
  clip-path: inset(10% 8% 10% 8%);
}

.app-badge-large.app-badge-google {
  transform: scale(1.15);
  clip-path: inset(10% 8% 10% 8%);
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stars {
  font-size: 24px;
}

.rating-text {
  font-weight: 600;
}

/* Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out;
}

.phone-mockup {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.phone-frame {
  width: 300px;
  height: 600px;
  background: var(--bg-glass-strong);
  border-radius: 44px;
  padding: 14px;
  box-shadow:
      0 30px 60px -12px rgba(207, 253, 54, 0.35),
      inset 0 2px 6px rgba(207, 253, 54, 0.15),
      var(--shadow-glow);
  border: 2px solid rgba(207, 253, 54, 0.25);
  position: relative;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  transition: all var(--transition-base);
}

.phone-frame:hover {
  transform: translateY(-12px) rotateY(4deg) scale(1.02);
  box-shadow:
      0 40px 80px -12px rgba(207, 253, 54, 0.45),
      inset 0 2px 6px rgba(207, 253, 54, 0.2),
      var(--shadow-glow-strong);
  border-color: rgba(207, 253, 54, 0.35);
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: 3px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, rgba(207, 253, 54, 0.05) 100%);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}
.phone-screen img {
  width: 100%;
}

@keyframes float {
  0%, 100% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-20px);
  }
}

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

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

/* Social Proof Section */
.social-proof {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.stat-item {
  text-align: center;
  padding: 40px 32px;
  background: var(--bg-glass-strong);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-primary);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

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

.stat-item:hover::before {
  transform: translateX(100%);
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent-border-light);
  background: var(--bg-glass);
}

.stat-icon {
  font-size: 56px;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(207, 253, 54, 0.2));
  display: inline-block;
}

.stat-item:hover .stat-icon {
  transform: scale(1.2) rotate(10deg);
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-secondary);
}

/* Section Styles */
.section-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text-light);
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(207, 253, 54, 0.15));
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  text-align: center;
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto 64px;
  line-height: 1.75;
  font-weight: 400;
}

.section-header {
  margin-bottom: 60px;
}

/* Testimonials */
.testimonials {
  margin-top: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-glass-strong);
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-primary);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(207, 253, 54, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent-border-light);
  background: var(--bg-glass);
}

.testimonial-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(207, 253, 54, 0.2));
}

.testimonial-card:hover .testimonial-icon {
  transform: scale(1.15) rotate(-5deg);
}

.testimonial-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 16px;
}

.testimonial-stars {
  font-size: 20px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-weight: 600;
  font-size: 16px;
}

.author-name {
  font-weight: 600;
  color: var(--text-light);
}

.author-info {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--bg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

/* Bento UI Layout для features */
.features-grid .feature-card:nth-child(1) {
  grid-column: span 1;
}

.features-grid .feature-card:nth-child(2) {
  grid-column: span 1;
}

.features-grid .feature-card:nth-child(3) {
  grid-column: span 1;
}

@media (min-width: 1200px) {
  .features-grid {
      grid-template-columns: repeat(3, 1fr);
  }
  
  .features-grid .feature-card:nth-child(1) {
      grid-row: span 1;
  }
  
  .features-grid .feature-card:nth-child(4) {
      grid-column: span 2;
  }
}

.feature-card {
  background: var(--bg-glass-strong);
  padding: 36px 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-primary);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(207, 253, 54, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent-border-light);
  background: var(--bg-glass);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(207, 253, 54, 0.2));
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(3deg);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-light);
}

.feature-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-secondary);
}

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

.step-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
  padding: 24px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.step-item:hover {
  background: var(--bg-glass);
  transform: translateX(8px);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-primary);
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  top: 80px;
  width: 2px;
  height: calc(100% + 20px);
  background: linear-gradient(180deg, var(--primary-color) 0%, transparent 100%);
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.step-item:hover:not(:last-child)::after {
  opacity: 1;
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.step-item:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(207, 253, 54, 0.5);
}

.step-content {
  flex: 1;
  padding-top: 8px;
}

.step-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-light);
}

.step-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Comparison Section */
.comparison {
  padding: 100px 0;
  background: var(--bg-primary);
}

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

.comparison-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-glass);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-primary);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.comparison-table thead {
  background: var(--bg-secondary);
  color: var(--text-light);
}

.comparison-table th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border-primary);
  font-size: 15px;
  color: var(--text-secondary);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr {
  transition: all var(--transition-base);
}

.comparison-table tbody tr:hover {
  background: var(--bg-secondary);
  transform: translateX(4px);
}

.comparison-table .positive {
  color: var(--primary-color);
  font-weight: 600;
}

.comparison-table .negative {
  color: #ff3b30;
  font-weight: 600;
}

.comparison-table .neutral {
  color: #ff9500;
  font-weight: 600;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-glass-strong);
  border: 2px solid var(--border-primary);
  border-radius: var(--radius-2xl);
  padding: 48px 40px;
  text-align: center;
  transition: all var(--transition-slow);
  position: relative;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.pricing-card:hover::before {
  transform: translateX(100%);
}

.pricing-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent-border-light);
  background: var(--bg-glass);
}

/* Pricing Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle-card {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-primary);
}

.pricing-card-free {
  padding-top: 120px; /* Компенсация высоты переключателя + отступы */
}

.toggle-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.toggle-label.active {
  color: var(--primary-color);
}

.save-badge {
  display: inline-block;
  background: var(--primary-color);
  color: var(--bg-primary);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 8px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 28px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-glass-strong);
  border: 2px solid var(--border-primary);
  transition: all 0.3s ease;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: var(--text-secondary);
  transition: all 0.3s ease;
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--primary-light);
  border-color: var(--primary-color);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(28px);
  background-color: var(--primary-color);
}

.pricing-card-featured {
  border: 2px solid var(--accent-border);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  background: linear-gradient(135deg, var(--bg-glass) 0%, rgba(207, 253, 54, 0.05) 100%);
}

.pricing-card-featured::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(207, 253, 54, 0.15) 0%, transparent 70%);
  animation: rotate 15s linear infinite;
  pointer-events: none;
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--bg-primary);
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
  z-index: 10;
}

.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--bg-primary);
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.pricing-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-light);
}

.pricing-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.price-period {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-period {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 12px 0 20px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
  flex-grow: 1;
  width: 100%;
}

.pricing-features li {
  padding: 4px 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-note {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 16px 0;
}

.pricing-disclaimer {
  font-size: 13px;
  color: var(--text-disabled);
  margin-top: 16px;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: var(--bg-primary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-primary);
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-border-light);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-secondary);
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active {
  border-color: var(--accent-border-light);
  box-shadow: var(--shadow-card-hover);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Final CTA Section */
.final-cta {
  position: relative;
  padding: 120px 0;
  background: var(--bg-secondary);
  color: white;
  text-align: center;
  overflow: hidden;
}

.final-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  overflow: hidden;
}

.final-cta-overlay::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
      radial-gradient(circle at 30% 40%, rgba(207, 253, 54, 0.15) 0%, transparent 40%),
      radial-gradient(circle at 70% 60%, rgba(207, 253, 54, 0.1) 0%, transparent 40%);
  animation: rotate 25s linear infinite;
}

.final-cta-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      radial-gradient(circle at 50% 50%, rgba(207, 253, 54, 0.08) 0%, transparent 60%);
  animation: pulse 10s ease-in-out infinite;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-title {
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 900;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px rgba(207, 253, 54, 0.2));
}

.final-cta-subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  margin-bottom: 48px;
  opacity: 0.92;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  align-items: center;
}

.final-cta-note {
  font-size: 14px;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--bg-primary);
  color: white;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-primary);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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

.footer-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(6px);
  text-shadow: 0 0 8px rgba(207, 253, 54, 0.3);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Smooth scroll reveal animations - improved */
@keyframes slideInUp {
  from {
      opacity: 0;
      transform: translateY(40px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.fade-in {
  animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Glassmorphism utility - Enhanced */
.glass {
  background: var(--bg-glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-primary);
  box-shadow: var(--shadow-card);
}

/* Modern gradient overlays */
.gradient-overlay {
  position: relative;
}

.gradient-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(207, 253, 54, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Enhanced hover states and performance */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Performance optimizations */
.hero-background,
.final-cta-overlay,
.phone-frame {
  will-change: transform;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}

/* Modern scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-secondary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-border);
}

/* Smooth transitions for all interactive elements - enhanced */
a, button, .btn, .feature-card, .testimonial-card, .stat-item, .pricing-card, .faq-item {
  transition: all var(--transition-base);
}

/* Improved focus states for accessibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
  border-radius: var(--radius-md);
}

/* Focus states for accessibility */
.btn:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
  border-radius: 12px;
}

/* Responsive Design - Enhanced */
@media (max-width: 968px) {
  .hero-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 48px;
      padding: 60px 0;
  }

  .hero-title {
      font-size: clamp(36px, 8vw, 48px);
      margin-bottom: 24px;
  }

  .hero-subtitle {
      font-size: clamp(16px, 3vw, 20px);
      margin-bottom: 36px;
      max-width: 100%;
  }

  .hero-cta {
      justify-content: center;
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
  }

  .app-badges {
      justify-content: center;
      flex-wrap: wrap;
  }

  .rating {
      justify-content: center;
  }

  .phone-mockup {
      margin-top: 48px;
  }

  .section-title {
      font-size: clamp(32px, 6vw, 42px);
      margin-bottom: 20px;
  }

  .section-subtitle {
      font-size: clamp(15px, 2.5vw, 18px);
      margin-bottom: 48px;
  }

  .features-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .feature-card {
      padding: 40px 32px;
  }

  .pricing-grid {
      grid-template-columns: 1fr;
      gap: 32px;
  }

  .pricing-card {
      padding: 48px 32px;
  }

  .final-cta-title {
      font-size: clamp(32px, 7vw, 42px);
  }

  .final-cta-subtitle {
      font-size: clamp(16px, 3vw, 20px);
      margin-bottom: 40px;
  }

  .final-cta-buttons {
      flex-direction: column;
      align-items: center;
      gap: 16px;
  }

  .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
  }

  .stat-item {
      padding: 32px 24px;
  }

  .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 24px;
  }

  .testimonial-card {
      padding: 40px 32px;
  }
}

@media (max-width: 640px) {
  .container {
      padding: 0 16px;
  }

  .hero {
      min-height: 90vh;
  }

  .hero-content {
      padding: 40px 0;
  }

  .hero-title {
      font-size: clamp(32px, 9vw, 40px);
      margin-bottom: 20px;
  }

  .hero-subtitle {
      font-size: clamp(15px, 4vw, 18px);
      margin-bottom: 32px;
      line-height: 1.7;
  }

  .btn {
      padding: 14px 28px;
      font-size: 15px;
  }

  .btn-large {
      padding: 16px 32px;
      font-size: 16px;
  }

  .phone-frame {
      width: 260px;
      height: 520px;
      border-radius: 36px;
      padding: 12px;
  }

  .phone-frame:hover {
      transform: translateY(-8px) scale(1.01);
  }

  .phone-screen {
      border-radius: 28px;
  }

  .stats-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 60px;
  }

  .stat-item {
      padding: 32px 24px;
  }

  .stat-number {
      font-size: 36px;
  }

  .stat-icon {
      font-size: 48px;
  }

  .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .testimonial-card {
      padding: 36px 28px;
  }

  .testimonial-icon {
      font-size: 48px;
  }

  .features-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .feature-card {
      padding: 36px 28px;
  }

  .feature-icon {
      font-size: 48px;
  }

  .step-item {
      flex-direction: column;
      gap: 20px;
      padding: 24px;
      margin-bottom: 40px;
  }

  .step-item:not(:last-child)::after {
      display: none;
  }

  .step-item:hover {
      transform: translateY(-4px);
  }

  .step-number {
      width: 60px;
      height: 60px;
      font-size: 28px;
  }

  .comparison-table {
      font-size: 13px;
  }

  .comparison-table th,
  .comparison-table td {
      padding: 14px 10px;
  }

  .pricing-card {
      padding: 40px 28px;
  }

  .pricing-price {
      font-size: 40px;
  }

  .pricing-features {
      grid-template-columns: 1fr;
      gap: 8px;
  }

  .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
  }

  .section-title {
      font-size: clamp(28px, 7vw, 36px);
  }

  .section-subtitle {
      font-size: clamp(14px, 3vw, 17px);
      margin-bottom: 40px;
  }

  .final-cta {
      padding: 80px 0;
  }

  .final-cta-title {
      font-size: clamp(28px, 8vw, 36px);
      margin-bottom: 20px;
  }

  .final-cta-subtitle {
      font-size: clamp(15px, 4vw, 18px);
      margin-bottom: 32px;
  }

  .app-badge-large {
      height: 50px;
  }

  .faq-item {
      margin-bottom: 16px;
  }

  .faq-question {
      padding: 20px;
      font-size: 16px;
  }
}

/* Animations - Enhanced */
.fade-in {
  animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Modern micro-interactions */
@keyframes shimmer {
  0% {
      background-position: -1000px 0;
  }
  100% {
      background-position: 1000px 0;
  }
}

/* Smooth page load */
body:not(.loaded) * {
  animation-play-state: paused !important;
}

body.loaded {
  animation: fadeIn 0.5s ease-out;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* ==========================================
   FINSNAP LANDING STYLES
   ========================================== */

/* Bento Grid for Features */
.bento-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.bento-card {
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(207, 253, 54, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border-light);
  box-shadow: var(--shadow-card-hover);
}

.bento-card--large {
  grid-column: span 1;
}

.bento-card--small {
  grid-column: span 1;
}

.bento-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.bento-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.bento-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.bento-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-card--large,
  .bento-card--small {
    grid-column: span 1;
  }
  
  .bento-card {
    padding: 32px 28px;
  }
}

/* Minimal Hero */
.hero-minimal {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero-minimal .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title-large {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.hero-title-accent {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 32px;
}

.hero-subtitle-minimal {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 400px;
}

.hero-phone {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-phone .phone-frame {
  transform: translateX(20%);
}

@media (max-width: 968px) {
  .hero-minimal .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-subtitle-minimal {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-phone {
    justify-content: center;
    margin-top: 48px;
  }
  
  .hero-phone .phone-frame {
    transform: translateX(0);
  }
  
  .app-badges {
    justify-content: center;
  }
}

/* Steps Timeline */
.steps-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 60px auto 0;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--border-primary);
}

.step-item-minimal {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.step-dot {
  width: 48px;
  height: 48px;
  background: var(--bg-secondary);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.step-item-minimal:hover .step-dot {
  background: var(--primary-color);
  color: var(--bg-primary);
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.step-title-minimal {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.step-description-minimal {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .steps-timeline {
    flex-direction: column;
    gap: 32px;
  }
  
  .steps-timeline::before {
    width: 2px;
    height: 70%;
    top: 24px;
    left: 24px;
    transform: none;
  }
  
  .step-item-minimal {
    text-align: left;
    padding-left: 80px;
  }
  
  .step-dot {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }
}

/* Minimal Pricing */
.pricing-minimal {
  padding: 120px 0;
}

.pricing-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 800px;
  margin: 60px auto 0;
}

.pricing-column {
  position: relative;
}

.pricing-column-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.pricing-column-title--accent {
  color: var(--primary-color);
}

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

.pricing-list li {
  font-size: 16px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-primary);
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-price {
  margin-top: 32px;
}

.pricing-price-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
}

.pricing-price-period {
  font-size: 18px;
  color: var(--text-secondary);
}

.pricing-price-alt {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.pricing-save-badge {
  display: inline-block;
  background: var(--primary-color);
  color: var(--bg-primary);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-left: 8px;
}

@media (max-width: 640px) {
  .pricing-columns {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* Minimal CTA */
.cta-minimal {
  padding: 160px 0;
  text-align: center;
  position: relative;
}

.cta-title-large {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 48px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.cta-note {
  font-size: 15px;
  color: var(--text-secondary);
}

/* Minimal Footer */
.footer-minimal {
  padding: 60px 0;
  border-top: 1px solid var(--border-primary);
}

.footer-minimal .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-links-inline {
  display: flex;
  gap: 32px;
}

.footer-links-inline a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links-inline a:hover {
  color: var(--primary-color);
}

.footer-copyright-minimal {
  font-size: 14px;
  color: var(--text-disabled);
}

/* Section spacing */
.section-minimal {
  padding: 120px 0;
}

.section-title-minimal {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

/* Scroll animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ==========================================
   ENHANCED LANDING STYLES
   ========================================== */

/* Enhanced Hero */
.hero-enhanced {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.hero-background-enhanced {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float-orb 20s ease-in-out infinite;
}

.hero-gradient-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(207, 253, 54, 0.3) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.hero-gradient-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(207, 253, 54, 0.2) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

.hero-gradient-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(207, 253, 54, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes float-orb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-content-enhanced {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text-enhanced {
  color: white;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-glass-strong);
  border: 1px solid var(--accent-border-light);
  border-radius: 20px;
  margin-bottom: 24px;
  backdrop-filter: blur(20px);
}

.hero-badge-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.hero-title-enhanced {
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 32px;
}

.hero-title-line {
  display: block;
}

.hero-title-accent-enhanced {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px rgba(207, 253, 54, 0.3));
}

.hero-subtitle-enhanced {
  font-size: clamp(20px, 2.5vw, 24px);
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-cta-enhanced {
  margin-top: 40px;
}

.hero-visual-enhanced {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup-enhanced {
  position: relative;
}

.phone-frame-enhanced {
  width: 320px;
  height: 640px;
  background: var(--bg-glass-strong);
  border-radius: 48px;
  padding: 16px;
  box-shadow:
    0 40px 80px -12px rgba(207, 253, 54, 0.4),
    inset 0 2px 8px rgba(207, 253, 54, 0.2),
    var(--shadow-glow-strong);
  border: 2px solid rgba(207, 253, 54, 0.3);
  position: relative;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  transition: all var(--transition-slow);
  animation: float-phone 6s ease-in-out infinite;
}

.phone-frame-enhanced:hover {
  transform: translateY(-16px) rotateY(5deg) scale(1.02);
  box-shadow:
    0 50px 100px -12px rgba(207, 253, 54, 0.5),
    inset 0 2px 8px rgba(207, 253, 54, 0.25),
    0 0 80px rgba(207, 253, 54, 0.3);
  border-color: rgba(207, 253, 54, 0.4);
}

@keyframes float-phone {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-24px);
  }
}

.phone-frame-enhanced::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: 4px;
}

.phone-screen-enhanced {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, rgba(207, 253, 54, 0.05) 100%);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}

.phone-screen-enhanced img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(207, 253, 54, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  padding: 12px 20px;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  animation: float-card 8s ease-in-out infinite;
}

.floating-card-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary-color);
}

.floating-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.floating-card-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
}

.floating-card-1 {
  top: 10%;
  right: -20%;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 20%;
  left: -15%;
  animation-delay: 2s;
}

.floating-card-3 {
  top: 60%;
  right: -10%;
  animation-delay: 4s;
}

@keyframes float-card {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: translate(20px, -20px) rotate(5deg);
    opacity: 1;
  }
}

@media (max-width: 968px) {
  .hero-content-enhanced {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .hero-subtitle-enhanced {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-visual-enhanced {
    margin-top: 40px;
  }
  
  .floating-card {
    display: none;
  }
  
  .phone-frame-enhanced {
    width: 280px;
    height: 560px;
  }
}

/* Enhanced Features */
.features-enhanced {
  padding: 160px 0;
  background: var(--bg-primary);
  position: relative;
}

.section-header-enhanced {
  text-align: center;
  margin-bottom: 80px;
}

.section-title-enhanced {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle-enhanced {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.bento-grid-enhanced {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.bento-card-enhanced {
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.bento-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(207, 253, 54, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.bento-card-enhanced:hover::before {
  opacity: 1;
}

.bento-card-enhanced:hover {
  transform: translateY(-8px);
  border-color: var(--accent-border-light);
  box-shadow: var(--shadow-card-hover);
}

.bento-card-primary {
  grid-column: span 1;
}

.bento-card-secondary {
  grid-column: span 1;
}

.bento-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(207, 253, 54, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.bento-card-primary:hover .bento-card-glow {
  opacity: 1;
}

.bento-icon-wrapper {
  margin-bottom: 24px;
}

.bento-icon-enhanced {
  width: 56px;
  height: 56px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base);
}

.bento-card-enhanced:hover .bento-icon-enhanced {
  transform: scale(1.1) rotate(5deg);
}

.bento-icon-enhanced svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.bento-title-enhanced {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.bento-description-enhanced {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.bento-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.bento-card-primary:hover .bento-accent-line {
  opacity: 1;
}

@media (max-width: 768px) {
  .bento-grid-enhanced {
    grid-template-columns: 1fr;
  }
  
  .bento-card-primary,
  .bento-card-secondary {
    grid-column: span 1;
  }
  
  .bento-card-enhanced {
    padding: 36px 32px;
  }
}

/* Enhanced How It Works */
.how-it-works-enhanced {
  padding: 160px 0;
  background: var(--bg-secondary);
  position: relative;
}

.steps-enhanced {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.step-card-enhanced {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  padding: 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  backdrop-filter: blur(20px);
}

.step-card-enhanced:hover {
  transform: translateX(12px);
  border-color: var(--accent-border-light);
  box-shadow: var(--shadow-card-hover);
  background: var(--bg-glass-strong);
}

.step-number-enhanced {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
  transition: all var(--transition-base);
}

.step-number-glow {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: var(--primary-color);
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.5;
  z-index: -1;
  transition: opacity var(--transition-base);
}

.step-card-enhanced:hover .step-number-enhanced {
  transform: scale(1.15) rotate(10deg);
  box-shadow: var(--shadow-xl), 0 0 50px rgba(207, 253, 54, 0.6);
}

.step-card-enhanced:hover .step-number-glow {
  opacity: 0.8;
}

.step-number-text {
  position: relative;
  z-index: 1;
}

.step-content-enhanced {
  flex: 1;
  padding-top: 8px;
}

.step-title-enhanced {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.step-description-enhanced {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.step-connector {
  position: absolute;
  left: 64px;
  top: 112px;
  width: 2px;
  height: calc(100% + 40px);
  background: linear-gradient(180deg, var(--primary-color) 0%, transparent 100%);
  opacity: 0.3;
  transition: opacity var(--transition-base);
}

.step-card-enhanced:hover .step-connector {
  opacity: 1;
}

.step-card-enhanced:last-child .step-connector {
  display: none;
}

@media (max-width: 640px) {
  .steps-enhanced {
    gap: 32px;
  }
  
  .step-card-enhanced {
    flex-direction: column;
    gap: 24px;
    padding: 28px;
  }
  
  .step-card-enhanced:hover {
    transform: translateY(-4px);
  }
  
  .step-connector {
    display: none;
  }
  
  .step-number-enhanced {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
}

/* Enhanced Pricing */
.pricing-enhanced {
  padding: 160px 0;
  background: var(--bg-primary);
}

.pricing-cards-enhanced {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 60px auto 0;
}

.pricing-card-enhanced {
  background: var(--bg-glass-strong);
  border: 2px solid var(--border-primary);
  border-radius: var(--radius-2xl);
  padding: 48px 40px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.pricing-card-enhanced:hover::before {
  transform: translateX(100%);
}

.pricing-card-enhanced:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent-border-light);
}

.pricing-card-glow-pro {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(207, 253, 54, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
  animation: rotate 20s linear infinite;
}

.pricing-card-pro:hover .pricing-card-glow-pro {
  opacity: 1;
}

.pricing-card-header {
  margin-bottom: 32px;
  position: relative;
}

.pricing-card-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.pricing-card-title-pro {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pricing-card-badge-free {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: 1px solid var(--border-primary);
}

.pricing-card-badge-pro {
  background: var(--primary-color);
  color: var(--bg-primary);
  box-shadow: var(--shadow-glow);
}

.pricing-price-enhanced {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-primary);
}

.pricing-price-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.pricing-price-value {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
}

.pricing-price-period {
  font-size: 20px;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-price-alt-enhanced {
  font-size: 18px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-save-badge-enhanced {
  display: inline-block;
  background: var(--primary-color);
  color: var(--bg-primary);
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.pricing-features-enhanced {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--text-secondary);
  stroke-width: 2.5;
}

.pricing-feature-icon-pro {
  stroke: var(--primary-color);
}

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

.btn-pricing {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .pricing-cards-enhanced {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .pricing-card-enhanced {
    padding: 40px 32px;
  }
}

/* Enhanced CTA */
.cta-enhanced {
  padding: 180px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-background-enhanced {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.cta-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float-orb 25s ease-in-out infinite;
}

.cta-gradient-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(207, 253, 54, 0.25) 0%, transparent 70%);
  top: -300px;
  left: -300px;
  animation-delay: 0s;
}

.cta-gradient-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(207, 253, 54, 0.2) 0%, transparent 70%);
  bottom: -250px;
  right: -250px;
  animation-delay: 8s;
}

.cta-content-enhanced {
  position: relative;
  z-index: 1;
}

.cta-title-enhanced {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px rgba(207, 253, 54, 0.3));
  line-height: 1.1;
}

.cta-subtitle-enhanced {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-badges-enhanced {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.badge-link-enhanced {
  display: inline-block;
  transition: all var(--transition-base);
  line-height: 0;
}

.badge-link-enhanced:hover {
  transform: translateY(-6px) scale(1.05);
  filter: drop-shadow(0 12px 24px rgba(207, 253, 54, 0.3));
}

@media (max-width: 640px) {
  .cta-enhanced {
    padding: 120px 0;
  }
  
  .cta-badges-enhanced {
    flex-direction: column;
    align-items: center;
  }
}
