/* Indic8 - Marketing Website Styles */
/* Sophisticated Fintech Design - Anti-Generic AI Patterns */

/* === CSS Reset & Variables === */
:root {
  /* Sophisticated Color Palette - Anti-Tailwind */
  --charcoal: #2C2C2C;
  --warm-copper: #B87333;
  --electric-lime: #32CD32;
  --warm-white: #FAFAF8;
  --deep-black: #1A1A1A;
  --soft-gray: #6B6B6B;
  --accent-red: #FF6B5B;
  --accent-blue: #4A90FB;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Breakpoints */
  --mobile: 480px;
  --tablet: 768px;
  --desktop: 1024px;
  --wide: 1440px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--deep-black);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

/* === Containers === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-brand .logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
  color: var(--deep-black);
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--warm-copper);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-black);
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
}

.nav-link {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--warm-copper);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--warm-copper);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: var(--space-sm);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

/* === Buttons === */
.btn-primary, .btn-secondary, .btn-hero-primary, .btn-hero-secondary, 
.btn-cta-primary, .card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 14px;
}

.btn-primary, .btn-hero-primary, .btn-cta-primary, .card-cta.primary {
  background: var(--warm-copper);
  color: white;
  box-shadow: 0 4px 12px rgba(184, 115, 51, 0.3);
}

.btn-primary:hover, .btn-hero-primary:hover, .btn-cta-primary:hover, .card-cta.primary:hover {
  background: #A0732D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 115, 51, 0.4);
}

.btn-secondary, .btn-hero-secondary, .card-cta.secondary {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}

.btn-secondary:hover, .btn-hero-secondary:hover, .card-cta.secondary:hover {
  background: var(--charcoal);
  color: white;
  transform: translateY(-2px);
}

.btn-hero-primary, .btn-hero-secondary {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-cta-primary {
  padding: 20px 40px;
  font-size: 18px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(184, 115, 51, 0.3);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* === Hero Section === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 var(--space-3xl);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  pointer-events: none;
}

.chart-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(44, 44, 44, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 44, 44, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

.floating-indicators {
  position: absolute;
  top: 20%;
  right: 10%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.indicator {
  background: rgba(255, 255, 255, 0.9);
  padding: var(--space-sm);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(44, 44, 44, 0.1);
  animation: float 3s ease-in-out infinite;
}

.indicator.rsi { animation-delay: 0s; }
.indicator.macd { animation-delay: 1s; }
.indicator.ema { animation-delay: 2s; }

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

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--electric-lime);
  color: var(--deep-black);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--deep-black);
}

.title-accent {
  color: var(--warm-copper);
  position: relative;
}

.title-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--warm-copper), var(--electric-lime));
  border-radius: 2px;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--soft-gray);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--warm-copper);
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--soft-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === Hero Visual === */
.hero-visual {
  z-index: 10;
}

.chart-container {
  background: white;
  border-radius: 16px;
  padding: var(--space-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(44, 44, 44, 0.1);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.chart-symbol {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--deep-black);
}

.chart-timeframe {
  background: var(--electric-lime);
  color: var(--deep-black);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.chart-price {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--electric-lime);
}

.interactive-chart {
  position: relative;
  height: 200px;
  margin-bottom: var(--space-md);
}

.chart-svg {
  width: 100%;
  height: 100%;
}

.price-line {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawLine 3s ease-in-out forwards;
}

.ema-line {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawLine 3s ease-in-out 0.5s forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.chart-annotations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.annotation {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.annotation-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warm-copper);
}

.annotation-label {
  background: var(--warm-copper);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.ai-explanation {
  background: var(--warm-white);
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 12px;
  padding: var(--space-md);
}

.explanation-header {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--charcoal);
}

.ai-avatar {
  font-size: 20px;
}

.explanation-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--soft-gray);
  font-style: italic;
}

/* === Problem Section === */
.problem {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--warm-white) 0%, #F5F5F3 100%);
}

.problem-content {
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
  color: var(--deep-black);
}

.text-accent {
  color: var(--warm-copper);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-3xl) 0;
}

.problem-card {
  background: white;
  padding: var(--space-xl);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(44, 44, 44, 0.05);
  transition: transform 0.3s ease;
}

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

.problem-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: block;
}

.problem-card h3 {
  margin-bottom: var(--space-md);
  color: var(--deep-black);
}

.problem-card p {
  color: var(--soft-gray);
  line-height: 1.6;
}

.problem-quote {
  max-width: 600px;
  margin: var(--space-3xl) auto 0;
  text-align: center;
}

.problem-quote blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.problem-quote cite {
  color: var(--soft-gray);
  font-size: 14px;
}

/* === Solution Section === */
.solution {
  padding: var(--space-3xl) 0;
  background: white;
}

.solution-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--soft-gray);
  margin-top: var(--space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-showcase {
  margin-bottom: var(--space-xl);
}

.feature-demo {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.feature-demo.active {
  display: grid;
}

.demo-visual {
  background: var(--warm-white);
  padding: var(--space-xl);
  border-radius: 16px;
  border: 1px solid rgba(44, 44, 44, 0.1);
}

.live-chart .chart-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(44, 44, 44, 0.1);
}

.data-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.data-point .label {
  font-size: 12px;
  color: var(--soft-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-point .value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--deep-black);
}

.data-point .status {
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.status.overbought {
  background: rgba(255, 107, 91, 0.2);
  color: var(--accent-red);
}

.status.neutral {
  background: rgba(107, 107, 107, 0.2);
  color: var(--soft-gray);
}

.ai-insight {
  background: white;
  padding: var(--space-md);
  border-radius: 8px;
  border-left: 4px solid var(--warm-copper);
}

.ai-insight p {
  font-style: italic;
  color: var(--soft-gray);
  margin: 0;
}

.qa-interface {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(44, 44, 44, 0.1);
}

.question, .answer {
  padding: var(--space-md);
}

.question {
  background: var(--warm-white);
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.answer {
  background: white;
}

.learning-path {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.path-step {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(44, 44, 44, 0.1);
}

.path-step.completed .step-icon {
  color: var(--electric-lime);
}

.path-step.current {
  border-color: var(--warm-copper);
  background: rgba(184, 115, 51, 0.05);
}

.path-step.current .step-icon {
  color: var(--warm-copper);
}

.path-step.upcoming .step-icon {
  color: var(--soft-gray);
}

.step-content h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
}

.step-content p {
  margin: 0;
  font-size: 14px;
  color: var(--soft-gray);
}

.demo-content h3 {
  margin-bottom: var(--space-md);
  color: var(--deep-black);
}

.demo-content p {
  margin-bottom: var(--space-md);
  color: var(--soft-gray);
  line-height: 1.6;
}

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

.feature-benefits li {
  padding: 4px 0;
  color: var(--soft-gray);
  position: relative;
  padding-left: 20px;
}

.feature-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--electric-lime);
  font-weight: 700;
}

.feature-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  background: transparent;
  border: 2px solid rgba(44, 44, 44, 0.2);
  border-radius: 8px;
  color: var(--soft-gray);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
  border-color: var(--warm-copper);
  color: var(--warm-copper);
  background: rgba(184, 115, 51, 0.05);
}

/* === Platforms Section === */
.platforms {
  padding: var(--space-3xl) 0;
  background: var(--warm-white);
}

.platforms .section-title, .platforms .section-subtitle {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.platform-card {
  background: white;
  padding: var(--space-xl);
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(44, 44, 44, 0.1);
  transition: all 0.3s ease;
}

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

.platform-card.primary {
  border-color: var(--warm-copper);
  background: rgba(184, 115, 51, 0.02);
}

.platform-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.platform-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--deep-black);
}

.platform-card p {
  color: var(--soft-gray);
  margin-bottom: var(--space-md);
}

.support-level {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.support-level.full {
  background: var(--electric-lime);
  color: var(--deep-black);
}

.support-level.high {
  background: rgba(50, 205, 50, 0.2);
  color: var(--electric-lime);
}

.support-level.medium {
  background: rgba(255, 165, 0, 0.2);
  color: #FF8C00;
}

.support-level.basic {
  background: rgba(107, 107, 107, 0.2);
  color: var(--soft-gray);
}

/* === Pricing Section === */
.pricing {
  padding: var(--space-3xl) 0;
  background: white;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.toggle-label {
  font-weight: 600;
  color: var(--soft-gray);
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: rgba(44, 44, 44, 0.2);
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: var(--warm-copper);
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-slider {
  transform: translateX(30px);
}

.discount {
  background: var(--electric-lime);
  color: var(--deep-black);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 4px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.pricing-card {
  background: white;
  border: 2px solid rgba(44, 44, 44, 0.1);
  border-radius: 16px;
  padding: var(--space-xl);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border-color: var(--warm-copper);
  background: rgba(184, 115, 51, 0.02);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warm-copper);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.card-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.card-header h3 {
  margin-bottom: var(--space-md);
  color: var(--deep-black);
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-xs);
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--warm-copper);
  font-family: var(--font-mono);
}

.amount.hidden {
  display: none;
}

.period {
  color: var(--soft-gray);
  font-weight: 500;
}

.card-features {
  margin-bottom: var(--space-xl);
}

.card-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-features li {
  padding: var(--space-xs) 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.card-features li.included {
  color: var(--charcoal);
}

.card-features li.limited {
  color: var(--soft-gray);
}

.card-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.card-footer {
  text-align: center;
}

.ideal-for {
  display: block;
  color: var(--soft-gray);
  font-size: 14px;
  margin-bottom: 4px;
}

.trial-info {
  color: var(--soft-gray);
  font-size: 12px;
}

.pricing-faq {
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-md);
}

.faq-item strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--deep-black);
}

.faq-item p {
  color: var(--soft-gray);
  margin: 0;
}

/* === Testimonials Section === */
.testimonials {
  padding: var(--space-3xl) 0;
  background: var(--warm-white);
}

.testimonials .section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.testimonial-card {
  background: white;
  padding: var(--space-xl);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(44, 44, 44, 0.1);
}

.testimonial-content {
  margin-bottom: var(--space-lg);
}

.testimonial-content p {
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.author-avatar {
  font-size: 2rem;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  color: var(--deep-black);
  margin-bottom: 2px;
}

.author-title {
  font-size: 14px;
  color: var(--soft-gray);
}

.author-results {
  background: var(--electric-lime);
  color: var(--deep-black);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.trust-icon {
  font-size: 1.25rem;
}

.trust-text {
  font-weight: 600;
  color: var(--charcoal);
}

/* === CTA Section === */
.cta {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--deep-black) 0%, var(--charcoal) 100%);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
  color: white;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  margin-bottom: var(--space-xl);
}

.cta-note {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-top: var(--space-md);
}

.cta-proof {
  margin-top: var(--space-xl);
}

.proof-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.avatar {
  font-size: 1.5rem;
}

.proof-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* === Footer === */
.footer {
  padding: var(--space-3xl) 0 var(--space-lg);
  background: var(--deep-black);
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .logo {
  margin-bottom: var(--space-md);
}

.footer-brand .logo-text {
  color: white;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.link-group h4 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: 16px;
}

.link-group a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: var(--space-xs);
  transition: color 0.3s ease;
}

.link-group a:hover {
  color: var(--warm-copper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.disclaimer {
  font-style: italic;
  margin-top: 4px;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--warm-copper);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .feature-demo {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .demo-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    padding: 120px 0 var(--space-xl);
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    justify-content: center;
    text-align: center;
  }
  
  .problems-grid, .platforms-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  .nav-container {
    padding: 0 var(--space-sm);
  }
  
  .hero-actions {
    gap: var(--space-sm);
  }
  
  .btn-hero-primary, .btn-hero-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
}

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

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

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

/* Apply animations on scroll */
.hero-content, .hero-visual {
  animation: fadeInUp 0.8s ease-out;
}

.hero-visual {
  animation-delay: 0.2s;
}

/* === Accessibility === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles */
button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 2px solid var(--warm-copper);
  outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --warm-white: #FFFFFF;
    --charcoal: #000000;
    --soft-gray: #333333;
  }
}