/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Modern Multicolored Theme - Vibrant & Clean */
  --primary: #ff6363;        /* Brand primary */
  --primary-light: #ff8585;
  --primary-dark: #e84b4b;
  --secondary: #ec4899;      /* Pink - Secondary brand */
  --secondary-light: #f472b6;
  --secondary-dark: #db2777;
  --accent: #f59e0b;         /* Amber - Accent */
  --accent-light: #fbbf24;
  --accent-dark: #d97706;
  --success: #10b981;        /* Emerald - Success */
  --warning: #f59e0b;        /* Amber - Warning */
  --danger: #ef4444;         /* Red - Danger */
  --info: #3b82f6;           /* Blue - Info */
  
  /* Vibrant Color Palette */
  --color-blue: #3b82f6;
  --color-purple: #8b5cf6;
  --color-pink: #ec4899;
  --color-red: #ef4444;
  --color-orange: #f97316;
  --color-amber: #f59e0b;
  --color-yellow: #eab308;
  --color-lime: #84cc16;
  --color-green: #22c55e;
  --color-emerald: #10b981;
  --color-teal: #14b8a6;
  --color-cyan: #06b6d4;
  --color-indigo: #ff6363; /* keep token but align with brand primary */
  --color-violet: #8b5cf6;
  
  /* Modern Gradients - Multicolored */
  --gradient-primary: linear-gradient(135deg, #ff6363 0%, #ff8585 100%);
  --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --gradient-success: linear-gradient(135deg, #10b981 0%, #22c55e 100%);
  --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  --gradient-rainbow: linear-gradient(135deg, #ff6363 0%, #8b5cf6 25%, #ec4899 50%, #f59e0b 75%, #10b981 100%);
  --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  --gradient-light: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  
  /* Clean UI Backgrounds & Text */
  --bg: #ffffff;
  --bg-alt: #fafbfc;
  --bg-dark: #0f172a;
  --bg-secondary: #f1f5f9;
  --bg-tertiary: #e2e8f0;
  --text: #0f172a;
  --text-light: #334155;
  --text-muted: #64748b;
  --text-secondary: #94a3b8;
  --card: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  
  /* Modern Shadows with Color Tints */
  --shadow-sm: 0 1px 2px rgba(2, 6, 23, 0.06), 0 1px 1px rgba(2, 6, 23, 0.04);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 24px rgba(2, 6, 23, 0.10), 0 2px 6px rgba(2, 6, 23, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 24px 60px rgba(2, 6, 23, 0.18);
  --shadow-indigo: 0 10px 30px rgba(255, 99, 99, 0.28);
  --shadow-pink: 0 10px 30px rgba(236, 72, 153, 0.3);
  --shadow-amber: 0 10px 30px rgba(245, 158, 11, 0.3);
  --shadow-green: 0 10px 30px rgba(16, 185, 129, 0.3);

  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --border-subtle: rgba(148, 163, 184, 0.28);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #0f172a;
  background: #ffffff;
  scroll-behavior: smooth;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3 {
  letter-spacing: -0.02em;
}

h2 {
  line-height: 1.2;
}

/* Background Effects - Multicolored Light Theme */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 99, 99, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(236, 72, 153, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 10% 70%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Accessibility - Skip to content link */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-to-content:focus {
  top: 0;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Enhanced smooth transitions */
/* IMPORTANT: Avoid applying transitions to * (all elements) because it can hurt performance.
   Limit transitions to interactive elements instead. */
a,
button,
.menu-toggle-btn,
.nav-link,
.dropdown-menu,
.btn,
.card {
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(10, 186, 181, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(10, 186, 181, 0.5);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Animation classes - content is visible by default, animation is enhancement */
.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Only hide elements when JS has initialized the animation system */
.js-animations-ready .animate-on-scroll:not(.animated) {
  opacity: 0;
  transform: translateY(30px);
}

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

.fade-in {
  animation: fadeIn 0.8s ease-in;
}

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

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

/* Enhanced Navbar - Orange Light Theme */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar.scrolled {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px) saturate(200%);
  border-bottom-color: rgba(226, 232, 240, 1);
}

/* Top Bar */
.navbar-top-bar {
  display: none;
}

.navbar-top-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-left a,
.top-bar-right span {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.social-links a:hover::before {
  width: 100%;
  height: 100%;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Main Navbar */
.navbar-main {
  background: rgba(255, 255, 255, 0.95);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  position: relative;
}

.brand:hover {
  opacity: 0.85;
}

.brand-icon {
  font-size: 36px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(10, 186, 181, 0.3));
}

/* Logo image styles removed - using text-only logo */

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Navigation - visible on desktop by default */
nav {
  display: block;
}

nav ul.menu {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #1e293b;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 3px;
}

.nav-link:hover::before {
  width: 80%;
}

.nav-link i {
  transition: all 0.3s ease;
}

.nav-link:hover i {
  color: var(--primary);
  transform: scale(1.2);
}

.nav-link span {
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: linear-gradient(135deg, rgba(255, 99, 99, 0.08), rgba(139, 92, 246, 0.05));
  color: var(--primary);
}

.nav-link:hover span {
  transform: translateX(2px);
}

/* Colorful nav icons */
nav ul.menu > li:nth-child(1) .nav-link:hover i { color: #3b82f6; }
nav ul.menu > li:nth-child(2) .nav-link:hover i { color: #8b5cf6; }
nav ul.menu > li:nth-child(3) .nav-link:hover i { color: #ec4899; }
nav ul.menu > li:nth-child(4) .nav-link:hover i { color: #f97316; }
nav ul.menu > li:nth-child(5) .nav-link:hover i { color: #14b8a6; }
nav ul.menu > li:nth-child(6) .nav-link:hover i { color: var(--primary); }

/* Dynamic underline colors per menu item */
nav ul.menu > li:nth-child(1) .nav-link::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
nav ul.menu > li:nth-child(2) .nav-link::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
nav ul.menu > li:nth-child(3) .nav-link::before { background: linear-gradient(90deg, #ec4899, #f472b6); }
nav ul.menu > li:nth-child(4) .nav-link::before { background: linear-gradient(90deg, #f97316, #fb923c); }
nav ul.menu > li:nth-child(5) .nav-link::before { background: linear-gradient(90deg, #14b8a6, #2dd4bf); }

.nav-link.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 10px 20px;
  box-shadow: 0 4px 15px rgba(10, 186, 181, 0.3);
}

.nav-link.nav-cta::before {
  display: none;
}

.nav-link.nav-cta:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 6px 20px rgba(10, 186, 181, 0.4);
  transform: translateY(-3px);
}

.nav-link.nav-cta:hover i {
  color: white;
  transform: scale(1.2);
}

.dropdown-icon {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  padding: 10px 0;
  padding-top: 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: none;
  min-width: 220px;
  animation: fadeInUp 0.3s ease;
  z-index: 1000;
}

/* Bridge the gap between button and dropdown */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 18px;
  background: transparent;
}

.dropdown-menu.wide {
  min-width: 260px;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #475569;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.dropdown-menu a:hover::before {
  transform: scaleY(1);
}

.dropdown-menu a i {
  width: 18px;
  text-align: center;
  transition: all 0.25s ease;
}

.dropdown-menu a:hover {
  background: linear-gradient(90deg, rgba(255, 99, 99, 0.08), rgba(139, 92, 246, 0.05));
  color: var(--primary);
  padding-left: 22px;
}

.dropdown-menu a:hover i {
  transform: scale(1.2);
  color: var(--primary);
}

.menu-toggle-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

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

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

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

/* Hero Section - Orange Light Theme */
.hero {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8dd 100%);
  color: var(--text);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/hhh44.jpg') center/cover;
  opacity: 0.08;
  z-index: 0;
}

/* Animated background shapes */
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: -300px;
  right: -200px;
  animation: float 20s ease-in-out infinite;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero-image {
  animation: float 6s ease-in-out infinite;
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: var(--gradient-secondary);
  border-radius: var(--radius-xl);
  filter: blur(30px);
  opacity: 0.4;
  z-index: -1;
  animation: glow 3s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover img {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* Hero video background */
.hero.hero--video {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.88));
}

.hero.hero--video .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero.hero--video .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero.hero--video .hero-video.is-active {
  opacity: 1;
}

.hero.hero--video .hero-overlay {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.90), rgba(30, 41, 59, 0.78));
}

.hero.hero--video .container,
.hero.hero--video .hero-grid {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero.hero--video .hero-video {
    display: none;
  }
  .hero.hero--video {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.85)), url('images/hero-bg.jpg') center/cover no-repeat;
  }
}

/* When using video hero (home page), we don't need the right-side image column */
.hero--video .hero-grid {
  grid-template-columns: 1fr;
  max-width: 820px;
}

.hero--video .hero-image {
  display: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.02em;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: pulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

.badge i {
  animation: rotate 3s linear infinite;
}

h1 {
  font-size: clamp(32px, 4vw, 46px);
  margin: 14px 0;
  line-height: 1.2;
}

.lead {
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.6;
}

/* Lead text on dark backgrounds (hero, page-header, contact, performance) */
.hero .lead,
.page-header .lead,
.contact .lead,
.performance .lead {
  color: #e2e8f0;
}

.cta-group {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.10);
}

.btn.primary {
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 99, 99, 0.3);
  position: relative;
  overflow: hidden;
}

.btn.primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--gradient-primary);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

.btn.primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn.primary span,
.btn.primary i {
  position: relative;
  z-index: 1;
}

.btn.primary:hover {
  color: #ffffff;
  background: var(--primary-dark);
  box-shadow: 0 15px 40px rgba(255, 99, 99, 0.4);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
  position: relative;
  overflow: hidden;
}

.btn.ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s;
}

.btn.ghost:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

.trust-badge i {
  font-size: 20px;
  color: #4ade80; /* Default color, can be overridden inline */
}

.trust-badge:nth-child(1) i { color: #4ade80; }
.trust-badge:nth-child(2) i { color: #60a5fa; }
.trust-badge:nth-child(3) i { color: #facc15; }
.trust-badge:nth-child(4) i { color: #f472b6; }

.trust-badge span {
  color: white;
  font-weight: 600;
  font-size: 14px;
}

/* Cards - Orange Light Theme */
.card {
  background: var(--surface-solid);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
  opacity: 0.9;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 99, 99, 0.35);
}

.card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 28px;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.18);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden; /* Ensure the shine effect stays inside */
}

.card:hover .card-icon {
  transform: translateY(-2px) scale(1.06);
}

/* Add a shine effect to the icon on hover */
.card-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: none;
}

.card:hover .card-icon::before {
  animation: shine 1.5s infinite;
}

/* Colorful Card Icons - each card gets a different color */
.card:nth-child(1) .card-icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3); }
.card:nth-child(2) .card-icon { background: linear-gradient(135deg, #8b5cf6, #6d28d9); box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3); }
.card:nth-child(3) .card-icon { background: linear-gradient(135deg, #ec4899, #be185d); box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3); }
.card:nth-child(4) .card-icon { background: linear-gradient(135deg, #f97316, #c2410c); box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3); }
.card:nth-child(5) .card-icon { background: linear-gradient(135deg, #22c55e, #15803d); box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3); }
.card:nth-child(6) .card-icon { background: linear-gradient(135deg, #06b6d4, #0891b2); box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3); }
.card:nth-child(7) .card-icon { background: linear-gradient(135deg, #ff6363, #e84b4b); box-shadow: 0 8px 20px rgba(255, 99, 99, 0.3); }
.card:nth-child(8) .card-icon { background: linear-gradient(135deg, #14b8a6, #0d9488); box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3); }
.card:nth-child(9) .card-icon { background: linear-gradient(135deg, #eab308, #ca8a04); box-shadow: 0 8px 20px rgba(234, 179, 8, 0.3); }
.card:nth-child(10) .card-icon { background: linear-gradient(135deg, #ef4444, #b91c1c); box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3); }
.card:nth-child(11) .card-icon { background: linear-gradient(135deg, #0ABAB5, #028C87); box-shadow: 0 8px 20px rgba(10, 186, 181, 0.3); }
.card:nth-child(12) .card-icon { background: linear-gradient(135deg, #a855f7, #7c3aed); box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3); }

/* Colorful icons in headings */
h1 i, h2 i, h3 i, h4 i {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Colorful icons in navigation dropdown */
.dropdown-menu a i {
  color: var(--primary);
}

.dropdown-menu a:nth-child(1) i { color: #3b82f6; }
.dropdown-menu a:nth-child(2) i { color: #8b5cf6; }
.dropdown-menu a:nth-child(3) i { color: #ec4899; }
.dropdown-menu a:nth-child(4) i { color: #f97316; }
.dropdown-menu a:nth-child(5) i { color: #22c55e; }
.dropdown-menu a:nth-child(6) i { color: #06b6d4; }
.dropdown-menu a:nth-child(7) i { color: #ff6363; }
.dropdown-menu a:nth-child(8) i { color: #14b8a6; }
.dropdown-menu a:nth-child(9) i { color: #eab308; }
.dropdown-menu a:nth-child(10) i { color: #ef4444; }
.dropdown-menu a:nth-child(11) i { color: #a855f7; }

/* Colorful list icons */
ul li i.fa-check { color: #22c55e !important; }
ul li i.fa-times { color: #ef4444 !important; }
ul li i.fa-star { color: #eab308 !important; }

/* Footer colorful icons */
.footer-col:nth-child(2) h4 i { color: #3b82f6; }
.footer-col:nth-child(3) h4 i { color: #8b5cf6; }
.footer-col:nth-child(4) h4 i { color: #ec4899; }
.footer-col:nth-child(5) h4 i { color: #22c55e; }
.footer-col:nth-child(6) h4 i { color: #f97316; }

/* Contact info colorful icons */
.contact-info li:nth-child(1) i { color: #3b82f6; }
.contact-info li:nth-child(2) i { color: #22c55e; }
.contact-info li:nth-child(3) i { color: #f97316; }
.contact-info li:nth-child(4) i { color: #8b5cf6; }

/* Social icons colorful on hover */
.social-icon:hover, .social-links a:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.footer-social .social-icon:nth-child(1):hover { background: linear-gradient(135deg, #1877f2, #0d5bbd); }
.footer-social .social-icon:nth-child(2):hover { background: linear-gradient(135deg, #0088cc, #006699); }
.footer-social .social-icon:nth-child(3):hover { background: linear-gradient(135deg, #0077b5, #005582); }
.footer-social .social-icon:nth-child(4):hover { background: linear-gradient(135deg, #e4405f, #c13584); }
.footer-social .social-icon:nth-child(5):hover { background: linear-gradient(135deg, #25d366, #128c7e); }

.stat-card {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stat {
  background: linear-gradient(135deg, rgba(255, 99, 99, 0.06), rgba(139, 92, 246, 0.04));
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.stat:hover::before {
  opacity: 0.15;
}

.stat:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 99, 99, 0.25);
}

.stat > * {
  position: relative;
  z-index: 1;
}

.stat-value {
  font-size: 36px;
  font-weight: 800;
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.stat-label i {
  color: var(--primary);
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
  background: transparent;
}

.section.alt {
  background: linear-gradient(180deg, rgba(241, 245, 249, 0.8), rgba(255, 255, 255, 0.95));
}

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

/* Two Column Layout */
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.column-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.column-content .badge {
  width: fit-content;
  background: var(--gradient-primary);
  color: white;
}

.column-image {
  position: relative;
}

.column-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.feature-list.compact {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  gap: 8px;
}

.feature-list.compact li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text);
  font-size: 14px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.feature-list.compact li:last-child {
  border-bottom: none;
}

.feature-list.compact li i {
  color: var(--success);
  font-size: 12px;
  width: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(248, 250, 252, 0.6);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.feature-item:hover {
  background: linear-gradient(135deg, rgba(255, 99, 99, 0.08), rgba(139, 92, 246, 0.05));
  transform: translateX(5px);
}

.feature-item i {
  color: var(--success);
  font-size: 18px;
  margin-top: 2px;
}

.feature-item span {
  color: var(--text);
  line-height: 1.5;
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.stat-item {
  background: var(--card);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
}

/* Section Header */
.section-header {
  margin-bottom: 48px;
}

.section-header .badge {
  background: var(--gradient-primary);
  color: white;
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 12px;
}

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

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
}

/* Process Timeline */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 99, 99, 0.3);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.step-content p {
  margin: 0 0 8px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Pricing Cards */
.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.pricing-header {
  background: var(--gradient-primary);
  color: white;
  padding: 32px 24px;
  text-align: center;
}

.pricing-header h3 {
  margin: 0 0 8px;
  color: white;
  font-size: 24px;
}

.pricing-header .price {
  font-size: 48px;
  font-weight: 800;
  margin: 16px 0 8px;
}

.pricing-header p {
  margin: 0;
  opacity: 0.9;
}

.pricing-features {
  list-style: none;
  padding: 24px;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
}

.pricing-features li i {
  color: var(--success);
  font-size: 14px;
}

.pricing-card .btn {
  margin: 0 24px 24px;
}

/* Featured Badge for Pricing */
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 12px;
  right: -30px;
  background: var(--warning);
  color: white;
  padding: 4px 40px;
  font-size: 12px;
  font-weight: 700;
  transform: rotate(45deg);
}

/* Responsive Two Column */
@media (max-width: 960px) {
  .two-column-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .column-image {
    order: -1;
  }
  
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 16px;
  line-height: 1.2;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.section.center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--text);
}

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

.grid.cards .card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.grid.cards .card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Performance Section */
.performance {
  background: linear-gradient(135deg, #0b1220 0%, #121c2e 55%, #1f1b46 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.performance::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.05) 22%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.performance > * {
  position: relative;
  z-index: 1;
}

.performance .stat-block {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.performance .stat-block:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.05);
}

.performance .stat-value {
  font-size: 48px;
  font-weight: 800;
  display: block;
}

.performance .stat-label {
  color: #e2e8f0;
  font-size: 16px;
  margin-top: 8px;
}

.narrow {
  max-width: 760px;
}

/* Testimonials */
.testimonials .card {
  position: relative;
}

.testimonials .card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: var(--primary);
  opacity: 0.2;
  font-family: serif;
}

.testimonials .quote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonials .author {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.testimonials .role {
  color: var(--muted);
  font-size: 13px;
}

/* FAQ Accordion */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion details {
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  padding: 16px 20px;
  background: var(--card);
  margin-bottom: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.accordion details:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 99, 99, 0.2);
}

.accordion details[open] {
  border-color: var(--primary);
  background: rgba(255, 99, 99, 0.04);
}

.accordion summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: '+';
  font-size: 24px;
  color: var(--primary);
  margin-left: auto;
  transition: transform 0.3s ease;
}

.accordion details[open] summary::after {
  transform: rotate(45deg);
}

.accordion p {
  color: var(--muted);
  margin-top: 12px;
  padding-left: 32px;
  line-height: 1.7;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #0b1220, #1e293b);
  color: #e2e8f0;
}

.contact h2 {
  color: white;
  -webkit-text-fill-color: white;
}

.contact h3 {
  color: white;
}

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

/* Contact form card on dark background */
.contact .card.form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 32px;
}

.contact .card.form:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-list li:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.contact-list li i {
  width: 24px;
  color: var(--primary);
  font-size: 20px;
}

.contact-list li a {
  color: #e2e8f0;
  transition: color 0.3s ease;
}

.contact-list li a:hover {
  color: var(--primary);
}

.form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form label {
  font-weight: 600;
  color: #e2e8f0;
}

.form input,
.form textarea {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font: inherit;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transition: all 0.3s ease;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-note {
  font-size: 14px;
  color: #22c55e;
  min-height: 20px;
  margin-top: 8px;
}

/* Newsletter Signup */
.newsletter-signup {
  margin-top: 20px;
}

.newsletter-signup h5 {
  color: white;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}

.newsletter-signup form {
  display: flex;
  gap: 8px;
}

.newsletter-signup input {
  flex: 1;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 13px;
  transition: all 0.3s ease;
}

.newsletter-signup input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-signup input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-signup button {
  padding: 10px 14px;
  min-width: auto;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-signup button:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* Enhanced Footer */
.footer {
  background: linear-gradient(180deg, #0b0f1a 0%, #1a1f2e 100%);
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--primary));
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

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

.footer-main {
  padding: 80px 0 60px;
  position: relative;
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-col {
  animation: fadeInUp 0.6s ease;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-brand .brand-icon {
  font-size: 36px;
}

.footer-brand .brand-logo {
  width: 48px;
  height: 48px;
}

.footer-brand .brand-name {
  font-size: 26px;
  color: white;
}

.footer-brand .brand-tagline {
  color: var(--primary);
}

.footer-description {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #cbd5e1;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

.footer-col h4 {
  margin: 0 0 24px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(14, 165, 233, 0.2);
}

.footer-col h4 i {
  color: var(--primary);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  transition: all 0.3s ease;
  padding: 6px 0;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a i {
  font-size: 10px;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
  transform: translateX(5px);
  padding-left: 5px;
}

.footer-col ul li a:hover i {
  opacity: 1;
  transform: translateX(0);
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #cbd5e1;
}

.contact-info li i {
  color: var(--primary);
  font-size: 16px;
  width: 20px;
}

.contact-info li a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.contact-info li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom-left {
  flex: 1;
  min-width: 0; /* Allow flex item to shrink below content size if needed */
  width: 100%;
}

.footer-bottom-left p {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.footer-bottom-right {
  text-align: right;
}

.footer-bottom-right p {
  color: #cbd5e1;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  padding: 6px 0;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-links a i {
  font-size: 12px;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.image-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 48px;
  overflow: hidden;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}

.page-header h1 {
  margin: 0 0 16px;
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 960px) {
  nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0 16px;
    animation: slideInLeft 0.3s ease;
  }

  nav.open {
    display: block;
  }

  nav ul.menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 16px;
    gap: 8px;
  }

  .dropdown-menu,
  .dropdown-menu.wide {
    position: static;
    box-shadow: none;
    padding: 0;
    margin-left: 20px;
    margin-top: 8px;
  }

  .dropdown-menu a {
    padding: 8px 0;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  #menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 60px 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero .cta-group {
    justify-content: center;
  }

  .section {
    padding: 60px 0;
  }
  
  .lead {
    font-size: 16px;
  }

  /* Fix grid layouts on mobile */
  .grid.cards, 
  .contact-grid,
  .two-column-layout,
  .stats-bar,
  .footer-grid,
  .grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Fix nested grids in cards */
  .card .grid {
    grid-template-columns: 1fr !important;
  }

  /* Adjust card padding */
  .card {
    padding: 24px;
  }

  /* Fix flex layouts */
  .top-bar-content,
  .top-bar-left,
  .two-column-layout {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .footer-bottom-content,
  .footer-links,
  .two-column-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

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

/* Floating Contact Buttons */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.floating-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.floating-btn:hover::before {
  width: 100%;
  height: 100%;
}

.floating-btn:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.floating-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-btn.whatsapp:hover {
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.floating-btn.telegram {
  background: linear-gradient(135deg, #0088cc, #0077b5);
}

.floating-btn.telegram:hover {
  box-shadow: 0 8px 30px rgba(0, 136, 204, 0.5);
}

/* Tooltip for floating buttons */
.floating-btn .tooltip {
  position: absolute;
  right: 70px;
  background: #333;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-btn .tooltip::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 8px 0 8px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
}

.floating-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Pulse animation for attention */
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.floating-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid currentColor;
  animation: pulse-ring 2s ease-out infinite;
  pointer-events: none;
}

.floating-btn.whatsapp::after {
  border-color: #25d366;
}

.floating-btn.telegram::after {
  border-color: #0088cc;
}

/* Responsive floating buttons */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .floating-btn .tooltip {
    display: none;
  }
}

/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.cta-section h2 {
  color: white;
  -webkit-text-fill-color: white;
  background: none;
}

.cta-section h2::after {
  background: white;
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta-buttons .btn.primary {
  background: var(--primary-light);
  color: white;
}

.cta-buttons .btn.primary:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.cta-buttons .btn.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
}

/* Conversion CTA Card */
.cta-card {
  background: linear-gradient(135deg, rgba(255, 99, 99, 0.10), rgba(236, 72, 153, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto auto;
  width: 420px;
  height: 420px;
  background: var(--gradient-rainbow);
  opacity: 0.12;
  filter: blur(20px);
  transform: rotate(18deg);
}

.cta-card__text {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-card__text h2 {
  margin: 0 0 10px;
}

.cta-card__text .lead {
  margin: 0 auto 18px;
  max-width: 70ch;
  color: var(--text-light);
}

@media (max-width: 680px) {
  .cta-card {
    padding: 20px;
  }
}

/* Mobile Responsiveness Refinements */
@media (max-width: 768px) {
  .hero {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero .cta-group {
    justify-content: center;
  }

  .section {
    padding: 60px 0;
  }
  
  .lead {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .container {
    width: 94vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  
  .card {
    padding: 20px;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .trust-badges {
    gap: 12px;
    margin-top: 24px;
  }
  
  .trust-badge {
    padding: 8px 14px;
    font-size: 12px;
  }
  
  .navbar-top-bar {
    font-size: 11px;
    padding: 8px 0;
  }
  
  .top-bar-content {
    justify-content: center;
    gap: 8px;
  }
  
  .top-bar-left, .top-bar-right {
    justify-content: center;
    width: 100%;
  }
  
  .social-links {
    margin-top: 4px;
  }
}

/* =========================
   Site-wide UI consistency
   ========================= */

/* Make grid cards consistent across pages (some pages override with inline styles) */
.grid.cards {
  gap: 24px;
}

/* Card icon: enforce consistent icon sizing (both <i> and inline svg) */
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card-icon i {
  font-size: 28px;
  line-height: 1;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* Improve default text contrast in hero/video/alt sections */
.hero.hero--video h1 {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.hero.hero--video .badge {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

/* Reduce motion: also stop card hover lift for users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  .card:hover {
    transform: none;
  }
  .card:hover .card-icon {
    transform: none;
    animation: none;
  }
}

/* ========================================
   MULTICOLORED UTILITY CLASSES
======================================== */

/* Color Utilities */
.text-indigo { color: var(--color-indigo) !important; }
.text-purple { color: var(--color-purple) !important; }
.text-pink { color: var(--color-pink) !important; }
.text-blue { color: var(--color-blue) !important; }
.text-green { color: var(--color-green) !important; }
.text-amber { color: var(--color-amber) !important; }
.text-teal { color: var(--color-teal) !important; }
.text-cyan { color: var(--color-cyan) !important; }
.text-orange { color: var(--color-orange) !important; }
.text-red { color: var(--color-red) !important; }

/* Background Color Utilities */
.bg-indigo { background: var(--color-indigo) !important; }
.bg-purple { background: var(--color-purple) !important; }
.bg-pink { background: var(--color-pink) !important; }
.bg-blue { background: var(--color-blue) !important; }
.bg-green { background: var(--color-green) !important; }
.bg-amber { background: var(--color-amber) !important; }
.bg-teal { background: var(--color-teal) !important; }
.bg-cyan { background: var(--color-cyan) !important; }
.bg-orange { background: var(--color-orange) !important; }
.bg-red { background: var(--color-red) !important; }

/* Gradient Utilities */
.bg-gradient-indigo { background: linear-gradient(135deg, #ff6363, #ff8585) !important; }
.bg-gradient-pink { background: linear-gradient(135deg, #ec4899, #f472b6) !important; }
.bg-gradient-blue { background: linear-gradient(135deg, #3b82f6, #06b6d4) !important; }
.bg-gradient-green { background: linear-gradient(135deg, #10b981, #22c55e) !important; }
.bg-gradient-amber { background: linear-gradient(135deg, #f59e0b, #f97316) !important; }
.bg-gradient-purple { background: linear-gradient(135deg, #8b5cf6, #ec4899) !important; }
.bg-gradient-rainbow { background: var(--gradient-rainbow) !important; }

/* Border Color Utilities */
.border-indigo { border-color: var(--color-indigo) !important; }
.border-purple { border-color: var(--color-purple) !important; }
.border-pink { border-color: var(--color-pink) !important; }
.border-blue { border-color: var(--color-blue) !important; }
.border-green { border-color: var(--color-green) !important; }
.border-amber { border-color: var(--color-amber) !important; }

/* Icon Color Classes */
.icon-indigo { color: var(--color-indigo); }
.icon-purple { color: var(--color-purple); }
.icon-pink { color: var(--color-pink); }
.icon-blue { color: var(--color-blue); }
.icon-green { color: var(--color-green); }
.icon-amber { color: var(--color-amber); }
.icon-teal { color: var(--color-teal); }
.icon-cyan { color: var(--color-cyan); }
.icon-orange { color: var(--color-orange); }
.icon-red { color: var(--color-red); }

/* Shadow Utilities */
.shadow-indigo { box-shadow: var(--shadow-indigo) !important; }
.shadow-pink { box-shadow: var(--shadow-pink) !important; }
.shadow-amber { box-shadow: var(--shadow-amber) !important; }
.shadow-green { box-shadow: var(--shadow-green) !important; }

/* ========================================
   MODERN CLEAN UI COMPONENTS
======================================== */

/* Modern Colorful Cards */
.card-colorful {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-colorful::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-rainbow);
}

.card-colorful:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Colorful Icon Boxes */
.icon-box-colorful {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  font-size: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.icon-box-colorful::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.icon-box-colorful:hover::before {
  opacity: 0.2;
}

.icon-box-indigo { background: rgba(255, 99, 99, 0.1); color: var(--color-indigo); }
.icon-box-purple { background: rgba(139, 92, 246, 0.1); color: var(--color-purple); }
.icon-box-pink { background: rgba(236, 72, 153, 0.1); color: var(--color-pink); }
.icon-box-blue { background: rgba(59, 130, 246, 0.1); color: var(--color-blue); }
.icon-box-green { background: rgba(16, 185, 129, 0.1); color: var(--color-green); }
.icon-box-amber { background: rgba(245, 158, 11, 0.1); color: var(--color-amber); }
.icon-box-teal { background: rgba(20, 184, 166, 0.1); color: var(--color-teal); }
.icon-box-cyan { background: rgba(6, 182, 212, 0.1); color: var(--color-cyan); }
.icon-box-orange { background: rgba(249, 115, 22, 0.1); color: var(--color-orange); }

/* Modern Badge */
.badge-colorful {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}

.badge-colorful:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.badge-indigo { background: var(--color-indigo); }
.badge-purple { background: var(--color-purple); }
.badge-pink { background: var(--color-pink); }
.badge-blue { background: var(--color-blue); }
.badge-green { background: var(--color-green); }
.badge-amber { background: var(--color-amber); }

/* Gradient Text */
.text-gradient {
  background: var(--gradient-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.text-gradient-indigo {
  background: linear-gradient(135deg, #ff6363, #ff8585);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-pink {
  background: linear-gradient(135deg, #ec4899, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Colorful Divider */
.divider-colorful {
  height: 4px;
  background: var(--gradient-rainbow);
  border-radius: var(--radius-full);
  margin: 3rem 0;
}

/* Clean Modern Button Styles */
.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-modern:hover::before {
  opacity: 0.2;
}

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-indigo { background: var(--color-indigo); color: white; }
.btn-indigo:hover { box-shadow: var(--shadow-indigo); }

.btn-pink { background: var(--color-pink); color: white; }
.btn-pink:hover { box-shadow: var(--shadow-pink); }

.btn-amber { background: var(--color-amber); color: white; }
.btn-amber:hover { box-shadow: var(--shadow-amber); }

.btn-green { background: var(--color-green); color: white; }
.btn-green:hover { box-shadow: var(--shadow-green); }

.btn-gradient {
  background: var(--gradient-rainbow);
  color: white;
}

/* Clean Glass Effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Colorful Hover Underline */
.hover-underline-colorful {
  position: relative;
  display: inline-block;
}

.hover-underline-colorful::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-rainbow);
  transition: width 0.3s ease;
  border-radius: var(--radius-full);
}

.hover-underline-colorful:hover::after {
  width: 100%;
}

/* ========================================
   END MULTICOLORED UTILITIES
======================================== */

/* Ensure hero text remains readable on video/dark hero backgrounds */
.hero.hero--video {
  color: #fff;
}

.hero.hero--video h1,
.hero.hero--video h2,
.hero.hero--video h3 {
  color: #fff;
}

.hero.hero--video .badge {
  color: rgba(255, 255, 255, 0.95);
}
