/* ====================================
   CSS Variables - Planroll Color Palette (Firecrawl-Inspired Blue Theme)
   ==================================== */
:root {
  /* Base Colors */
  --background: #0A0E27;
  --background-light: #111827;
  --foreground: #FFFFFF;
  --foreground-muted: #9CA3AF;
  --primary: #60A5FA;
  --secondary: #1E293B;
  --accent: #3B82F6;
  --accent-bright: #60A5FA;
  --accent-hover: #A855F7;
  --border: #1E293B;
  --hover: #1E40AF;
  --hover-text: #FFF;
  
  /* Gradient Colors - Blue Palette */
  --gradient-start: #3B82F6;
  --gradient-mid: #2563EB;
  --gradient-end: #1D4ED8;
  --gradient-accent-start: #A855F7;
  --gradient-accent-end: #EC4899;
  --gradient-light-start: #1E3A8A;
  --gradient-light-end: #1E40AF;
  
  /* Glow Effects */
  --glow-blue: 0 0 20px rgba(59, 130, 246, 0.4), 0 0 40px rgba(59, 130, 246, 0.2);
  --glow-blue-intense: 0 0 30px rgba(59, 130, 246, 0.6), 0 0 60px rgba(59, 130, 246, 0.3), 0 0 90px rgba(59, 130, 246, 0.1);
  --glow-cyan: 0 0 20px rgba(34, 211, 238, 0.4), 0 0 40px rgba(34, 211, 238, 0.2);
  
  /* Spacing */
  --container-width: 1400px;
  --section-padding: 5rem 2rem;
  --header-height: 80px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 8px 24px rgba(59, 130, 246, 0.4);
  
  /* Transitions */
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ====================================
   Keyframe Animations
   ==================================== */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: var(--glow-blue);
  }
  50% {
    box-shadow: var(--glow-blue-intense);
  }
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes matrix-rain {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes border-dance {
  0%, 100% {
    border-color: rgba(59, 130, 246, 0.3);
  }
  50% {
    border-color: rgba(59, 130, 246, 0.6);
  }
}

@keyframes dot-pulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}


/* ====================================
   Reset & Base Styles
   ==================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

/* Animated Background Grid */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
  animation: dot-pulse 4s ease-in-out infinite;
}

/* Matrix-style background effect */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, var(--background) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Ensure content is above pattern */
.header, .hero, .features, .pricing, .value-proposition, .footer, .problem-statement {
  position: relative;
  z-index: 1;
}

/* ====================================
   Typography
   ==================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--foreground);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

/* ====================================
   Utility Classes
   ==================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  position: relative;
  display: inline-block;
  animation: gradient-shift 8s ease infinite;
}

.gradient-text-alt {
  background: linear-gradient(135deg, var(--gradient-accent-start) 0%, var(--gradient-accent-end) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  position: relative;
  display: inline-block;
  animation: gradient-shift 6s ease infinite;
}


.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--foreground-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Matrix ASCII Background */
.matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.4;
}

.matrix-char {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: var(--accent);
  animation: matrix-rain linear infinite;
  text-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
}

/* ====================================
   Buttons
   ==================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-base);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
  background-size: 200% 200%;
  color: white;
  border: none;
  box-shadow: var(--glow-blue);
  position: relative;
  overflow: hidden;
  animation: gradient-shift 8s ease infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-blue-intense);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary > * {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-bright);
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: white;
  border-color: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: var(--glow-blue);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn i {
  width: 18px;
  height: 18px;
}

/* ====================================
   Header
   ==================================== */
.header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 9999px;
  background-color: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(24px);
  max-width: 760px;
  width: calc(100% - 20px);
  z-index: 1000;
  transition: var(--transition-base);
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.header.scrolled {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-height);
  gap: 2rem;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-bright);
  transition: var(--transition-base);
}

.logo-icon {
  width: 32px;
  height: 32px;
  transition: var(--transition-base);
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

.logo-text {
  letter-spacing: -0.02em;
  color: var(--accent-bright);
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.nav-logo a:hover .logo-icon {
  transform: rotate(12deg) scale(1.08);
  filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6));
  animation: pulse-glow 2s ease-in-out infinite;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
}

.nav-toggle i {
  width: 24px;
  height: 24px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  color: var(--foreground);
  position: relative;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-xl);
  transition: var(--transition-base);
  display: inline-block;
}

.nav-link:hover {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--accent-bright);
}

.nav-link.active {
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent-bright);
  font-weight: 600;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
  padding: calc(var(--header-height) + 4rem) 2rem 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.15;
  position: relative;
  animation: fade-in-up 0.8s ease-out;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--foreground-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: fade-in-up 0.8s ease-out 0.2s backwards;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  animation: fade-in-up 0.8s ease-out 0.4s backwards;
}

.hero-cta-note {
  font-size: 0.875rem;
  color: var(--foreground-muted);
  margin-left: 0.5rem;
}

.hero-image {
  position: relative;
  animation: fade-in-up 0.8s ease-out 0.6s backwards;
}

.product-screenshot {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--glow-blue);
  transition: var(--transition-base);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.product-screenshot:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), var(--glow-blue-intense);
}

.hero-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

.feature-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  aspect-ratio: 16/10;
  transition: var(--transition-base);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.feature-showcase-item:hover .feature-screenshot {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), var(--glow-blue);
}

/* ASCII Art Decoration */
.ascii-decoration {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  line-height: 1.2;
  color: rgba(59, 130, 246, 0.2);
  pointer-events: none;
  user-select: none;
  white-space: pre;
}

/* ====================================
   Problem Statement Section
   ==================================== */
.problem-statement {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--background) 0%, var(--background-light) 100%);
  position: relative;
}

.problem-content {
  max-width: 1200px;
  margin: 0 auto;
}

.problem-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 3rem;
  color: var(--foreground);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.problem-item {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.problem-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-blue);
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
}

.problem-item:hover::before {
  transform: scaleX(1);
}

.problem-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-bright);
  transition: var(--transition-base);
  position: relative;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.problem-item:hover .problem-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--glow-blue);
  animation: pulse-glow 2s ease-in-out infinite;
}

.problem-icon i {
  width: 32px;
  height: 32px;
  z-index: 1;
  position: relative;
}

.problem-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
  font-weight: 600;
}

.problem-item p {
  color: var(--foreground-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.problem-solution {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: var(--glow-blue);
}

.solution-text {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.solution-text strong {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  animation: gradient-shift 6s ease infinite;
}

/* ====================================
   Features Section
   ==================================== */
.features {
  padding: var(--section-padding);
  background: var(--background-light);
  position: relative;
}

.feature-showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.feature-showcase-item:last-child {
  margin-bottom: 0;
}

.feature-showcase-item-reverse {
  direction: rtl;
}

.feature-showcase-item-reverse > * {
  direction: ltr;
}

.feature-showcase-image {
  position: relative;
}

.feature-showcase-content {
  padding: 1rem 0;
}

.feature-showcase-title {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--foreground);
}

.feature-showcase-description {
  font-size: 1.125rem;
  color: var(--foreground-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.feature-showcase-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-showcase-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--foreground);
  font-size: 1rem;
  transition: var(--transition-base);
}

.feature-showcase-highlights li:hover {
  transform: translateX(5px);
  color: var(--accent-bright);
}

.feature-showcase-highlights i {
  width: 24px;
  height: 24px;
  color: var(--accent-bright);
  flex-shrink: 0;
}

/* ====================================
   Pricing Section
   ==================================== */
.pricing {
  padding: var(--section-padding);
  background: var(--background);
  position: relative;
}

.pricing-single {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  transition: var(--transition-base);
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: var(--glow-blue);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-blue-intense);
  border-color: var(--accent-bright);
}

.pricing-card-free {
  max-width: 550px;
  width: 100%;
  animation: border-dance 3s ease-in-out infinite;
}

.pricing-badge-free {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 100%);
  color: white;
  padding: 0.625rem 2rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: var(--glow-blue);
  animation: pulse-glow 3s ease-in-out infinite;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.pricing-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gradient-accent-start) 0%, var(--gradient-accent-end) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease infinite;
}

.price-period {
  font-size: 1.125rem;
  color: var(--foreground-muted);
}

.pricing-description {
  color: var(--foreground-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--foreground);
}

.pricing-features i {
  width: 20px;
  height: 20px;
  color: var(--accent-bright);
  flex-shrink: 0;
}

/* ====================================
   Value Proposition Section
   ==================================== */
.value-proposition {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--background-light) 0%, var(--background) 100%);
  color: white;
  position: relative;
}

.value-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.value-title {
  color: white;
  margin-bottom: 1.5rem;
}

.value-description {
  font-size: 1.25rem;
  color: var(--foreground-muted);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.value-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.value-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: var(--transition-base);
}

.value-point:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-blue);
  border-color: var(--accent);
}

.value-point i {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  color: var(--accent-bright);
  flex-shrink: 0;
  transition: var(--transition-base);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.value-point:hover i {
  background: rgba(59, 130, 246, 0.3);
  transform: scale(1.1);
  box-shadow: var(--glow-blue);
}

.value-point h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.value-point p {
  color: var(--foreground-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.value-cta {
  display: flex;
  justify-content: center;
}

/* ====================================
   Footer
   ==================================== */
.footer {
  padding: 4rem 2rem 2rem;
  background: var(--background-light);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.footer-content {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-brand {
  flex: 2;
}

.footer-links {
  flex: 3;
  display: flex;
  gap: 3rem;
}

.footer-column {
  flex: 1;
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: var(--accent-bright);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.footer-brand p {
  color: var(--foreground-muted);
}

.footer-column h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--foreground);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--foreground-muted);
  transition: var(--transition-fast);
}

.footer-column a:hover {
  color: var(--accent-bright);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  text-align: center;
  color: var(--foreground-muted);
  font-size: 0.95rem;
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3rem 1.5rem;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: calc(var(--header-height) + 16px);
    left: 10px;
    right: 10px;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    gap: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  
  .nav-list li {
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  }
  
  .nav-list li:last-child {
    border-bottom: none;
  }
  
  .nav-link {
    display: block;
    padding: 1rem 0;
  }
  
  .nav-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero {
    padding: calc(var(--header-height) + 2rem) 1.5rem 4rem;
    min-height: auto;
  }
  
  .feature-showcase-item {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
  
  .feature-showcase-item-reverse {
    direction: ltr;
  }
  
  .feature-showcase-title {
    font-size: 1.75rem;
  }
  
  .feature-showcase-description {
    font-size: 1rem;
  }
  
  .value-points {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 820px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    flex-direction: row;
    gap: 2rem;
  }
}

@media (max-width: 540px) {
  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .btn-large {
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
}
