* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --light-gray: #f8fafc;
  --medium-gray: #64748b;
  --dark-gray: #0f172a;
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --gold: #fde047;
  --gold-light: #fef08a;
  --gold-dark: #facc15;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --text-on-gold: #000000;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow: 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);
  --gradient-modern: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  --gradient-gold: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
}

@keyframes goldShimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.gold-gradient {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  background-size: 200% 200%;
  animation: goldShimmer 3s ease-in-out infinite;
}

.gold-gradient-static {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.signup-counter {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

#signup-count {
  font-weight: 600;
  color: var(--accent-blue);
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  font-weight: 400;
  letter-spacing: -0.01em;
  overscroll-behavior-x: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }
}

.navbar {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 1);
}

.btn-nav-cta {
  background: var(--gradient-gold);
  color: var(--text-on-gold) !important;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  opacity: 1;
}

.btn-nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-nav-cta:hover::before {
  left: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.brand-logo {
  height: 32px;
  width: auto;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

.hero {
  background: #0f172a;
  padding: 160px 0 120px 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-text h2 {
  color: var(--white);
}

.hero-text p {
  color: rgba(255, 255, 255, 0.8);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 100%;
}

.hero-text h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-text p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 90%;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-signup-counter {
  display: flex;
  align-items: center;
}

.counter-badge {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.counter-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: shimmerSlide 4s infinite;
}

.counter-badge:hover {
  background: rgba(255, 255, 255, 0.12);
}

.counter-number {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  min-width: 30px;
  text-align: center;
}

.counter-text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-gold);
  background-size: 200% 200%;
  color: var(--text-on-gold);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(253, 224, 71, 0.3);
  border: none;
  transform: translateY(0);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  animation: goldShimmer 1.5s ease-in-out infinite;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(253, 224, 71, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-dark);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: translateY(0);
}

.btn-secondary:hover {
  background: var(--gradient-gold);
  color: var(--text-on-gold);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(253, 224, 71, 0.2);
  border-color: transparent;
}

.btn-large {
  padding: 20px 40px;
  font-size: 20px;
}

.hero-image img {
  width: 100%;
  transform: scale(1.2);
}

.problem-solution {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  padding: 120px 0;
  position: relative;
}

.problem-solution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at bottom, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.problem-solution .section-header h3,
.problem-solution .section-header p {
  color: var(--text-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h3 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.problem-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  margin-top: 80px;
}

.problem-point {
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 48px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid #bbc5da;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.problem-point:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.4);
}

.problem-point img {
  width: 80px;
  height: 80px;
  display: block;
  margin: auto;
  margin-bottom: 20px;
}

.problem-point h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.problem-point p {
  color: var(--text-light);
  font-size: 16px;
}

.how-it-works {
  background-color: var(--white);
  position: relative;
  padding-top: 80px;
}

.sticky-cards-container {
  position: relative;
}

.sticky-card {
  height: 100vh;
  max-height: 900px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  padding: 60px 0;
}

.sticky-card:nth-child(1) {
  background-color: var(--dark-gray);
}

.sticky-card:nth-child(1) .step-content h4,
.sticky-card:nth-child(1) .step-content p {
  color: var(--white);
}

.sticky-card:nth-child(2) {
  background-color: var(--white);
}

.sticky-card:nth-child(2) .step-content h4,
.sticky-card:nth-child(2) .step-content p {
  color: var(--text-dark);
}

.sticky-card:nth-child(3) {
  background-color: var(--dark-gray);
}

.sticky-card:nth-child(3) .step-content h4,
.sticky-card:nth-child(3) .step-content p {
  color: var(--white);
}

.card-content {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.sticky-card:nth-child(3) .card-content {
  color: var(--white);
}

.sticky-card:nth-child(3) .step-content h4,
.sticky-card:nth-child(3) .step-content p {
  color: var(--white);
}

.card-text {
  padding: 60px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  color: var(--text-on-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 32px;
  box-shadow: 0 8px 25px rgba(253, 224, 71, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-content h4 {
  font-size: 36px;
  font-weight: 900;
  color: inherit;
  margin-bottom: 24px;
  line-height: 1.2;
}

.step-content p {
  color: inherit;
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.9;
}

.card-visual {
  padding: 60px;
}

.card-visual img {
  width: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-visual img:hover {
  transform: scale(1.05) rotate(1deg);
}

.analytics-showcase {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 120px 0;
  position: relative;
}

.analytics-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.analytics-showcase .section-header h3,
.analytics-showcase .section-header p {
  color: var(--text-dark);
}

.insights-container {
  margin-top: 80px;
  max-width: 100%;
}

.insights-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  position: sticky;
  top: 65px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.insight-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-right: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  flex: 1;
  transform: translateY(0);
  min-height: 80px;
  position: relative;
}

.insight-tab:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.insight-tab:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.insight-tab+.insight-tab {
  border-left: none;
}

@media (max-width: 768px) {
  .insights-tabs {
    position: static !important;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
    padding: 16px;
    top: auto !important;
    z-index: auto !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
  }

  .insight-tab {
    flex-direction: column;
    gap: 4px;
    padding: 16px 12px;
    min-height: 70px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
  }

  .insight-tab:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }

  .insight-tab:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }

  .insight-tab+.insight-tab {
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
}

.insight-tab:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: none;
  z-index: 1;
}

.insight-tab.active {
  background: var(--gradient-gold);
  color: var(--text-on-gold);
  z-index: 2;
  transform: none;
  border-color: var(--gold);
}


.tab-text {
  flex: 1;
}

.tab-text h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: inherit;
  line-height: 1.3;
}

.tab-text p {
  font-size: 13px;
  margin: 0;
  opacity: 0.7;
  color: inherit;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .tab-text h5 {
    font-size: 15px;
  }

  .tab-text p {
    font-size: 12px;
  }
}

.insights-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto;
  max-width: 1100px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .insights-content {
    padding: 32px 24px;
  }
}

.insight-panel {
  display: none;
}

.insight-panel.active {
  display: block;
}

.insight-content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 400px;
}

@media (max-width: 768px) {
  .insight-content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    min-height: auto;
  }
}

.insight-value {
  margin-bottom: 32px;
}

.insight-text h4 {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.insight-benefit {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
  font-weight: 400;
}

.insight-visual img {
  width: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.insight-visual img:hover {
  transform: scale(1.05);
}

.insight-outcomes {
  margin: 32px 0;
}

.outcome-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding-left: 24px;
}

.outcome-item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 20px;
}

.insight-example {
  background: rgba(253, 224, 71, 0.1);
  border: 1px solid rgba(253, 224, 71, 0.2);
  color: var(--text-dark);
  padding: 20px;
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  margin-top: 24px;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.analytics-main {
  display: flex;
}

.analytics-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.analytics-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.3);
}

.analytics-card.featured {
  flex: 1;
  margin-bottom: 0;
}

.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.metric-header h4 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

.metric-value {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
}

.metric-details {
  margin-bottom: 24px;
}

.metric-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.metric-label {
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
}

.metric-bar {
  flex: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  background-color: var(--light-gray);
  height: 8px;
  margin-left: 20px;
}

.bar-fill {
  background-color: var(--gold);
  height: 100%;
  transition: width 0.8s ease;
}

.bar-value {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 14px;
  min-width: 35px;
}

.insight-tag {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-on-gold);
  position: relative;
  overflow: hidden;
}

.insight-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmerSlide 2s infinite;
}

@keyframes shimmerSlide {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.analytics-sidebar {
  display: flex;
  flex-direction: column;
}

.analytics-card h5 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 16px 0;
}

.alert-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.alert-dot {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  flex-shrink: 0;
}

.high-risk .alert-dot {
  background-color: #ef4444;
}

.medium-risk .alert-dot {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
}

.revenue-metric {
  text-align: center;
}

.revenue-amount {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.revenue-label {
  font-size: 14px;
  color: var(--text-light);
}

.response-rate {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rate-circle {
  width: 60px;
  height: 60px;
  background-color: var(--gold);
  color: var(--text-on-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}

.response-rate span:last-child {
  font-size: 14px;
  color: var(--text-light);
}

.waitlist {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.waitlist-content h3,
.waitlist-content p {
  color: var(--white);
}

.waitlist-content h3 {
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
}

.waitlist-content p {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist .btn-primary {
  background: var(--gradient-gold);
  background-size: 200% 200%;
  color: var(--text-on-gold);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(253, 224, 71, 0.3);
  border: none;
  transform: translateY(0);
}

.waitlist .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.waitlist .btn-primary:hover::before {
  left: 100%;
}

.waitlist .btn-primary:hover {
  animation: goldShimmer 1.5s ease-in-out infinite;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(253, 224, 71, 0.4);
}

.waitlist-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group input,
.form-group select {
  padding: 16px;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background-color: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgb(253 224 71 / 0.2);
}

footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 36px;
  }

  .hero-text p {
    max-width: 100%;
  }

  .hero-image img {
    transform-origin: top;
  }

  .sticky-card {
    min-height: auto;
    position: static;
    padding: 60px 0;
  }

  .card-content {
    grid-template-columns: 1fr !important;
    gap: 30px;
    text-align: center;
  }

  .card-text,
  .card-visual {
    padding: 20px;
  }

  .step-content h4 {
    font-size: 28px;
  }

  .step-content p {
    font-size: 16px;
  }

  .step-number {
    margin: 0 auto 32px auto;
  }

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

  .analytics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .metric-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .metric-bar {
    flex: 1;
    margin-left: 0;
    margin-top: 8px;
  }

  .metric-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero-signup-counter {
    justify-content: center;
  }

  .counter-badge {
    padding: 5px 10px;
  }

  .counter-number {
    font-size: 14px;
    min-width: 25px;
  }

  .counter-text {
    font-size: 11px;
  }

  .btn {
    text-align: center;
    width: 100%;
    max-width: 300px;
  }

  .section-header h3 {
    font-size: 32px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-link:hover {
    color: rgba(255, 255, 255, 1);
  }

  .btn-nav-cta {
    margin-top: 10px;
    text-align: center;
    display: block;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

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

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

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

  .insights-tabs {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
  }

  .insight-tab {
    padding: 16px 20px;
    text-align: center;
  }

  .insight-tab:hover {
    transform: none;
  }

  .tab-text h5 {
    font-size: 16px;
  }

  .tab-text p {
    font-size: 12px;
  }
}