/* ============================================
   24PetLine Landing Page Styles
   ============================================ */

/* CSS Variables */
:root {
  /* Colors - Sky Blue palette (matches Next.js version) */
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-200: #bae6fd;
  --primary-300: #7dd3fc;
  --primary-400: #38bdf8;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --primary-800: #075985;
  --primary-900: #0c4a6e;

  /* Accent - Fuchsia palette */
  --accent-50: #fdf4ff;
  --accent-100: #fae8ff;
  --accent-200: #f5d0fe;
  --accent-400: #e879f9;
  --accent-500: #d946ef;
  --accent-600: #c026d3;
  --accent-700: #a21caf;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-500: #ef4444;
  --red-600: #dc2626;

  --green-100: #dcfce7;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-700: #15803d;

  --white: #ffffff;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --container-narrow: 800px;
  --section-padding: 80px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* Icons */
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

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

.btn-primary {
  background: var(--primary-600);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}

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

.btn-white {
  background: var(--white);
  color: var(--primary-700);
}

.btn-white:hover {
  background: var(--primary-50);
}

.btn-block {
  width: 100%;
}

/* Sections */
.section {
  padding: var(--section-padding) 0;
}

.section-gray {
  background: var(--gray-50);
}

.section-dark {
  background: var(--gray-900);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-600);
  margin-bottom: 16px;
}

.section-label-red {
  color: var(--red-600);
}

.section-label-light {
  color: var(--primary-200);
}

.section-headline {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-headline-light {
  color: var(--white);
}

.section-description {
  font-size: 18px;
  color: var(--gray-600);
}

.section-description-light {
  color: var(--gray-400);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 50%, var(--gray-50) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-200);
  opacity: 0.3;
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-200);
  opacity: 0.2;
  bottom: -100px;
  left: -100px;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary-100);
  color: var(--primary-700);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-badge .icon {
  width: 16px;
  height: 16px;
}

.hero-headline {
  font-size: 56px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: 20px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-trust {
  font-size: 14px;
  color: var(--gray-500);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.phone-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--gray-100);
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.phone-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-avatar .icon {
  width: 24px;
  height: 24px;
  color: var(--primary-600);
}

.phone-title {
  font-weight: 600;
  color: var(--gray-900);
}

.phone-subtitle {
  font-size: 14px;
  color: var(--gray-500);
}

.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 64px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 24px;
}

.wave-bar {
  width: 4px;
  background: var(--primary-400);
  border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 35px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 52px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 28px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 60px; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 42px; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 55px; animation-delay: 0.5s; }
.wave-bar:nth-child(7) { height: 30px; animation-delay: 0.6s; }
.wave-bar:nth-child(8) { height: 48px; animation-delay: 0.7s; }
.wave-bar:nth-child(9) { height: 38px; animation-delay: 0.8s; }
.wave-bar:nth-child(10) { height: 58px; animation-delay: 0.9s; }
.wave-bar:nth-child(11) { height: 25px; animation-delay: 1s; }
.wave-bar:nth-child(12) { height: 50px; animation-delay: 1.1s; }
.wave-bar:nth-child(13) { height: 45px; animation-delay: 1.2s; }
.wave-bar:nth-child(14) { height: 32px; animation-delay: 1.3s; }
.wave-bar:nth-child(15) { height: 55px; animation-delay: 1.4s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

.ai-response {
  display: flex;
  gap: 12px;
}

.ai-avatar {
  width: 32px;
  height: 32px;
  background: var(--primary-600);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-bubble {
  background: var(--primary-50);
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  border-top-left-radius: 4px;
  font-size: 14px;
  color: var(--gray-700);
}

.phone-status {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-500);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
}

.phone-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}

.floating-card-1 {
  top: -16px;
  right: -16px;
}

.floating-card-2 {
  bottom: -16px;
  left: -16px;
  animation-delay: 1s;
}

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

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status-dot-green {
  background: var(--green-500);
}

.status-dot-blue {
  background: var(--primary-500);
}

/* ============================================
   Problem Section
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid var(--gray-100);
}

.stat-card-red {
  border-color: var(--red-100);
  background: linear-gradient(135deg, var(--white) 0%, var(--red-50) 100%);
}

.stat-icon {
  width: 64px;
  height: 64px;
  background: var(--red-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.stat-icon svg {
  width: 32px;
  height: 32px;
  color: var(--red-600);
}

.stat-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--red-600);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.stat-description {
  font-size: 14px;
  color: var(--gray-500);
}

/* Pain Points */
.pain-points {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  max-width: 900px;
  margin: 48px auto 0;
}

.pain-points-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 24px;
}

.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pain-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pain-point-icon {
  width: 24px;
  height: 24px;
  background: var(--red-100);
  color: var(--red-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-point p {
  color: var(--gray-600);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .pain-points {
    padding: 24px;
  }

  .pain-points-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Solution Section
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--gray-50);
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  transition: all var(--transition-base);
}

.benefit-card:hover {
  background: var(--primary-50);
  border-color: var(--primary-100);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--transition-base);
}

.benefit-card:hover .benefit-icon {
  background: var(--primary-600);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-600);
  transition: all var(--transition-base);
}

.benefit-card:hover .benefit-icon svg {
  color: var(--white);
}

.benefit-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.benefit-description {
  font-size: 14px;
  color: var(--gray-600);
}

/* ============================================
   AI + Your Team Section
   ============================================ */
.team-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.team-column {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
}

.team-column-ai {
  border-color: var(--primary-200);
}

.team-column-human {
  border-color: var(--green-200);
}

.team-column-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}

.team-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-column-ai .team-icon {
  background: var(--primary-100);
  color: var(--primary-600);
}

.team-column-human .team-icon {
  background: var(--green-100);
  color: var(--green-600);
}

.team-icon svg {
  width: 24px;
  height: 24px;
}

.team-column-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
}

.team-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
}

.team-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--green-500);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 768px) {
  .team-comparison {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   How It Works Section
   ============================================ */
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 250px;
  text-align: center;
  padding: 24px;
}

.step-number {
  font-size: 64px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
  line-height: 1;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-600);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform var(--transition-base);
}

.step-card:hover .step-icon {
  transform: scale(1.1);
}

.step-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.step-description {
  font-size: 14px;
  color: var(--gray-400);
}

.step-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-500), transparent);
  margin-top: 140px;
  flex-shrink: 0;
}

/* ============================================
   Demo Section
   ============================================ */
.demo-video-wrapper {
  max-width: 800px;
  margin: 0 auto 32px;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gray-900);
}

.demo-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.demo-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-900) 100%);
  cursor: pointer;
  transition: all var(--transition-base);
}

.demo-video-placeholder:hover {
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 100%);
}

.demo-video-placeholder:hover .demo-play-button {
  transform: scale(1.1);
}

.demo-play-button {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform var(--transition-base);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.demo-play-button svg {
  width: 32px;
  height: 32px;
  color: var(--primary-600);
  margin-left: 4px;
}

.demo-placeholder-text {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

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

.demo-cta-note {
  margin-top: 16px;
  color: var(--gray-600);
  font-size: 14px;
}

.demo-cta-note a {
  color: var(--primary-600);
  text-decoration: none;
  font-weight: 500;
}

.demo-cta-note a:hover {
  text-decoration: underline;
}

/* ============================================
   Features Section
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gray-200);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--primary-600);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-600);
  transition: color var(--transition-base);
}

.feature-card:hover .feature-icon svg {
  color: var(--white);
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.feature-description {
  font-size: 14px;
  color: var(--gray-600);
}

/* ============================================
   Integrations Section
   ============================================ */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.integration-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition-base);
}

.integration-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-md);
}

.integration-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.integration-status {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
}

.integration-status-available {
  background: var(--green-100);
  color: var(--green-700);
}

.integration-status-soon {
  background: var(--gray-100);
  color: var(--gray-600);
}

.integrations-note {
  text-align: center;
  color: var(--gray-600);
  font-size: 14px;
}

.integrations-note a {
  color: var(--primary-600);
  text-decoration: none;
  font-weight: 500;
}

.integrations-note a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--gray-200);
  position: relative;
}

.pricing-card-featured {
  border-color: var(--primary-500);
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-600);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.pricing-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 24px;
}

.pricing-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-900);
}

.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-500);
}

.pricing-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-600);
  margin-top: 4px;
}

.pricing-card-featured .pricing-subtitle {
  color: var(--primary-600);
}

.pricing-description {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 8px;
}

.pricing-features {
  margin-bottom: 24px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--green-500);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pricing-overage {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}

.pricing-guarantee {
  text-align: center;
  margin-top: 0;
  font-size: 14px;
  color: var(--gray-500);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition-fast);
}

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

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--gray-500);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */
.section-cta {
  position: relative;
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-500);
  opacity: 0.3;
  top: -200px;
  left: 25%;
}

.cta-blob-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-400);
  opacity: 0.2;
  bottom: -200px;
  right: 25%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-headline {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-subheadline {
  font-size: 18px;
  color: var(--primary-100);
  margin-bottom: 40px;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 24px;
}

.cta-input {
  flex: 1;
  padding: 16px 24px;
  font-family: var(--font-family);
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.cta-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.cta-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 24px;
  border-radius: var(--radius-xl);
  max-width: 480px;
  margin: 0 auto 24px;
  color: var(--white);
  font-size: 18px;
}

.cta-success .icon {
  width: 24px;
  height: 24px;
  color: var(--green-400);
}

.cta-trust {
  font-size: 14px;
  color: var(--primary-200);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 48px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--white);
}

.footer-logo .icon {
  width: 24px;
  height: 24px;
  padding: 4px;
  background: var(--primary-600);
  border-radius: 6px;
}

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

.footer-links a {
  font-size: 14px;
  transition: color var(--transition-fast);
}

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

.footer-copyright {
  font-size: 14px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-subheadline {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .stats-grid,
  .benefits-grid,
  .features-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    flex-wrap: wrap;
  }

  .step-connector {
    display: none;
  }

  .pricing-card-featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .hero-headline {
    font-size: 40px;
  }

  .section-headline {
    font-size: 28px;
  }

  .stats-grid,
  .benefits-grid,
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
  }

  .cta-form {
    flex-direction: column;
  }

  .floating-card {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   Animations (GSAP will enhance these)
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
}
