/* vidumidu.com - Static Website Styles */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --background: #0a0a0f;
  --surface: #12121a;
  --surface-light: #1a1a24;
  --border: #2a2a3a;
  --border-light: #3a3a4a;
  --primary: #6366f1;
  --primary-light: #818cf8;
  --primary-dark: #4f46e5;
  --secondary: #22d3ee;
  --accent: #f472b6;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --text: #e5e5e5;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-hero: linear-gradient(135deg, #06b6d4, #8b5cf6, #f59e0b);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  background: linear-gradient(to bottom, var(--background), transparent);
  animation: fadeInDown 0.8s ease-out;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.nav-logo-text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.nav-badge {
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: white;
}

.nav-link.active {
  color: var(--secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-white {
  background: white;
  color: black;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), rgba(10, 10, 15, 0.6) 50%, rgba(10, 10, 15, 0.4));
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 15, 0.8), transparent, rgba(10, 10, 15, 0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  margin-bottom: 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title-gradient {
  background: linear-gradient(135deg, #06b6d4, #a855f7, #f59e0b);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient 3s ease infinite;
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle strong {
  color: white;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.5);
}

/* Stats Section */
.stats {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* Section Styles */
.section {
  padding: 128px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-label.cyan { color: #06b6d4; }
.section-label.purple { color: #a855f7; }
.section-label.amber { color: #f59e0b; }
.section-label.secondary { color: var(--secondary); }
.section-label.primary { color: var(--primary); }

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 24px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* How It Works */
.steps-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.step-card {
  position: relative;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all 0.5s;
}

.step-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.step-image {
  position: relative;
  height: 192px;
  overflow: hidden;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.step-card:hover .step-image img {
  transform: scale(1.05);
}

.step-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), transparent);
}

.step-number {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 36px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
}

.step-content {
  padding: 24px;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s;
}

.step-card:hover .step-icon {
  transform: scale(1.1);
}

.step-icon.cyan { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.step-icon.purple { background: linear-gradient(135deg, #a855f7, #ec4899); }
.step-icon.amber { background: linear-gradient(135deg, #f59e0b, #ea580c); }

.step-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.step-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Features */
.feature-row {
  display: grid;
  gap: 64px;
  align-items: center;
  margin-bottom: 160px;
}

@media (min-width: 1024px) {
  .feature-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-row.reverse .feature-image {
    order: 2;
  }
}

.feature-image {
  position: relative;
}

.feature-image-wrapper {
  position: relative;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-badge {
  position: absolute;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
}

.feature-badge.cyan {
  bottom: -16px;
  right: -16px;
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #06b6d4;
}

.feature-badge.purple {
  top: -16px;
  left: -16px;
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #a855f7;
  animation-delay: 1s;
}

.feature-badge.amber {
  bottom: -16px;
  right: -16px;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
  animation-delay: 0.5s;
}

.feature-content .section-label {
  text-align: left;
}

.feature-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.feature-title span {
  display: block;
}

.feature-title .cyan { color: #06b6d4; }
.feature-title .purple { color: #a855f7; }
.feature-title .amber { color: #f59e0b; }

.feature-desc {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}

.feature-list-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-list-icon.cyan { background: rgba(6, 182, 212, 0.2); }
.feature-list-icon.cyan svg { color: #06b6d4; }
.feature-list-icon.purple { background: rgba(168, 85, 247, 0.2); }
.feature-list-icon.purple svg { color: #a855f7; }
.feature-list-icon.amber { background: rgba(245, 158, 11, 0.2); }
.feature-list-icon.amber svg { color: #f59e0b; }

.feature-list-icon svg {
  width: 14px;
  height: 14px;
}

/* Showcase Gallery */
.showcase-large {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.showcase-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s;
}

.showcase-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.showcase-item.large {
  aspect-ratio: 21/9;
}

.showcase-item img,
.showcase-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-item video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.showcase-item:hover video {
  opacity: 1;
}

.showcase-item:hover img {
  opacity: 0;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), transparent);
  opacity: 0.6;
}

.showcase-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.showcase-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.showcase-style {
  font-size: 14px;
  color: var(--text-muted);
}

.showcase-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s;
}

.showcase-item:hover .showcase-play {
  opacity: 1;
  transform: scale(1);
}

.showcase-play svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .showcase-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.showcase-item.small {
  aspect-ratio: 9/16;
}

.showcase-item.small .showcase-info {
  bottom: 16px;
  left: 16px;
  right: 16px;
}

.showcase-item.small .showcase-title {
  font-size: 14px;
}

.showcase-item.small .showcase-style {
  font-size: 12px;
}

.showcase-item.small .showcase-play {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
}

.showcase-item.small .showcase-play svg {
  width: 12px;
  height: 12px;
}

/* Why Choose Us */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all 0.3s;
}

.benefit-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.3s;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-icon.yellow svg { color: #facc15; }
.benefit-icon.green svg { color: #4ade80; }
.benefit-icon.blue svg { color: #60a5fa; }
.benefit-icon.purple svg { color: #c084fc; }

.benefit-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background: var(--background);
}

.testimonials-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
}

.testimonials-glow.purple {
  top: 25%;
  left: 25%;
  width: 600px;
  height: 600px;
  background: rgba(168, 85, 247, 0.1);
}

.testimonials-glow.cyan {
  bottom: 25%;
  right: 25%;
  width: 500px;
  height: 500px;
  background: rgba(6, 182, 212, 0.08);
}

.testimonial-card {
  position: relative;
  padding: 32px 48px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 896px;
  margin: 0 auto;
}

.testimonial-quote-icon {
  position: absolute;
  top: 24px;
  right: 32px;
  opacity: 0.2;
}

.testimonial-quote-icon svg {
  width: 64px;
  height: 64px;
  color: var(--secondary);
}

.testimonial-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .testimonial-inner {
    flex-direction: row;
    align-items: flex-start;
  }
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(34, 211, 238, 0.3);
}

@media (min-width: 768px) {
  .testimonial-avatar {
    width: 96px;
    height: 96px;
  }
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: #fbbf24;
  fill: #fbbf24;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .testimonial-text {
    font-size: 20px;
  }
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .testimonial-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.testimonial-author {
  font-weight: 600;
}

.testimonial-role {
  font-size: 14px;
  color: var(--text-muted);
}

.testimonial-metric {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.2);
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-nav-btn svg {
  width: 20px;
  height: 20px;
  color: white;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-dot.active {
  width: 32px;
  background: var(--secondary);
}

.testimonial-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Pricing */
.pricing-card {
  position: relative;
  padding: 32px 48px;
  border-radius: 24px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 640px;
  margin: 0 auto;
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--gradient-primary);
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-amount {
  font-size: 48px;
  font-weight: 700;
}

.pricing-period {
  color: var(--text-muted);
}

.pricing-subtitle {
  color: var(--text-muted);
  margin-top: 8px;
}

.pricing-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-feature-icon svg {
  width: 12px;
  height: 12px;
  color: var(--secondary);
}

.pricing-feature span {
  color: var(--text-muted);
  font-size: 14px;
}

.pricing-cta {
  width: 100%;
}

.pricing-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
  margin-top: 16px;
}

/* Final CTA */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--background), #0d0d18, var(--background));
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(34, 211, 238, 0.15), rgba(99, 102, 241, 0.2));
  border-radius: 50%;
  filter: blur(150px);
  animation: pulse 8s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-title {
  font-size: clamp(32px, 6vw, 64px);
  margin-bottom: 24px;
}

.cta-desc {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
}

/* Footer */
.footer {
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.footer-logo-text {
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-link {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: white;
}

.footer-copy {
  color: var(--text-dim);
  font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes pulse {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.5;
  }
}

/* Utility Classes */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Investor Relations Page */
.investor-hero {
  padding: 160px 0 80px;
  text-align: center;
}

.investor-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 24px;
}

.investor-hero p {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.investor-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.investor-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .investor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .investor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.investor-card {
  padding: 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.investor-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.investor-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.investor-card-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.investor-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.investor-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.investor-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .investor-highlights {
    grid-template-columns: repeat(4, 1fr);
  }
}

.investor-highlight {
  text-align: center;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.investor-highlight-value {
  font-size: 36px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.investor-highlight-label {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 8px;
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Responsive */
@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .pricing-features {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 24px;
  }
}

