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

:root {
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --secondary: #a78bfa;
  --dark-bg: #0a0a0f;
  --dark-card: #1a1a24;
  --dark-border: #2a2a3a;
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Enhanced guarantee banner with better contrast */
.guarantee-banner {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #4f46e5 100%);
  background-size: 200% 100%;
  animation: gradient-flow 3s ease infinite;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.5);
}

@keyframes gradient-flow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.banner-track {
  display: flex;
  animation: scroll-left 12s linear infinite;
  white-space: nowrap;
}

.banner-text {
  font-size: 15px;
  font-weight: 700;
  color: white;
  padding: 0 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Added urgency badge and improved nav layout */
/* Navigation */
.navbar {
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 16px 0;
  border-bottom: 1px solid var(--dark-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.urgency-badge {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #fca5a5;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

@keyframes pulse-urgent {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
}

.logo {
  height: 40px;
  width: auto;
  max-width: 150px;
}

.cta-button-small {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}

.cta-button-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
}

/* Added pulse animation for CTA button */
.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
  }

  50% {
    box-shadow: 0 12px 48px rgba(99, 102, 241, 0.8), 0 0 30px rgba(99, 102, 241, 0.4);
  }
}

/* Added animated grid background to hero section */
/* Hero Section */
.hero {
  padding: 200px 0 100px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

/* Animated Grid Background */
.grid-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 2px, transparent 2px);
  background-size: 60px 60px;
  animation: grid-move 20s linear infinite;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  z-index: 0;
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

/* Added floating particles animation */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: float-up 15s ease-in infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.particle:nth-child(2) {
  left: 20%;
  animation-delay: 1s;
  animation-duration: 7s;
}

.particle:nth-child(3) {
  left: 30%;
  animation-delay: 2s;
  animation-duration: 8s;
}

.particle:nth-child(4) {
  left: 40%;
  animation-delay: 0.5s;
  animation-duration: 6.5s;
}

.particle:nth-child(5) {
  left: 50%;
  animation-delay: 1.5s;
  animation-duration: 7.5s;
}

.particle:nth-child(6) {
  left: 60%;
  animation-delay: 2.5s;
  animation-duration: 8.5s;
}

.particle:nth-child(7) {
  left: 70%;
  animation-delay: 1.25s;
  animation-duration: 7.25s;
}

.particle:nth-child(8) {
  left: 80%;
  animation-delay: 2.25s;
  animation-duration: 8.25s;
}

.particle:nth-child(9) {
  left: 90%;
  animation-delay: 0.75s;
  animation-duration: 6.75s;
}

.particle:nth-child(10) {
  left: 95%;
  animation-delay: 1.75s;
  animation-duration: 7.75s;
}

@keyframes float-up {
  0% {
    bottom: -10%;
    opacity: 0;
    transform: translateX(0) scale(0.5);
  }

  10% {
    opacity: 0.8;
  }

  50% {
    opacity: 0.5;
    transform: translateX(20px) scale(1);
  }

  90% {
    opacity: 0.2;
  }

  100% {
    bottom: 110%;
    opacity: 0;
    transform: translateX(-20px) scale(0.5);
  }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Enhanced title with better contrast and glow effect */
.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  color: #c0c0d0;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Enhanced CTA button with stronger pulse and glow */
.cta-button {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 20px 50px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.25);
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--dark-border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Enhanced stat numbers with better contrast */
.stat-number {
  font-size: 40px;
  font-weight: 900;
  color: #ffffff;
}

.stat-label {
  font-size: 14px;
  color: #e0e0f0;
  font-weight: 500;
}

/* Added floating trust badges section */
.trust-badges {
  padding: 60px 0;
  background: rgba(99, 102, 241, 0.03);
  overflow: hidden;
}

.badges-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.badge {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.2);
}

.floating-1 {
  animation: float 1.5s ease-in-out infinite;
}

.floating-2 {
  animation: float 1.5s ease-in-out infinite 0.25s;
}

.floating-3 {
  animation: float 1.5s ease-in-out infinite 0.5s;
}

.floating-4 {
  animation: float 1.5s ease-in-out infinite 0.75s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.badge-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-text strong {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.badge-text span {
  font-size: 13px;
  color: #d0d0e0;
}

/* Logos Section */
.logos-section {
  padding: 60px 0;
  background: rgba(79, 70, 229, 0.15);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}

.logos-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(79, 70, 229, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: grid-move 10s linear infinite;
  opacity: 0.4;
  z-index: 0;
}

.section-title-small {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.logos-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.partners-logos {
  max-width: 100%;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.partners-logos:hover {
  opacity: 1;
}

/* Problems Section */
.problems {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(220, 38, 38, 0.05) 50%, transparent 100%);
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* Enhanced problem cards with better contrast and stronger hover effects */
.problem-card {
  background: linear-gradient(135deg, rgba(26, 26, 36, 0.8), rgba(20, 20, 30, 0.9));
  border: 1px solid rgba(42, 42, 58, 0.8);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.15);
  background: linear-gradient(135deg, rgba(30, 26, 36, 0.9), rgba(25, 20, 30, 0.95));
}

.problem-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* Solution Section */
.solution {
  padding: 100px 0;
  background: var(--dark-bg);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.steps {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Enhanced step cards with better contrast */
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(26, 26, 36, 0.8), rgba(20, 20, 30, 0.9));
  border: 1px solid rgba(42, 42, 58, 0.8);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.step:hover::before {
  transform: scaleY(1);
}

.step:hover {
  transform: translateX(16px);
  border-color: rgba(99, 102, 241, 0.8);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.3);
  background: linear-gradient(135deg, rgba(30, 26, 36, 0.9), rgba(25, 20, 30, 0.95));
}

.step-number {
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 60px;
}

.step-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

/* Results Section */
.results {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.05) 50%, transparent 100%);
}

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

/* Enhanced result cards with better contrast */
.result-card {
  background: linear-gradient(135deg, rgba(26, 26, 36, 0.8), rgba(20, 20, 30, 0.9));
  border: 1px solid rgba(42, 42, 58, 0.8);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.result-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: linear-gradient(45deg, transparent 30%, rgba(16, 185, 129, 0.1) 50%, transparent 70%);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s ease;
}

.result-card:hover::after {
  transform: rotate(45deg) translateX(100%);
}

.result-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(16, 185, 129, 0.8);
  box-shadow: 0 24px 48px rgba(16, 185, 129, 0.3);
  background: linear-gradient(135deg, rgba(30, 26, 36, 0.9), rgba(25, 20, 30, 0.95));
}

.result-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.result-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.result-header h4 {
  font-size: 18px;
  font-weight: 700;
}

.result-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

.result-quote {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.result-metric {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
}

/* Offer Section */
.offer {
  padding: 100px 0;
  background: var(--dark-card);
}

.offer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.offer-description {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 48px;
}

.offer-features {
  display: grid;
  gap: 20px;
  text-align: left;
  margin-bottom: 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--dark-bg);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--dark-border);
}

.check-icon {
  width: 24px;
  height: 24px;
  color: var(--secondary);
  flex-shrink: 0;
}

.feature span {
  font-size: 16px;
  font-weight: 500;
}

.offer-result {
  background: var(--dark-bg);
  padding: 24px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  font-size: 16px;
  line-height: 1.6;
}

.offer-result strong {
  color: var(--primary);
}

/* Urgency Section */
.urgency {
  padding: 100px 0;
}

.urgency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

/* Added countdown timer for urgency */
.countdown-container {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.15));
  border: 2px solid rgba(239, 68, 68, 0.5);
  border-radius: 16px;
  padding: 24px 40px;
  margin-bottom: 60px;
  text-align: center;
  animation: pulse-urgent 2s ease-in-out infinite;
}

.countdown-text {
  font-size: 24px;
  font-weight: 800;
  color: #fca5a5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.places-left {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 32px;
  font-weight: 900;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* Google Calendar Style Availability Module - Exact DA */
.availability-card {
  max-width: 480px;
  margin: 0 auto 60px;
  background: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 20px 24px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.availability-card:hover {
  border-color: #d2d3d4;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.availability-checking {
  text-align: center;
  width: 100%;
}

.calendar-loader {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  color: #5f6368;
  animation: pulse-calendar 1.5s ease-in-out infinite;
}

.calendar-loader svg {
  width: 100%;
  height: 100%;
}

@keyframes pulse-calendar {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.checking-text {
  font-size: 14px;
  font-weight: 400;
  color: #5f6368;
  font-family: Roboto, Arial, sans-serif;
  letter-spacing: 0.2px;
}

.availability-result {
  width: 100%;
  animation: fadeInUp 0.25s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hidden {
  display: none !important;
}

.calendar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8eaed;
}

.calendar-icon {
  width: 20px;
  height: 20px;
  color: #5f6368;
  flex-shrink: 0;
}

.calendar-month {
  font-size: 14px;
  font-weight: 400;
  color: #3c4043;
  font-family: Roboto, Arial, sans-serif;
  letter-spacing: 0.25px;
}

.availability-status {
  text-align: center;
  padding: 8px 0;
}

.status-count {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

.count-number {
  font-size: 48px;
  font-weight: 400;
  color: #3c4043;
  font-family: Roboto, Arial, sans-serif;
  line-height: 1;
  letter-spacing: -1px;
}

.count-label {
  font-size: 14px;
  font-weight: 400;
  color: #5f6368;
  font-family: Roboto, Arial, sans-serif;
  letter-spacing: 0.2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .availability-card {
    padding: 16px 20px;
  }

  .count-number {
    font-size: 40px;
  }

  .count-label {
    font-size: 13px;
  }

  .calendar-month {
    font-size: 13px;
  }
}



/* Enhanced urgency cards with better contrast and animated borders */
.urgency-card {
  background: linear-gradient(135deg, rgba(26, 26, 36, 0.9), rgba(20, 20, 30, 0.95));
  border: 1px solid rgba(42, 42, 58, 0.8);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.urgency-card::before {
  content: "";
  position: absolute;
  inset: -3px;
  background: conic-gradient(from 0deg at 50% 50%, #6366f1, #8b5cf6, #a78bfa, #6366f1);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: rotate 3s linear infinite;
  z-index: -1;
}

.urgency-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: linear-gradient(135deg, rgba(26, 26, 36, 0.95), rgba(20, 20, 30, 0.98));
  border-radius: 14px;
  z-index: -1;
}

.urgency-card:hover::before {
  opacity: 1;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.urgency-card:hover {
  transform: translateY(-12px) scale(1.05);
}

.urgency-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.urgency-card p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

/* Added animated gradient background */
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15), transparent 50%);
  animation: gradient-shift 8s ease-in-out infinite alternate;
}

@keyframes gradient-shift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, -50px) scale(1.1);
  }
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-subtitle {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 48px;
}

/* Fixed form styling with proper colors and modern design */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  width: 100%;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  background: rgba(26, 26, 36, 0.8);
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder {
  color: rgba(160, 160, 176, 0.7);
}

.form-group input:focus,
.form-group select:focus {
  border-color: #6366f1;
  background: rgba(30, 30, 42, 0.9);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1), 0 8px 24px rgba(99, 102, 241, 0.2);
  transform: translateY(-2px);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.form-group select option {
  background: #1a1a24;
  color: #ffffff;
  padding: 12px;
}

/* Fixed footer styling with proper link colors and layout */
.footer {
  background: #0a0a0f;
  padding: 60px 0 30px;
  border-top: 1px solid var(--dark-border);
}

.footer-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-links a {
  color: #a0a0b0;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-social {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-social a {
  color: #a0a0b0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #ffffff;
  border-color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.footer-copyright {
  color: #606070;
  font-size: 13px;
  margin-top: 16px;
}

/* Legal Pages Styling */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
}

.legal-section {
  margin-bottom: 48px;
  background: var(--dark-card);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--dark-border);
}

.legal-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}

.legal-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section ul {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-left: 24px;
  margin-top: 12px;
}

.legal-section li {
  margin-bottom: 8px;
}

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

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

.legal-footer {
  text-align: center;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--dark-border);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 12px 0;
  }

  .nav-content {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .nav-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .logo {
    height: 32px !important;
  }

  .urgency-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .cta-button-small {
    padding: 8px 20px;
    font-size: 13px;
  }

  .hero {
    padding: 200px 0 60px;
  }

  .hero-title {
    font-size: clamp(28px, 8vw, 40px) !important;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: clamp(16px, 4vw, 18px);
    margin-bottom: 30px;
  }

  .cta-button {
    padding: 16px 40px;
    font-size: 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 60px;
    padding-top: 40px;
  }

  .badges-container {
    grid-template-columns: 1fr;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .urgency-grid {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .footer-social {
    flex-direction: column;
    gap: 16px;
  }

  .container {
    padding: 0 20px;
  }
}

/* Logo Sizes */
.navbar .logo {
  height: 48px;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
}