/* FloatPlay Website Styles */
/* Modern, professional design with animations and responsive layout */

/* CSS Variables */
:root {
  /* Colors */
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #60a5fa;
  --secondary: #8b5cf6;
  --accent: #06b6d4;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  
  /* Grays */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Background & Text */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-500);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Transitions */
  --transition: all 0.2s ease-in-out;
  --transition-slow: all 0.3s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

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

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: white;
}

.btn-secondary {
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
  transform: translateY(-1px);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Typing caret for hero dynamic word */
#heroDynamicWord {
  position: relative;
}

#heroDynamicWord::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  animation: caretBlink 1s step-end infinite;
  vertical-align: -0.1em;
}

@keyframes caretBlink {
  50% { opacity: 0; }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: var(--transition);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.nav-logo svg {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
}

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

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--primary-dark);
  color: white !important;
}

.nav-mobile {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 120px 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: var(--space-sm) var(--space-lg);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  animation: fadeInRight 1s ease-out 0.5s both;
}

.hero-video-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--gray-100);
}

.hero-video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: var(--transition);
  flex-direction: column;
  gap: var(--space-md);
}

.video-overlay:hover {
  opacity: 1;
}

.video-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--primary);
}

.video-play-btn:hover {
  background: white;
  transform: scale(1.1);
}

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

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

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

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Works Everywhere Section */
.works-everywhere {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--gray-50) 100%);
  overflow: hidden;
}

.platforms-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: var(--space-2xl) 0;
}

.platforms-track {
  display: inline-flex;
  gap: var(--space-2xl);
  animation: scroll-platforms 36s linear infinite;
  width: max-content;
  will-change: transform;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  min-width: 140px;
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.06);
  transition: var(--transition-slow);
  border: 1px solid var(--gray-100);
}
.platform-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.10);
}

.platform-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.platform-logo {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.platform-logo svg {
  width: 32px;
  height: 32px;
}

/* Brand logos */
.brand-logo {
  width: 32px;
  height: 32px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
  transition: transform .2s ease;
}
.platform-item:hover .brand-logo {
  transform: translateY(-2px) scale(1.03);
}

.platform-logo.youtube { color: #ff0000; background: rgba(255, 0, 0, 0.1); }
.platform-logo.netflix { color: #e50914; background: rgba(229, 9, 20, 0.1); }
.platform-logo.twitch { color: #9146ff; background: rgba(145, 70, 255, 0.1); }
.platform-logo.vimeo { color: #1ab7ea; background: rgba(26, 183, 234, 0.1); }
.platform-logo.coursera { color: #0056d3; background: rgba(0, 86, 211, 0.1); }
.platform-logo.udemy { color: #ec5252; background: rgba(236, 82, 82, 0.1); }
.platform-logo.disney { color: #113ccf; background: rgba(17, 60, 207, 0.1); }
.platform-logo.hulu { color: #1ce783; background: rgba(28, 231, 131, 0.1); }

.platform-item span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.platforms-footer {
  text-align: center;
  margin-top: var(--space-2xl);
}

.platforms-footer p {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.platforms-footer strong {
  color: var(--primary);
}

@keyframes scroll-platforms {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* subtle gradient glow behind track */
.platforms-container::before,
.platforms-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}
.platforms-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--works-bg, #f8fafc) 0%, rgba(248,250,252,0) 100%);
}
.platforms-container::after {
  right: 0;
  background: linear-gradient(270deg, var(--works-bg, #f8fafc) 0%, rgba(248,250,252,0) 100%);
}

/* Features Section */
.features {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
}

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

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

.feature-card {
  padding: var(--space-2xl);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  position: relative;
  border: 1px solid var(--gray-100);
  display: flex;
  gap: var(--space-lg);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.feature-icon-wrapper {
  flex-shrink: 0;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-md);
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.feature-highlight {
  margin-top: var(--space-md);
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-md);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Demo Section */
.demo {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

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

.demo-steps {
  margin-top: var(--space-xl);
}

.step {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text h4 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.step-text p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.demo-video {
  display: flex;
  justify-content: center;
}

.video-container {
  width: 100%;
  max-width: 500px;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--gray-900);
}

.demo-video-player {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: contain;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  gap: var(--space-lg);
}

.video-overlay:hover {
  background: rgba(0, 0, 0, 0.8);
}

.video-overlay p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
}

.video-overlay .video-play-btn {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.video-overlay .video-play-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

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

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: -1;
  margin: -2px;
  border-radius: inherit;
}

.pricing-badge {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
  padding: var(--space-md);
  font-weight: 600;
  font-size: 0.875rem;
}

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

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

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

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
}

.period {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.price-description {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.pricing-features {
  padding: 0 var(--space-2xl) var(--space-xl);
}

.feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.feature svg {
  color: var(--success);
  flex-shrink: 0;
}

.feature span {
  color: var(--text-secondary);
}

.pricing-cta {
  display: block;
  margin: 0 var(--space-2xl) var(--space-xl);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: white;
}

.pricing-guarantee {
  text-align: center;
  padding: 0 var(--space-2xl) var(--space-2xl);
  color: var(--text-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: 0;
}

.pricing-guarantee svg {
  color: var(--success);
  flex-shrink: 0;
}

/* FAQ Section */
.faq {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: var(--space-xl);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  user-select: none;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question h4 {
  color: var(--text-primary);
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  flex: 1;
  padding-right: var(--space-lg);
}

.faq-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  background: var(--primary);
  color: white;
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 var(--space-xl) var(--space-xl);
}

.faq-answer p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
  padding-top: var(--space-md);
  border-top: 1px solid var(--gray-100);
}

/* CTA Section */
.cta {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
}

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

.cta-minimal {
  max-width: 600px;
  margin: 0 auto;
}

.cta-minimal h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.cta-minimal p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
}

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-3xl);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: white;
}

.cta-details {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.cta-separator {
  color: var(--gray-300);
}

.cta-trial {
  color: var(--success);
  font-weight: 600;
}

.cta-price {
  color: var(--text-primary);
  font-weight: 600;
}

.cta-cancel {
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: white;
  padding: var(--space-3xl) 0 var(--space-xl);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
}

.footer-logo svg {
  color: var(--primary);
}

.footer-section p {
  color: var(--gray-400);
  margin-bottom: var(--space-lg);
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: white;
}

.footer-section h4 {
  margin-bottom: var(--space-lg);
  color: white;
  font-size: 1rem;
}

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

.footer-section li {
  margin-bottom: var(--space-sm);
}

.footer-section a {
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: var(--space-xl);
  text-align: center;
  color: var(--gray-500);
}

.footer-bottom p {
  margin-bottom: var(--space-sm);
}

/* Legal Modals */
.legal-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: var(--space-lg);
}

.legal-modal.show {
  display: flex;
}

.legal-modal .modal-overlay {
  position: relative;
  background: transparent;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-modal .modal-content {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.legal-modal .modal-header {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.legal-modal .modal-header h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.5rem;
}

.legal-modal .modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--gray-500);
  padding: var(--space-xs);
  line-height: 1;
}

.legal-modal .modal-close:hover {
  color: var(--gray-700);
}

.legal-modal .modal-body {
  padding: 0;
  overflow-y: auto;
  flex: 1;
}

.legal-content {
  padding: var(--space-xl);
  line-height: 1.6;
}

.legal-content h3 {
  color: var(--text-primary);
  font-size: 1.25rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.legal-content h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.legal-content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.legal-content ul, .legal-content ol {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.legal-content li {
  margin-bottom: var(--space-xs);
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--primary-dark);
}

/* Mobile Navigation Active State */
.nav-links.active {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--gray-200);
  z-index: 1000;
}

.nav-links.active a {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--gray-100);
  display: block;
  width: 100%;
}

.nav-links.active a:last-child {
  border-bottom: none;
  margin: var(--space-md);
  text-align: center;
  border-radius: var(--radius-md);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Navigation */
  .nav-links {
    display: none;
  }
  
  .nav-mobile {
    display: block;
  }
  
  /* Typography */
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    justify-content: center;
    gap: var(--space-lg);
  }
  
  /* Works Everywhere */
  .platforms-track {
    animation-duration: 24s;
  }
  
  .platform-item {
    min-width: 120px;
    padding: var(--space-md);
  }
  
  .platform-logo {
    width: 40px;
    height: 40px;
  }
  
  .platform-logo svg, .brand-logo {
    width: 28px;
    height: 28px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }
  
  /* FAQ */
  .faq-question {
    padding: var(--space-lg);
  }
  
  .faq-question h4 {
    font-size: 1rem;
    padding-right: var(--space-md);
  }
  
  .faq-item.active .faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
  }
  
  /* Demo */
  .demo-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  /* Video Fixes for Mobile */
  .hero-video, .demo-video-player {
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: contain;
    max-width: 100%;
  }
  
  .video-container {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-video-container {
    max-width: 100%;
    margin: 0 auto;
  }
  
  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  /* Container spacing */
  .container {
    padding: 0 var(--space-md);
  }
  
  /* Sections */
  .features, .demo, .pricing, .faq, .cta {
    padding: var(--space-2xl) 0;
  }
  
  .hero {
    padding: 100px 0 var(--space-2xl);
  }
  
  /* Legal Modals */
  .legal-modal {
    padding: var(--space-md);
  }
  
  .legal-modal .modal-content {
    max-height: 95vh;
  }
  
  .legal-modal .modal-header {
    padding: var(--space-lg);
  }
  
  .legal-content {
    padding: var(--space-lg);
  }
}

@media (max-width: 480px) {
  /* Typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  /* Hero */
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  /* CTA */
  .cta-minimal h2 {
    font-size: 2rem;
  }
  
  .cta-minimal p {
    font-size: 1rem;
  }
  
  .cta-details {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  
  /* Buttons */
  .btn-primary, .btn-secondary {
    padding: var(--space-md) var(--space-lg);
    font-size: 0.875rem;
  }
  
  /* Video Fixes for Small Mobile */
  .hero-video, .demo-video-player {
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: contain;
  }
} 

/* Universal responsive video wrapper */
.responsive-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--gray-900);
  }
  
.responsive-video > video,
.responsive-video > iframe,
.responsive-video > embed,
.responsive-video > object {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  display: block;
} 