/* ============================================
   REQUISITIONPRO LANDING PAGE STYLESHEET
   Fortune 500-Grade Enterprise Design
   Version: 1.0.0
   ============================================ */

/* === CSS VARIABLES === */
:root {
  /* Primary Colors */
  --primary-blue: #2563eb;
  --primary-dark: #1e40af;
  --accent-purple: #8b5cf6;
  --navy-dark: #1f2937;
  --navy-darker: #111827;
  --success-green: #10b981;
  --naira-green: #059669;

  /* Grayscale */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--accent-purple) 100%
  );
  --gradient-radial: radial-gradient(
      circle at 30% 50%,
      rgba(37, 99, 235, 0.15),
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(139, 92, 246, 0.15),
      transparent 50%
    );

  /* Typography */
  --font-heading: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-accent: "Space Grotesk", monospace, sans-serif;

  /* Spacing */
  --section-padding: 85px 0;
  --section-padding-mobile: 50px 0;
  --container-max-width: 1400px;
  --container-wide: 1600px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow-blue: 0 0 40px rgba(37, 99, 235, 0.4);
  --shadow-glow-purple: 0 0 40px rgba(139, 92, 246, 0.3);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--gradient-radial);
  margin: 0;
  padding: 0;
}

/* === CONTAINER === */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
  padding: 4px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--gray-200);
}

.nav-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  z-index: 1;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-darker);
  letter-spacing: -0.01em;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  transition: text-shadow var(--transition-base);
}

.navbar.scrolled .logo-text {
  text-shadow: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: color var(--transition-fast), text-shadow var(--transition-base);
  position: relative;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.nav-link:hover {
  color: var(--primary-blue);
}

.navbar.scrolled .nav-link {
  text-shadow: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-btn {
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  line-height: 1.4;
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-300);
}

.btn-ghost:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

.btn-glow {
  box-shadow: var(--shadow-glow-blue);
}

.btn-glow:hover {
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.6);
}

/* === TYPOGRAPHY === */
.section-header {
  margin-bottom: 64px;
}

.section-header.text-center {
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--navy-darker);
}

.section-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--gray-600);
  max-width: 700px;
}

.section-header.text-center .section-subtitle {
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 128px 0 68px;
  overflow: hidden;
  margin-top: 0;
}

.hero-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: var(--gradient-radial);
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  pointer-events: none;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-blue);
  top: -200px;
  left: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-purple);
  bottom: -150px;
  right: -100px;
}

.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.05) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-blue);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 62px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy-darker);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--gray-900);
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--gray-600);
}

.trust-divider {
  width: 1px;
  height: 16px;
  background: var(--gray-300);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.dashboard-mockup {
  position: relative;
}

.mockup-frame {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.mockup-header {
  height: 40px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid var(--gray-200);
}

.mockup-dots {
  display: flex;
  gap: 8px;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
}

.mockup-content {
  padding: 0;
  min-height: 500px;
  background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}

.mockup-content img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 0 0 12px 12px;
}

.placeholder-dashboard {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
}

.placeholder-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.placeholder-card {
  height: 120px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.placeholder-chart {
  height: 280px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.float-1 {
  top: -20px;
  right: -20px;
}

.float-2 {
  bottom: 80px;
  left: -30px;
}

.float-3 {
  bottom: -20px;
  right: 100px;
}

/* === PROBLEMS SECTION === */
.problems {
  padding: var(--section-padding);
  background: var(--navy-darker);
  color: var(--white);
}

.problems .section-title {
  color: var(--white);
}

.problems .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all var(--transition-base);
}

.problem-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.problem-icon {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}

.problem-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.problem-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.problem-solution {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--success-green);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.5;
}

.arrow {
  color: var(--success-green);
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
}

/* === FEATURES SECTION === */
.features {
  padding: var(--section-padding);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.feature-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  border: 2px solid #c7d2fe;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 24px;
}

.feature-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.feature-tab {
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-tab .tab-icon {
  font-size: 18px;
  line-height: 1;
}

.feature-tab:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.feature-tab.active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.25);
}

.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.premium-feature-card {
  border-radius: 24px;
  padding: 40px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--white);
  min-height: 320px;
}

.premium-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  opacity: 0.95;
  z-index: 0;
}

.premium-feature-card > * {
  position: relative;
  z-index: 1;
}

.premium-feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.3);
  border-color: transparent;
}

.gradient-card-blue {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
}

.gradient-card-purple {
  background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 50%, #a78bfa 100%);
}

.gradient-card-green {
  background: linear-gradient(135deg, #065f46 0%, #059669 50%, #10b981 100%);
}

.premium-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.premium-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.premium-badge {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.premium-feature-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}

.premium-feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.premium-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.premium-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.premium-list-item svg {
  flex-shrink: 0;
}

/* === SCREENSHOTS === */
.screenshots {
  padding: var(--section-padding);
  background: var(--gradient-radial);
  overflow: hidden;
  position: relative;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 64px;
  gap: 40px;
}

.carousel-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.nav-btn:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.nav-btn:active {
  transform: scale(0.95);
}

.screenshots-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - 12px);
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 24px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.feature-showcase-card {
  scroll-snap-align: start;
  min-height: 480px;
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-slow);
  cursor: pointer;
}

.feature-showcase-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
}

.gradient-blue {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: var(--white);
  border: 2px solid #60a5fa;
}

.gradient-purple {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: var(--white);
  border: 2px solid #c084fc;
}

.gradient-green {
  background: linear-gradient(135deg, #047857 0%, #10b981 100%);
  color: var(--white);
  border: 2px solid #34d399;
}

.gradient-orange {
  background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
  color: var(--white);
  border: 2px solid #fbbf24;
}

.card-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-content {
  flex: 1;
  z-index: 2;
  position: relative;
  margin-bottom: 32px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--white);
}

.card-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 90%;
}

.card-image {
  position: relative;
  margin: -24px -48px -48px -48px;
  z-index: 1;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  transform: perspective(1000px) rotateX(2deg);
  transition: transform var(--transition-slow);
}

.feature-showcase-card:hover .card-image {
  transform: perspective(1000px) rotateX(0deg) scale(1.05);
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.2);
}

/* === WHY SECTION - PREMIUM REDESIGN === */
.why-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.why-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(37, 99, 235, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(147, 51, 234, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Premium Badge */
.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(147, 51, 234, 0.1)
  );
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 18px;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.8;
  }
}

.badge-text {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Premium Stats Grid */
.stats-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 64px 0 80px;
}

.stat-premium-card {
  position: relative;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.stat-premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-premium-card:hover::before {
  opacity: 1;
}

.stat-premium-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.stat-premium-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0;
  filter: blur(60px);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.stat-premium-card:hover .stat-premium-glow {
  opacity: 0.15;
}

.stat-glow-blue {
  background: #2563eb;
}
.stat-glow-purple {
  background: #9333ea;
}
.stat-glow-green {
  background: #10b981;
}
.stat-glow-orange {
  background: #f59e0b;
}

.stat-premium-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.stat-blue .stat-premium-icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.stat-purple .stat-premium-icon {
  background: linear-gradient(135deg, #a855f7, #9333ea);
  color: white;
  box-shadow: 0 8px 24px rgba(147, 51, 234, 0.3);
}

.stat-green .stat-premium-icon {
  background: linear-gradient(135deg, #34d399, #10b981);
  color: white;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.stat-orange .stat-premium-icon {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.stat-premium-card:hover .stat-premium-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-premium-content {
  position: relative;
  z-index: 2;
}

.stat-premium-number {
  font-family: var(--font-accent);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--navy-darker);
}

.stat-premium-number::after {
  content: "%";
  font-size: 32px;
  margin-left: 2px;
}

.stat-premium-card:nth-child(3) .stat-premium-number::after {
  content: "%";
  font-size: 32px;
}

/* Reports format for stat */
.stat-number-reports::after {
  content: "+";
  font-size: 32px;
  margin-left: 2px;
}

.stat-premium-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-darker);
  margin-bottom: 4px;
}

.stat-premium-desc {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
}

/* Benefits Premium Container */
.benefits-premium-container {
  margin-top: 64px;
}

.benefits-premium-header {
  text-align: center;
  margin-bottom: 48px;
}

.benefits-premium-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--navy-darker);
  margin-bottom: 12px;
}

.benefits-premium-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  font-weight: 500;
}

/* Benefits Premium Grid */
.benefits-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.benefit-premium-card {
  position: relative;
  padding: 36px 32px;
  background: white;
  border-radius: 24px;
  border: 2px solid transparent;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.benefit-premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.benefit-gradient-1::before {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05),
    rgba(59, 130, 246, 0.02)
  );
}

.benefit-gradient-2::before {
  background: linear-gradient(
    135deg,
    rgba(147, 51, 234, 0.05),
    rgba(168, 85, 247, 0.02)
  );
}

.benefit-gradient-3::before {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05),
    rgba(52, 211, 153, 0.02)
  );
}

.benefit-gradient-4::before {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.05),
    rgba(251, 191, 36, 0.02)
  );
}

.benefit-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.benefit-premium-card:hover::before {
  opacity: 1;
}

.benefit-gradient-1:hover {
  border-color: rgba(37, 99, 235, 0.3);
}

.benefit-gradient-2:hover {
  border-color: rgba(147, 51, 234, 0.3);
}

.benefit-gradient-3:hover {
  border-color: rgba(16, 185, 129, 0.3);
}

.benefit-gradient-4:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.benefit-premium-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.benefit-premium-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-gradient-1 .benefit-premium-icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.benefit-gradient-2 .benefit-premium-icon {
  background: linear-gradient(135deg, #a855f7, #9333ea);
  color: white;
  box-shadow: 0 8px 20px rgba(147, 51, 234, 0.25);
}

.benefit-gradient-3 .benefit-premium-icon {
  background: linear-gradient(135deg, #34d399, #10b981);
  color: white;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.benefit-gradient-4 .benefit-premium-icon {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}

.benefit-premium-card:hover .benefit-premium-icon {
  transform: scale(1.1) rotate(-5deg);
}

.benefit-premium-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-darker);
  margin: 0;
}

.benefit-premium-list {
  list-style: none;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.benefit-premium-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
}

.benefit-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.benefit-gradient-1 .benefit-check {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.benefit-gradient-2 .benefit-check {
  background: rgba(147, 51, 234, 0.1);
  color: #9333ea;
}

.benefit-gradient-3 .benefit-check {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.benefit-gradient-4 .benefit-check {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.benefit-premium-footer {
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  position: relative;
  z-index: 1;
}

.benefit-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--gray-50);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-darker);
}

.benefit-stat::before {
  content: "⚡";
  font-size: 14px;
}

/* === PRICING SECTION === */
.pricing {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.toggle-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  transition: color var(--transition-fast);
  cursor: default;
}

.toggle-label.active {
  color: var(--primary-blue);
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 32px;
  background: var(--gray-300);
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: background var(--transition-base);
}

.toggle-switch.active {
  background: var(--primary-blue);
}

.toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition-base);
}

.toggle-switch.active .toggle-slider {
  transform: translateX(28px);
}

.toggle-save {
  color: var(--success-green);
  font-size: 13px;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 2px solid var(--gray-200);
  transition: all var(--transition-base);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-glow-blue);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card.enterprise {
  grid-column: 1 / -1;
  background: var(--navy-darker);
  color: var(--white);
  border-color: var(--accent-purple);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.pricing-card.enterprise:hover {
  transform: translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.pricing-header {
  margin-bottom: 24px;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}

.currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-600);
  margin-right: 4px;
}

.amount {
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy-darker);
  line-height: 1;
}

.pricing-card.enterprise .amount,
.pricing-card.enterprise .plan-name {
  color: var(--white);
}

.period {
  font-size: 16px;
  color: var(--gray-600);
  margin-left: 4px;
}

.custom-price {
  font-family: var(--font-accent);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
}

.plan-description {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 0;
}

.pricing-card.enterprise .plan-description {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-credits {
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  text-align: center;
}

.pricing-credits strong {
  display: block;
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.pricing-credits small {
  font-size: 13px;
  color: var(--gray-600);
  display: block;
}

.pricing-features {
  list-style: none;
  margin-top: 24px;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-card.enterprise .pricing-features li {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-card.enterprise .pricing-header {
  margin-bottom: 16px;
}

.pricing-card.enterprise .pricing-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: 16px;
}

.pricing-card.enterprise .pricing-features li {
  flex: 0 0 auto;
  width: auto;
  padding: 0;
}

.enterprise-left {
  display: flex;
  flex-direction: column;
}

.enterprise-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  min-width: 200px;
}

.check {
  color: var(--success-green);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

/* === CTA SECTION === */
.cta-section {
  padding: 88px 0;
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
}

.cta-buttons .btn-primary:hover {
  background: var(--gray-100);
}

.cta-buttons .btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cta-buttons .btn-outline:hover {
  background: var(--white);
  color: var(--primary-blue);
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  opacity: 0.9;
  flex-wrap: wrap;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* === FOOTER === */
.footer {
  background: var(--navy-darker);
  color: var(--white);
  padding: 60px 0 32px;
}

/* Footer Brand Row */
.footer-brand {
  text-align: center;
  margin-bottom: 32px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 400;
}

/* Footer Navigation Row */
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.footer-link:hover {
  color: var(--white);
}

.footer-link-btn {
  color: var(--primary-blue);
}

.footer-link-btn:hover {
  color: var(--primary-blue-light);
}

.footer-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}

/* Footer Social Row */
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--primary-blue);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.social-link svg {
  transition: transform var(--transition-fast);
}

.social-link:hover svg {
  transform: scale(1.1);
}

/* Footer Bottom Row */
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
  color: #ffffff;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-title {
    font-size: 68px;
    padding: 6px;
  }

  .hero-subtitle {
    padding: 0 6px;
  }

  .feature-card.large {
    grid-column: span 12;
    grid-template-columns: 1fr;
  }

  .feature-card.medium {
    grid-column: span 12;
  }

  .feature-card.small {
    grid-column: span 6;
  }

  .premium-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 50px 0;
  }

  html,
  body {
    margin: 0;
    padding: 0;
  }

  .navbar {
    padding-top: 16px;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
    display: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity var(--transition-base), transform var(--transition-base);
  }

  .nav-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Hide nav waitlist button on mobile - cleaner pre-launch experience */
  #navWaitlistBtn {
    display: none;
  }

  .hero {
    padding: 80px 0 50px;
    min-height: 100vh;
  }

  .hero-title {
    font-size: 38px;
    padding-top: 16px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .cta-title {
    font-size: 36px;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .premium-features-grid {
    grid-template-columns: 1fr;
  }

  .premium-feature-title {
    font-size: 24px;
  }

  .premium-icon {
    width: 56px;
    height: 56px;
  }

  .premium-feature-card {
    min-height: 280px;
  }

  .placeholder-cards {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .pricing-card.enterprise {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .enterprise-right {
    align-items: flex-start;
  }

  .enterprise-right > div {
    text-align: left !important;
  }

  .section-header-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .carousel-track {
    grid-auto-columns: 90%;
  }

  .feature-showcase-card {
    min-height: 420px;
    padding: 32px;
  }

  .card-title {
    font-size: 24px;
  }

  .card-description {
    font-size: 14px;
    max-width: 100%;
  }

  .card-image {
    margin: -16px -32px -32px -32px;
  }

  /* Why Section Responsive */
  .premium-badge {
    padding: 8px 20px;
  }

  .badge-text {
    font-size: 11px;
  }

  .stats-premium-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 48px 0 60px;
  }

  .stat-premium-card {
    padding: 28px 24px;
  }

  .stat-premium-icon {
    width: 48px;
    height: 48px;
  }

  .stat-premium-icon svg {
    width: 24px;
    height: 24px;
  }

  .stat-premium-number {
    font-size: 44px;
  }

  .stat-premium-number::after {
    font-size: 28px;
  }

  .stat-premium-label {
    font-size: 15px;
  }

  .stat-premium-desc {
    font-size: 12px;
  }

  .benefits-premium-title {
    font-size: 28px;
  }

  .benefits-premium-subtitle {
    font-size: 16px;
  }

  .benefits-premium-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-premium-card {
    padding: 28px 24px;
  }

  .benefit-premium-icon {
    width: 48px;
    height: 48px;
  }

  .benefit-premium-icon svg {
    width: 24px;
    height: 24px;
  }

  .benefit-premium-title {
    font-size: 18px;
  }

  .benefit-premium-list li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container,
  .container-wide {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 36px;
  }

  .stat-number {
    font-size: 42px;
  }

  .amount {
    font-size: 36px;
  }

  /* Why Section Extra Small Screens */
  .stat-premium-number {
    font-size: 38px;
  }

  .stat-premium-number::after {
    font-size: 24px;
  }

  .benefits-premium-title {
    font-size: 24px;
  }

  .benefit-premium-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* === UTILITIES === */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}
.delay-6 {
  transition-delay: 0.6s;
}
.delay-7 {
  transition-delay: 0.7s;
}
.delay-8 {
  transition-delay: 0.8s;
}
.delay-9 {
  transition-delay: 0.9s;
}
.delay-10 {
  transition-delay: 1s;
}
.delay-11 {
  transition-delay: 1.1s;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 250, 252, 0.98)
  );
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 20px 0;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.cookie-icon {
  flex-shrink: 0;
  stroke: var(--primary-blue);
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-700);
  font-weight: 500;
}

.cookie-link {
  color: var(--primary-blue);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.cookie-link:hover {
  color: var(--accent-purple);
}

.cookie-accept {
  flex-shrink: 0;
  padding: 12px 32px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--accent-purple)
  );
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
}

.cookie-accept:active {
  transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px 0;
  }

  .cookie-content {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .cookie-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-text p {
    font-size: 13px;
  }

  .cookie-accept {
    width: 100%;
    padding: 14px 24px;
  }
}

/* Footer mobile tweaks - centralized to ensure consistent mobile layout */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 24px;
  }

  .footer-brand {
    margin-bottom: 24px;
  }

  .footer-logo .logo-text {
    font-size: 20px;
  }

  .footer-tagline {
    font-size: 14px;
  }

  .footer-nav {
    gap: 12px;
    margin-bottom: 24px;
  }

  .footer-link {
    font-size: 14px;
  }

  .footer-divider {
    font-size: 12px;
  }

  .footer-social {
    gap: 12px;
    margin-bottom: 24px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    padding-top: 20px;
    font-size: 13px;
  }
}

/* ============================================
   PRE-LAUNCH: FORCE HIDE PRICING SECTION
   ============================================ */

/* Force hide pricing section during pre-launch (backup for commented HTML) */
#pricing,
.pricing,
section.pricing,
section[id="pricing"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

/* ============================================
   WAITLIST MODAL STYLES
   ============================================ */

.waitlist-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.waitlist-modal.active {
  display: flex;
}

.waitlist-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.waitlist-modal-content {
  position: relative;
  background: white;
  border-radius: 24px;
  max-width: 500px;
  width: 100%;
  padding: 48px;
  box-shadow: var(--shadow-2xl);
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.waitlist-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gray-100);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--gray-600);
}

.waitlist-modal-close:hover {
  background: var(--gray-200);
  color: var(--gray-900);
  transform: rotate(90deg);
}

.waitlist-header {
  text-align: center;
  margin-bottom: 32px;
}

.waitlist-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.waitlist-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.waitlist-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  transition: all var(--transition-base);
  font-family: var(--font-body);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group input.error {
  border-color: #ef4444;
}

.form-error {
  font-size: 13px;
  color: #ef4444;
  display: none;
}

.form-error.active {
  display: block;
}

.btn-full {
  width: 100%;
}

#waitlistSubmitBtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#waitlistSubmitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loader {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Success View */
.waitlist-success-view {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--success-green), var(--naira-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.success-message {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .waitlist-modal-content {
    padding: 32px 24px;
  }

  .waitlist-title {
    font-size: 24px;
  }

  .waitlist-subtitle {
    font-size: 15px;
  }

  .success-title {
    font-size: 24px;
  }

  .success-message {
    font-size: 15px;
  }
}
