/* ========================================
   CSS VARIABLES - Existing Color Palette
   ======================================== */
:root {
  --primary: #5c7cfa;
  --primary-dark: #4358c3;
  --secondary: #7bd3c8;
  --accent: #c6a7ff;
  --background: #f5f7fb;
  --text: #1e293b;
  --text-light: rgba(30, 41, 59, 0.75);
  --text-lighter: rgba(30, 41, 59, 0.6);
  --white: #ffffff;
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, var(--background), #eaf6f4 70%);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 60px rgba(92, 124, 250, 0.15);
  backdrop-filter: saturate(180%) blur(16px);
  border-radius: 1.5rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 70px rgba(92, 124, 250, 0.2);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(92, 124, 250, 0.1);
  padding: 1rem 0;
  /* Prevent white line artifacts on mobile */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-brand-text {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.brand-domain {
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 200ms ease;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 200ms ease;
}

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

.nav-link-active {
  color: var(--primary);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 200ms ease;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 200ms ease;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), #7c96ff);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(92, 124, 250, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(92, 124, 250, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(92, 124, 250, 0.1);
  color: var(--primary);
  border: 1.5px solid rgba(92, 124, 250, 0.3);
}

.btn-secondary:hover {
  background: rgba(92, 124, 250, 0.15);
  border-color: var(--primary);
}

.btn-large {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

.btn-nav {
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
}

/* ========================================
   BADGES
   ======================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-live {
  background: linear-gradient(120deg, #10b981, #059669);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.badge-info {
  background: rgba(92, 124, 250, 0.12);
  color: var(--primary);
  border: 1px solid rgba(92, 124, 250, 0.2);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for grid items */
.future-card.animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.future-card.animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.future-card.animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.future-card.animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.future-card.animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.future-card.animate-on-scroll:nth-child(6) { transition-delay: 500ms; }

.timeline-item.animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.timeline-item.animate-on-scroll:nth-child(2) { transition-delay: 150ms; }
.timeline-item.animate-on-scroll:nth-child(3) { transition-delay: 300ms; }
.timeline-item.animate-on-scroll:nth-child(4) { transition-delay: 450ms; }

/* Step cards stagger */
.step-card.animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.step-card.animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.step-card.animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.step-card.animate-on-scroll:nth-child(4) { transition-delay: 300ms; }

/* Feature cards stagger */
.feature-card.animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.feature-card.animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.feature-card.animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.feature-card.animate-on-scroll:nth-child(4) { transition-delay: 300ms; }

/* Plan cards stagger */
.plan-card.animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.plan-card.animate-on-scroll:nth-child(2) { transition-delay: 150ms; }

/* FAQ items stagger */
.faq-item.animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.faq-item.animate-on-scroll:nth-child(2) { transition-delay: 60ms; }
.faq-item.animate-on-scroll:nth-child(3) { transition-delay: 120ms; }
.faq-item.animate-on-scroll:nth-child(4) { transition-delay: 180ms; }
.faq-item.animate-on-scroll:nth-child(5) { transition-delay: 240ms; }
.faq-item.animate-on-scroll:nth-child(6) { transition-delay: 300ms; }
.faq-item.animate-on-scroll:nth-child(7) { transition-delay: 360ms; }
.faq-item.animate-on-scroll:nth-child(8) { transition-delay: 420ms; }

/* Hero visual delay */
.hero-visual.animate-on-scroll { transition-delay: 200ms; }

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  padding: 5rem 0 4rem;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-disclaimer {
  font-size: 0.9rem;
  color: var(--text-lighter);
  line-height: 1.5;
  padding: 1rem;
  background: rgba(92, 124, 250, 0.05);
  border-radius: 0.75rem;
  border-left: 3px solid var(--primary);
  margin: 0;
}

/* Hero Visual Card */
.hero-visual {
  display: flex;
  justify-content: center;
}

.feature-preview-card {
  padding: 2.5rem;
  max-width: 450px;
}

.preview-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.preview-icon-lucide {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-preview-card:hover .preview-icon-lucide {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(92, 124, 250, 0.35);
}

.preview-icon-lucide svg {
  width: 32px;
  height: 32px;
  stroke: white;
  stroke-width: 2;
}

.tag-icon {
  width: 14px;
  height: 14px;
  stroke-width: 2;
  margin-right: 4px;
  vertical-align: -2px;
}

.preview-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
}

.preview-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0 0 1.5rem;
}

.preview-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.preview-tag {
  padding: 0.4rem 0.9rem;
  background: linear-gradient(120deg, var(--primary), #7c96ff);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(120deg, #f59e0b, #ef4444);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
  padding: 4rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.feature-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.feature-icon-lucide {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  margin: 0 auto 1rem auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon-lucide {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(92, 124, 250, 0.3);
}

.feature-icon-lucide svg {
  width: 28px;
  height: 28px;
  stroke: white;
  stroke-width: 2;
}

.feature-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

/* ========================================
   MOBILE APPS SECTION
   ======================================== */
.mobile-apps-section {
  padding: 4rem 0;
}

.mobile-apps-card {
  padding: 3rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.mobile-apps-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-apps-icon {
  font-size: 4rem;
  line-height: 1;
}

.mobile-apps-icon-lucide {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-apps-card:hover .mobile-apps-icon-lucide {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(92, 124, 250, 0.35);
}

.mobile-apps-icon-lucide svg {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 2;
}

.mobile-apps-title {
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.mobile-apps-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 700px;
}

.mobile-apps-platforms {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: rgba(92, 124, 250, 0.08);
  border: 2px solid rgba(92, 124, 250, 0.15);
  border-radius: 1rem;
  transition: all 200ms ease;
}

.platform-badge:hover {
  background: rgba(92, 124, 250, 0.12);
  border-color: rgba(92, 124, 250, 0.3);
  transform: translateY(-2px);
}

.platform-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.platform-icon-lucide {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(92, 124, 250, 0.1);
  border-radius: 12px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.platform-badge:hover .platform-icon-lucide {
  background: rgba(92, 124, 250, 0.2);
  transform: scale(1.05);
}

.platform-icon-lucide svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  stroke-width: 2;
}

.platform-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.platform-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.platform-status {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--warning);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mobile-apps-cta {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  margin: 0.5rem 0 0;
}

/* ========================================
   BETA SECTION
   ======================================== */
.beta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(92, 124, 250, 0.03), rgba(123, 211, 200, 0.03));
}

.beta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.beta-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.beta-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 0 2rem;
}

.beta-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.beta-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Beta Form */
.beta-form-container {
  padding: 2.5rem;
  position: sticky;
  top: 100px;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.5rem;
}

.beta-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.form-input {
  padding: 0.9rem 1.2rem;
  border: 2px solid rgba(92, 124, 250, 0.2);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  transition: all 200ms ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(92, 124, 250, 0.1);
}

.form-input::placeholder {
  color: var(--text-lighter);
}

.checkbox-group {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text);
}

.form-checkbox {
  margin-top: 0.15rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
}

.checkbox-text {
  line-height: 1.5;
}

.form-message {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  margin: 0;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-privacy {
  font-size: 0.85rem;
  color: var(--text-lighter);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

/* ========================================
   ROADMAP SECTION
   ======================================== */
.roadmap-section {
  padding: 5rem 0;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.roadmap-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.roadmap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.roadmap-icon {
  font-size: 3rem;
}

.roadmap-badge {
  padding: 0.4rem 0.9rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.roadmap-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.roadmap-timeline {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.roadmap-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.roadmap-features li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
}

.roadmap-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(198, 167, 255, 0.05), rgba(123, 211, 200, 0.05));
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  padding: 0;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1.25rem;
  border: 1px solid rgba(92, 124, 250, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(92, 124, 250, 0.25);
  box-shadow: 0 4px 20px rgba(92, 124, 250, 0.1);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(92, 124, 250, 0.05);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

/* ========================================
   FEEDBACK SECTION
   ======================================== */
.feedback-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(198, 167, 255, 0.05), rgba(92, 124, 250, 0.05));
}

.feedback-card {
  padding: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feedback-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.feedback-header {
  text-align: center;
}

.feedback-icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.feedback-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
}

.feedback-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
}

.feedback-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feedback-option {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  border: 1px solid rgba(92, 124, 250, 0.1);
  transition: all 200ms ease;
}

.feedback-option:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(92, 124, 250, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(92, 124, 250, 0.15);
}

.option-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.option-content {
  flex: 1;
}

.option-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.option-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

.feedback-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.feedback-cta .btn {
  display: inline-flex;
  align-items: center;
}

.feedback-note {
  font-size: 0.9rem;
  color: var(--text-lighter);
  margin: 0;
}

/* ========================================
   DISCLAIMER SECTION
   ======================================== */
.disclaimer-section {
  padding: 3rem 0;
}

.disclaimer-box {
  padding: 2rem;
  background: rgba(239, 68, 68, 0.05);
  border: 1.5px solid rgba(239, 68, 68, 0.2);
  border-radius: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
  text-align: center;
}

.disclaimer-text strong {
  color: var(--error);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(92, 124, 250, 0.1);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 36px;
  height: 36px;
}

.footer-brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.footer-text {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0 0 1.5rem;
}

.footer-crisis {
  font-size: 0.9rem;
  color: var(--text-lighter);
  margin: 0;
  line-height: 1.6;
}

.footer-crisis strong {
  color: var(--text);
  font-weight: 600;
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--primary), #7c96ff);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(92, 124, 250, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 300ms ease;
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(92, 124, 250, 0.4);
}

.scroll-to-top:active {
  transform: translateY(-1px);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(92, 124, 250, 0.03), rgba(123, 211, 200, 0.05));
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(120deg, var(--primary), #7c96ff);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 20px rgba(92, 124, 250, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(92, 124, 250, 0.4);
}

.step-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.step-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

.step-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.step-link:hover {
  text-decoration: underline;
}

/* ========================================
   PREMIUM / PRICING SECTION
   ======================================== */
.premium-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(198, 167, 255, 0.05), rgba(92, 124, 250, 0.05));
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.plan-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.plan-card-premium {
  background: linear-gradient(135deg, rgba(198, 167, 255, 0.15), rgba(92, 124, 250, 0.1));
  border: 2px solid rgba(198, 167, 255, 0.3);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.plan-card-premium:hover {
  border-color: rgba(198, 167, 255, 0.5);
  box-shadow: 0 25px 70px rgba(198, 167, 255, 0.25);
}

.plan-header {
  text-align: center;
}

.plan-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.plan-badge-free {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

.plan-badge-premium {
  background: linear-gradient(120deg, var(--accent), #a78bfa);
  color: var(--white);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
}

.plan-price-premium {
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.plan-price-premium .price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-lighter);
}

.plan-description {
  font-size: 0.95rem;
  color: var(--text-light);
  text-align: center;
  margin: 0;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.4;
}

.feature-check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.feature-check svg {
  width: 18px;
  height: 18px;
  stroke: var(--success);
  stroke-width: 2.5;
}

.feature-check-premium svg {
  stroke: var(--accent);
}

.plan-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan-note {
  font-size: 0.8rem;
  color: var(--text-lighter);
  text-align: center;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.plan-note-icon {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

.premium-code-info {
  padding: 1.5rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.code-info-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.code-info-text {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.code-info-subtext {
  font-size: 0.85rem;
  color: var(--text-lighter);
  margin: 0.75rem 0 0;
}

.code-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.code-link:hover {
  text-decoration: underline;
}

/* ========================================
   PSYCHOLOGISTS SECTION
   ======================================== */
.psychologists-section {
  padding: 4rem 0;
}

.psychologists-card {
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.psychologists-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.psychologists-icon {
  font-size: 4rem;
  line-height: 1;
}

.psychologists-title {
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.psychologists-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 650px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(123, 211, 200, 0.05), rgba(92, 124, 250, 0.03));
}

.about-page-hero {
  padding-top: 5rem;
}

/* ========================================
   VISION HERO SECTION
   ======================================== */
.vision-hero-section {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, rgba(92, 124, 250, 0.08), rgba(198, 167, 255, 0.08));
  text-align: center;
}

.vision-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.vision-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(120deg, var(--primary), #7c96ff);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.vision-title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.vision-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

/* ========================================
   GAMECHANGER SECTION
   ======================================== */
.gamechanger-section {
  padding: 4rem 0;
}

.gamechanger-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.gamechanger-problem,
.gamechanger-solution {
  padding: 2rem;
}

.gamechanger-problem {
  border: 2px solid rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.03);
}

.gamechanger-solution {
  border: 2px solid rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.03);
}

.gamechanger-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.25rem;
}

.gamechanger-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gamechanger-list li {
  font-size: 0.95rem;
  color: var(--text-light);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.gamechanger-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--error);
  font-weight: 700;
}

.gamechanger-list-positive li::before {
  content: "✓";
  color: var(--success);
}

/* ========================================
   TIMELINE ROADMAP
   ======================================== */
.roadmap-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-marker {
  width: 50px;
  height: 50px;
  background: rgba(92, 124, 250, 0.15);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
  z-index: 1;
}

.timeline-marker-done {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}

.timeline-marker-active {
  background: linear-gradient(120deg, var(--primary), #7c96ff);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(92, 124, 250, 0.2);
  animation: timeline-pulse 2s ease-in-out infinite;
}

@keyframes timeline-pulse {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(92, 124, 250, 0.2);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(92, 124, 250, 0.1);
  }
}

.timeline-content {
  flex: 1;
  padding: 1.75rem;
}

.timeline-phase {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(92, 124, 250, 0.1);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.timeline-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
}

.timeline-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.timeline-features li {
  font-size: 0.95rem;
  color: var(--text-light);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.timeline-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ========================================
   FUTURE FEATURES GRID
   ======================================== */
.future-features-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(123, 211, 200, 0.05), rgba(92, 124, 250, 0.05));
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.future-card {
  padding: 1.75rem;
  text-align: center;
}

.future-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.future-icon-lucide {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  margin: 0 auto 1rem auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.future-card:hover .future-icon-lucide {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(92, 124, 250, 0.3);
}

.future-icon-lucide svg {
  width: 28px;
  height: 28px;
  stroke: white;
  stroke-width: 2;
}

.future-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.future-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

.about-card {
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-title {
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
  text-align: center;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  text-align: center;
}

.beliefs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.belief-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  border: 1px solid rgba(92, 124, 250, 0.1);
}

.belief-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}

.belief-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

.belief-text strong {
  color: var(--text);
}

/* ========================================
   FOOTER LINKS
   ======================================== */
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 200ms ease;
}

.footer-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.footer-divider {
  color: var(--text-lighter);
}

.footer-crisis-info {
  margin-top: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-crisis-line {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.footer-crisis-line strong {
  color: var(--text);
}

.footer-crisis-intl {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-lighter);
}

.footer-crisis-intl a {
  color: var(--primary);
  text-decoration: none;
}

.footer-crisis-intl a:hover {
  text-decoration: underline;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-page {
  padding: 2rem 0 3rem;
  min-height: calc(100vh - 80px);
  background: var(--bg-light);
}

.legal-content {
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.legal-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(92, 124, 250, 0.15);
}

.legal-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.legal-updated {
  font-size: 0.95rem;
  color: var(--text-lighter);
  margin: 0;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
}

.legal-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.25rem 0 0.75rem;
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 0 1rem;
}

.legal-section ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.legal-section li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.legal-section a {
  color: var(--primary);
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

.important-notice {
  background: rgba(245, 158, 11, 0.08);
  border: 1.5px solid rgba(245, 158, 11, 0.25);
  border-radius: 1rem;
  padding: 1.5rem;
}

.important-notice h2 {
  color: var(--warning);
}

.crisis-notice {
  background: rgba(239, 68, 68, 0.05);
  border: 1.5px solid rgba(239, 68, 68, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
}

.crisis-notice h2 {
  color: var(--error);
}

.crisis-resources {
  margin-top: 1rem;
}

.crisis-resources h3 {
  margin-top: 1rem;
}

.contact-info {
  font-size: 1.1rem;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 968px) {
  .hero-content,
  .beta-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
  }

  .feature-preview-card {
    max-width: 100%;
  }

  .beta-form-container {
    position: static;
  }

  .features-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem;
    text-align: center;
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .premium-features {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(92, 124, 250, 0.1);
    box-shadow: 0 10px 30px rgba(92, 124, 250, 0.1);
    transform: translateY(-120%);
    transition: transform 300ms ease;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }

  .btn-nav {
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-section {
    padding: 3rem 0 2rem;
    min-height: auto;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .badge-group {
    flex-direction: column;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .features-section,
  .mobile-apps-section,
  .beta-section,
  .roadmap-section,
  .faq-section,
  .feedback-section,
  .how-it-works-section,
  .premium-section,
  .psychologists-section,
  .about-section {
    padding: 3rem 0;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .step-card {
    padding: 1.5rem;
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .plan-card {
    padding: 2rem;
  }
  
  .psychologists-card,
  .about-card {
    padding: 2rem;
  }
  
  .legal-content {
    padding: 1.5rem;
  }
  
  .legal-page {
    padding: 1.5rem 0;
  }
  
  .legal-section h2 {
    font-size: 1.15rem;
  }
  
  .legal-section h3 {
    font-size: 1rem;
  }
  
  .legal-section p,
  .legal-section li {
    font-size: 0.95rem;
  }
  
  .beliefs-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gamechanger-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .future-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .roadmap-timeline::before {
    left: 20px;
  }
  
  .timeline-marker {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .timeline-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .future-grid {
    grid-template-columns: 1fr;
  }

  .mobile-apps-card,
  .feedback-card {
    padding: 2.5rem;
  }

  .feedback-options {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .roadmap-card {
    padding: 2rem;
  }

  .faq-item {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .feature-preview-card {
    padding: 1.5rem;
  }

  .preview-icon {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }

  .beta-form-container {
    padding: 1.5rem;
  }

  .mobile-apps-card,
  .feedback-card {
    padding: 1.5rem;
  }

  .mobile-apps-platforms {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .platform-badge {
    width: 100%;
    justify-content: center;
  }

  .feedback-option {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .feedback-cta .btn {
    font-size: 0.9rem;
    padding: 0.85rem 1.25rem;
  }

  .scroll-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
  
  /* Pricing on mobile */
  .plan-card {
    padding: 1.5rem;
  }
  
  .plan-name {
    font-size: 1.25rem;
  }
  
  .price-amount {
    font-size: 1.75rem;
  }
  
  .plan-features li {
    font-size: 0.9rem;
  }
  
  /* Steps on mobile */
  .step-card {
    padding: 1.25rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .step-title {
    font-size: 1rem;
  }
  
  .step-description {
    font-size: 0.9rem;
  }
  
  /* Premium code info */
  .premium-code-info {
    padding: 1.25rem;
  }
  
  .code-info-title {
    font-size: 1rem;
  }
  
  /* FAQ on mobile */
  .faq-question {
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
  }
  
  .faq-answer {
    font-size: 0.9rem;
    padding: 0 1.5rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
  }
  
  /* Beta section */
  .beta-title {
    font-size: 1.5rem;
  }
  
  .beta-description {
    font-size: 1rem;
  }
  
  /* Vision hero on mobile */
  .vision-title {
    font-size: 1.75rem;
  }
  
  .vision-subtitle {
    font-size: 1rem;
  }
  
  /* Timeline on mobile */
  .timeline-content {
    padding: 1.25rem;
  }
  
  .timeline-title {
    font-size: 1.1rem;
  }
  
  .timeline-features li {
    font-size: 0.9rem;
  }
  
  /* Future cards */
  .future-card {
    padding: 1.25rem;
    text-align: center;
  }
  
  .future-icon {
    font-size: 2rem;
  }
  
  .future-title {
    font-size: 1rem;
  }
  
  /* Legal pages mobile */
  .legal-page {
    padding: 1rem 0;
  }
  
  .legal-content {
    padding: 1.25rem;
    border-radius: 1rem;
  }
  
  .legal-title {
    font-size: 1.5rem;
  }
  
  .legal-section h2 {
    font-size: 1.1rem;
  }
  
  .legal-section h3 {
    font-size: 0.95rem;
  }
  
  .legal-section p,
  .legal-section li {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .crisis-resources h3 {
    font-size: 1rem;
  }
  
  .contact-info {
    word-break: break-all;
  }
}
