/* Minimalist Modern Footer */
.footer-modern {
  background: none;
  margin-top: 6rem;
  padding-bottom: 2rem;
  animation: footerFadeIn 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

@keyframes footerFadeIn {
  to {
    opacity: 1;
  }
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb 50%, transparent);
  border-radius: 2px;
  margin-bottom: 3rem;
  opacity: 1;
}

.footer-logo-min {
  height: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo-min:hover {
  opacity: 1;
}

.footer-address,
.footer-email {
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-address:hover,
.footer-email:hover {
  opacity: 1;
  color: hsl(var(--foreground));
}

.footer-social-icon-min {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #f5f3ff;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  border: 1px solid transparent;
}

.footer-social-icon-min:hover {
  background: #ede9fe;
  box-shadow: 0 2px 8px #6C2BD922;
  transform: translateY(-3px);
  border-color: #e9d5ff;
}

.footer-social-icon-min:hover svg {
  stroke: #6C2BD9;
  filter: drop-shadow(0 1px 2px #6C2BD933);
}

.footer-social-icon-min:active {
  transform: translateY(-1px);
}

.footer-bottom-min {
  margin-top: 3rem;
  padding-top: 1rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.8rem;
  opacity: 0.65;
  letter-spacing: 0.02em;
  text-align: center;
}

/* Responsive grid refinements */
@media (max-width: 768px) {
  .footer-modern {
    margin-top: 4rem;
  }

  .footer-divider {
    margin-bottom: 2rem;
  }
}

/* Modern Footer Redesign */
.footer-glass {
  background: transparent;
  position: relative;
  margin-top: 4rem;
  padding-bottom: 0;
}

.footer-gradient-bar {
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #6C2BD9 0%, #B794F4 100%);
  border-radius: 0 0 12px 12px;
  margin-bottom: -3px;
  box-shadow: 0 2px 12px 0 #6C2BD933;
}

.footer-content {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px) saturate(1.2);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(108, 43, 217, 0.10), 0 1.5px 0 hsl(var(--border));
  border: 1px solid hsl(var(--border));
}

.footer-logo {
  height: 2.5rem;
  margin-bottom: 0.5rem;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #f3f0fa;
  color: hsl(var(--primary));
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s, color 0.3s;
  box-shadow: 0 2px 8px #6C2BD933;
}

.footer-social-icon:hover {
  background: #e9d8fd;
  color: hsl(var(--accent));
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 4px 16px #6C2BD966;
}

.footer-social-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
}

/* Staggered fade-in for feature cards */
.fade-in-up-delay-1 {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeInUp 1.1s cubic-bezier(.4, 0, .2, 1) 0.5s forwards;
}

.fade-in-up-delay-2 {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeInUp 1.1s cubic-bezier(.4, 0, .2, 1) 0.8s forwards;
}

/* Responsive grid for features section */
@media (min-width: 640px) {
  .grid-cols-sm-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-cols-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Hero Animated Background */
.hero-animated-bg {
  position: relative;
  overflow: hidden;
}

.hero-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  animation: heroBgMove 16s linear infinite alternate;
}

@keyframes heroBgMove {
  0% {
    transform: translateY(0) scaleX(1);
  }

  100% {
    transform: translateY(-30px) scaleX(1.03);
  }
}

/* Fade-in animation for hero content */
.fade-in-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeInUp 1.1s cubic-bezier(.4, 0, .2, 1) 0.2s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Large Buttons for Hero */
.btn-large {
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  min-width: 56px;
  min-height: 56px;
  box-shadow: 0 0 40px hsl(270 90% 55% / 0.18), 0 0 80px hsl(270 90% 55% / 0.08);
}

/* Glass Navbar Enhancement */
.glass-navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 4px 24px 0 rgba(108, 43, 217, 0.08), 0 1.5px 0 hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  transition: background 0.4s, box-shadow 0.4s;
}


/* Larger nav links for easier click/tap */
.nav-link-lg {
  font-size: 1.05rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  margin: 0 0.25rem;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-link-lg:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
  z-index: 100;
  transition: width 0.2s cubic-bezier(.4, 0, .2, 1);
  border-radius: 0 2px 2px 0;
  pointer-events: none;
}

/*
  STYLES.CSS – EveShield
  Main styles: variables, layout, components, utilities.
  Uses CSS custom properties (--primary, etc.) for theming.
*/

/* ========== CSS variables – LIGHT THEME (white bg, black & purple) ========== */
:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 9%;
  --card: 0 0% 98%;
  --card-foreground: 0 0% 9%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 9%;
  --primary: 270 70% 45%;
  --primary-foreground: 0 0% 100%;
  --secondary: 0 0% 96%;
  --secondary-foreground: 0 0% 15%;
  --muted: 0 0% 96%;
  --muted-foreground: 0 0% 40%;
  --accent: 270 75% 55%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 0 0% 90%;
  --input: 0 0% 90%;
  --radius: 0.75rem;
  --eve-purple: 270 70% 45%;
  --eve-purple-light: 270 80% 65%;
  --eve-purple-glow: 270 90% 55%;
  --eve-dark: 0 0% 98%;
  --eve-dark-secondary: 0 0% 95%;
  --eve-glass: 0 0% 100%;
}

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

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 100;
  font-weight: 600;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
}

/* Scrollbar – light theme */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: hsl(0 0% 96%);
}

::-webkit-scrollbar-thumb {
  background: hsl(270 70% 50% / 0.4);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(270 70% 50% / 0.6);
}

/* Container */
.container-narrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

/* Mobile-first responsive adjustments */
@media (max-width: 768px) {
  .container-narrow {
    padding: 0 1.5rem;
    max-width: 90%;
  }

  /* Mobile navigation improvements */
  .navbar-menu-desktop {
    display: none;
  }



  /* Mobile spacing improvements */
  .section-padding {
    padding: 4rem 0;
  }

  .hero-section {
    min-height: 100vh;
    padding: 6rem 0 4rem;
  }

  /* Mobile text improvements */
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: 0 1px 0 hsl(var(--border));
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 640px) {
  .navbar-content {
    height: 5rem;
  }
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-img {
  height: 2.75rem;
  width: auto;
}

@media (min-width: 640px) {
  .logo-img {
    height: 3.25rem;
  }
}

.navbar-menu-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navbar-menu-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: hsl(var(--foreground));
}

.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1100;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.mobile-menu-toggle:hover {
  background: hsl(var(--secondary) / 0.5);
}

.hamburger-icon {
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-icon line {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Animation to X */
.mobile-menu.open~.navbar-content .line-top,
#mobile-menu-toggle.active .line-top {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu.open~.navbar-content .line-mid,
#mobile-menu-toggle.active .line-mid {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu.open~.navbar-content .line-bot,
#mobile-menu-toggle.active .line-bot {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  display: flex !important;
  /* Always flex but hidden offset */
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  gap: 0.5rem;
}

.mobile-menu.open {
  right: 0;
}

.nav-link-mobile {
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
  color: hsl(var(--foreground));
}

/* Modern Button Design System
   Mobile-first, cohesive, and sleek. */

/* === Live Counting Tally === */
.live-tally-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.live-tally-icon {
  color: hsl(var(--primary));
}

.live-tally-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.live-tally-text {
  display: inline-block;
  color: hsl(var(--primary));
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.2;
}

.live-tally-number {
  font-size: 1.25rem;
  font-weight: 700;
}

/* === Base Button === */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  /* Mobile-first padding */
  border-radius: 9999px;
  /* Pill shape */
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  z-index: 1;
}

.btn:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

.btn:active {
  transform: scale(0.97);
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

/* === Sizes === */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-sm svg {
  width: 1.125rem;
  height: 1.125rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.125rem;
}

.btn-lg svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* === Variants === */

/* Primary Button (Sleek Purple) */
.btn-primary {
  background: hsl(var(--primary));
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(108, 43, 217, 0.25);
}

.btn-primary:hover {
  background: hsl(var(--accent));
  box-shadow: 0 6px 16px rgba(108, 43, 217, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  box-shadow: 0 2px 6px rgba(108, 43, 217, 0.2);
}

/* Secondary Button (Glass/Outline) */
.btn-secondary {
  background: transparent;
  color: hsl(var(--foreground));
  border: 1.5px solid hsl(var(--border));
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: hsl(var(--secondary));
  border-color: hsl(var(--primary) / 0.5);
  color: hsl(var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-secondary:active {
  background: hsl(var(--border));
}

/* Waitlist Action Button (Vibrant Glow) */
.btn-modern-waitlist {
  background: linear-gradient(135deg, hsl(270 70% 45%), hsl(270 85% 60%));
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(108, 43, 217, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-modern-waitlist::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  transition: all 0.6s ease;
  z-index: -1;
}

.btn-modern-waitlist:hover {
  background: linear-gradient(135deg, hsl(270 80% 50%), hsl(270 95% 65%));
  box-shadow: 0 8px 25px rgba(108, 43, 217, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-3px) scale(1.02);
}

.btn-modern-waitlist:hover::after {
  left: 200%;
}

.btn-modern-waitlist:hover svg {
  transform: translateX(4px);
}

/* WhatsApp Button (Modern Green) */
.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #128C7E;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.btn-whatsapp:hover svg {
  animation: wiggle 0.5s ease-in-out;
}

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

  25% {
    transform: rotate(-10deg);
  }

  50% {
    transform: rotate(10deg);
  }

  75% {
    transform: rotate(-5deg);
  }

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

/* === Layout Utilities === */
.w-full {
  width: 100%;
}

@media (min-width: 640px) {
  .sm\:w-auto {
    width: auto;
  }
}

/* Main Content */
main {
  background-color: hsl(var(--background));
  padding-top: 4rem;
}

@media (min-width: 640px) {
  main {
    padding-top: 5rem;
  }
}

/* Sections */
.section-padding {
  padding: 2.5rem 1rem;
}

@media (min-width: 640px) {
  .section-padding {
    padding: 3.5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 4.5rem 2rem;
  }
}

/* Hero/section gradients – light theme (white to very light purple tint) */
.gradient-hero {
  background: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(270 30% 98%) 50%, hsl(270 25% 96%) 100%);
}

.gradient-section {
  background: linear-gradient(180deg, hsl(270 20% 97%) 0%, hsl(0 0% 100%) 100%);
}

/* Glass Card – light theme (white/off-white with subtle border) */
.glass-card {
  background-color: hsl(0 0% 100%);
  backdrop-filter: blur(24px);
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px hsl(0 0% 0% / 0.06);
}

@media (min-width: 640px) {
  .glass-card {
    padding: 2rem;
  }
}

.glow-purple {
  box-shadow: 0 0 40px hsl(270 90% 55% / 0.3), 0 0 80px hsl(270 90% 55% / 0.1);
}

.glow-purple-hover {
  transition: all 0.5s ease;
}

.glow-purple-hover:hover {
  box-shadow: 0 0 30px hsl(270 90% 55% / 0.4), 0 0 60px hsl(270 90% 55% / 0.15);
  transform: translateY(-4px);
}

.glow-red-hover {
  transition: all 0.5s ease;
}

.glow-red-hover:hover {
  box-shadow: 0 0 30px hsl(0 90% 55% / 0.4), 0 0 60px hsl(0 90% 55% / 0.15);
  transform: translateY(-4px);
}

.glow-orange-hover {
  transition: all 0.5s ease;
}

.glow-orange-hover:hover {
  box-shadow: 0 0 30px hsl(30 90% 55% / 0.4), 0 0 60px hsl(30 90% 55% / 0.15);
  transform: translateY(-4px);
}

.glow-blue-hover {
  transition: all 0.5s ease;
}

.glow-blue-hover:hover {
  box-shadow: 0 0 30px hsl(210 90% 55% / 0.4), 0 0 60px hsl(210 90% 55% / 0.15);
  transform: translateY(-4px);
}

/* Typography */
.gradient-purple-text {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, hsl(270 80% 65%), hsl(270 90% 55%), hsl(280 70% 60%));
}

.gradient-red-text {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, hsl(0 80% 60%), hsl(0 90% 50%), hsl(10 70% 55%));
}

.gradient-orange-text {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, hsl(30 80% 60%), hsl(30 90% 50%), hsl(40 70% 55%));
}

.gradient-blue-text {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, hsl(210 80% 60%), hsl(210 90% 50%), hsl(220 70% 55%));
}

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

.text-left {
  text-align: left;
}

/* Grid */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .grid-cols-sm-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-cols-sm-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .grid-cols-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-cols-lg-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-cols-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-cols-lg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

@media (min-width: 1024px) {
  .gap-lg-16 {
    gap: 4rem;
  }
}

/* Flex */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

/* Spacing */
.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .mb-sm-16 {
    margin-bottom: 4rem;
  }
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

/* Typography Sizes */
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

@media (min-width: 640px) {
  .text-sm-sm-lg {
    font-size: 1.125rem;
  }

  .text-sm-4xl {
    font-size: 2.25rem;
  }

  .text-sm-5xl {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .text-lg-5xl {
    font-size: 3rem;
  }

  .text-lg-6xl {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .text-xl-7xl {
    font-size: 4.5rem;
  }
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

/* Colors */
.text-foreground {
  color: hsl(var(--foreground));
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}

.text-primary {
  color: hsl(var(--primary));
}

.bg-background {
  background-color: hsl(var(--background));
}

.bg-secondary {
  background-color: hsl(var(--secondary));
}

.bg-primary {
  background-color: hsl(var(--primary));
}

.bg-primary-15 {
  background-color: hsl(var(--primary) / 0.15);
}

.bg-primary-25 {
  background-color: hsl(var(--primary) / 0.25);
}

.bg-primary-8 {
  background-color: hsl(var(--primary) / 0.08);
}

.bg-primary-10 {
  background-color: hsl(var(--primary) / 0.1);
}

/* Animations */
@keyframes float {

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

  33% {
    transform: translateY(-12px) rotate(1deg);
  }

  66% {
    transform: translateY(-6px) rotate(-1deg);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

.float-animation-delayed {
  animation: float 6s ease-in-out 1.5s infinite;
}

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

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.fade-in-up-delay-1 {
  animation: fadeInUp 0.8s ease-out 0.15s forwards;
  opacity: 0;
}

.fade-in-up-delay-2 {
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
  opacity: 0;
}

.fade-in-up-delay-3 {
  animation: fadeInUp 0.8s ease-out 0.45s forwards;
  opacity: 0;
}

/* Utility Classes */
.opacity-0 {
  opacity: 0;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-70 {
  opacity: 0.7;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: hsl(var(--muted-foreground));
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.5);
}

.form-input:focus-visible {
  outline: 2px solid hsl(var(--primary) / 0.5);
  outline-offset: 2px;
}

/* Footer */
.footer {
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--eve-dark));
  padding: 3rem 1rem;
}

@media (min-width: 640px) {
  .footer {
    padding: 4rem 1.5rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

@media (min-width: 768px) {
  .footer-brand {
    text-align: left;
  }
}

.footer-logo {
  height: 2.5rem;
  margin-bottom: 1rem;
}

.footer-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-description {
    margin: 0;
  }
}

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

@media (min-width: 768px) {
  .footer-section {
    text-align: left;
  }
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.footer-contact a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: hsl(var(--foreground));
}

.icon-text {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
  text-align: center;
}

.arrow {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
  display: block;
}

.contact-text p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

.contact-link {
  color: hsl(var(--primary));
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.contact-link:hover {
  color: hsl(var(--accent));
  text-decoration: underline;
  transform: translateY(-1px);
}

.social-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.form-input.error,
.form-select.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background-color: hsl(var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  transform: translateY(0);
}

.social-icon:hover {
  color: hsl(var(--foreground));
  background-color: hsl(var(--primary) / 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px hsl(var(--primary) / 0.2);
}

.social-icon:active {
  transform: translateY(0);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
}

.footer-copyright {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background-color: hsl(var(--primary) / 0.1);
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
}

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

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.hero-text {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-title {
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-images {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-main {
  width: 16rem;
  filter: drop-shadow(0 25px 50px -12px rgba(0, 0, 0, 0.25));
}

@media (min-width: 640px) {
  .hero-image-main {
    width: 20rem;
  }
}

@media (min-width: 1024px) {
  .hero-image-main {
    width: 24rem;
  }
}

.hero-image-secondary {
  position: absolute;
  width: 6rem;
  filter: drop-shadow(0 25px 50px -12px rgba(0, 0, 0, 0.25));
}

@media (min-width: 640px) {
  .hero-image-secondary {
    width: 10rem;
  }
}

@media (min-width: 1024px) {
  .hero-image-secondary {
    width: 12rem;
  }
}

.hero-image-secondary.bottom-left {
  bottom: -1rem;
  left: -1rem;
}

@media (min-width: 640px) {
  .hero-image-secondary.bottom-left {
    left: 0;
  }
}

.hero-image-secondary.top-right {
  top: -1rem;
  right: -1rem;
}

@media (min-width: 640px) {
  .hero-image-secondary.top-right {
    right: 0;
  }
}

/* Counter Card */
.counter-card {
  text-align: center;
  transition: all 0.5s ease;
}

.counter-card:hover {
  transform: translateY(-4px);
}

.counter-value {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

@media (min-width: 640px) {
  .counter-value {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .counter-value {
    font-size: 3.75rem;
  }
}

.counter-card:hover .counter-value {
  transform: scale(1.05);
}

.counter-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .counter-label {
    font-size: 1rem;
  }
}

.counter-description {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
}

@media (min-width: 640px) {
  .counter-description {
    font-size: 0.875rem;
  }
}

.counter-source {
  font-size: 0.625rem;
  color: hsl(var(--muted-foreground) / 0.6);
  margin-top: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Feature Card */
.feature-card {
  transition: all 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}

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

.feature-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
}

/* Section Wrapper Animation */
.section-wrapper {
  transition: all 1s ease;
  opacity: 0;
  transform: translateY(2rem);
}

.section-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Chart Container */
.chart-container {
  height: 16rem;
  position: relative;
}

/* Page Header */
.page-header {
  padding-top: 8rem;
  padding-bottom: 4rem;
  text-align: center;
}

@media (min-width: 640px) {
  .page-header {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
}

.page-title {
  font-size: 2.25rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .page-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .page-title {
    font-size: 3.75rem;
  }
}

.page-subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
}

@media (min-width: 640px) {
  .page-subtitle {
    font-size: 1.25rem;
  }
}

/* 404 Page */
.not-found {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: hsl(var(--muted));
}

.not-found-content {
  text-align: center;
}

.not-found-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.not-found-text {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.not-found-link {
  color: hsl(var(--primary));
  text-decoration: underline;
  transition: color 0.3s ease;
}

.not-found-link:hover {
  color: hsl(var(--primary) / 0.9);
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Icon Styles */
.icon {
  width: 22px;
  height: 22px;
  color: hsl(var(--primary));
}

.icon-sm {
  width: 16px;
  height: 16px;
}

/* Success Message */
.success-message {
  text-align: center;
}

.success-icon {
  width: 3rem;
  height: 3rem;
  color: hsl(var(--primary));
  margin: 0 auto 1rem;
}

.success-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.success-text {
  color: hsl(var(--muted-foreground));
}

/* Loading State */
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* WhatsApp Button */
.btn-whatsapp {
  background-color: hsl(142, 70%, 40%);
  color: hsl(0, 0%, 100%);
  box-shadow: 0 0 30px hsl(142 70% 40% / 0.3);
}

.btn-whatsapp:hover {
  background-color: hsl(142, 70%, 45%);
}

/* Additional Utility Classes */
.p-sm-8 {
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .p-sm-8 {
    padding: 2rem;
  }
}

.p-sm-10 {
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .p-sm-10 {
    padding: 2.5rem;
  }
}

.p-sm-12 {
  padding: 2rem;
}

@media (min-width: 640px) {
  .p-sm-12 {
    padding: 3rem;
  }
}

.text-sm-xl {
  font-size: 1rem;
}

@media (min-width: 640px) {
  .text-sm-xl {
    font-size: 1.25rem;
  }
}

.text-sm-2xl {
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  .text-sm-2xl {
    font-size: 1.875rem;
  }
}

.text-sm-3xl {
  font-size: 2rem;
}

@media (min-width: 640px) {
  .text-sm-3xl {
    font-size: 2.25rem;
  }
}

.rounded-xl {
  border-radius: 0.75rem;
}

.bg-primary-40 {
  background-color: hsl(var(--primary) / 0.4);
}

.hover\:bg-secondary\/50:hover {
  background-color: hsl(var(--secondary) / 0.5);
}

.inline-flex {
  display: inline-flex;
}

.items-start {
  align-items: flex-start;
}

.overflow-hidden {
  overflow: hidden;
}

.z-10 {
  z-index: 10;
}

.pt-24 {
  padding-top: 6rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

@media (min-width: 640px) {
  .pt-sm-40 {
    padding-top: 10rem;
  }

  .pb-sm-24 {
    padding-bottom: 6rem;
  }
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.uppercase {
  text-transform: uppercase;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.relative {
  position: relative;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.pointer-events-none {
  pointer-events: none;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* ========== Link and border utilities ========== */
/* Card-style link (e.g. "View Full Data Dashboard") */
.link-card {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--primary) / 0.4);
  color: hsl(var(--primary));
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.link-card:hover {
  background-color: hsl(var(--primary) / 0.1);
}

/* Border shades for primary color */
.border-primary-40 {
  border-color: hsl(var(--primary) / 0.4);
}

.border-primary-25 {
  border-color: hsl(var(--primary) / 0.25);
}

.border-primary-15 {
  border-color: hsl(var(--primary) / 0.15);
}

.border-primary-20 {
  border-color: hsl(var(--primary) / 0.2);
}

/* Hover background for list rows (Who We Are product list) */
.hover-bg-secondary-50:hover {
  background-color: hsl(var(--secondary) / 0.5);
}

/* Standardized hover effects */
.hover-lift:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 20px hsl(var(--primary) / 0.3);
  transition: box-shadow 0.3s ease;
}

/* Gap utility */
.gap-5 {
  gap: 1.25rem;
}