/* Accents and theme - Material Design 3 Expressive */
:root {
  /* Primary colors - more expressive */
  --deadly-red: #F34A60;
  --sick-purple: #7C57E9;
  --dark-blue: #0D0A30;
  
  /* Extended expressive palette */
  --primary-50: #f3f4f6;
  --primary-100: #e5e7eb;
  --primary-200: #d1d5db;
  --primary-300: #9ca3af;
  --primary-400: #6b7280;
  --primary-500: #4b5563;
  --primary-600: #374151;
  --primary-700: #1f2937;
  --primary-800: #111827;
  --primary-900: #0f172a;
  
  /* Purple accent variations */
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7c3aed;
  --purple-800: #6b21a8;
  --purple-900: #581c87;
  
  /* Semantic colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;
  
  /* Text and backgrounds */
  --text: #17181c;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --bg: #ffffff;
  --bg-secondary: #f9fafb;
  --card: #ffffff;
  
  /* Borders and shadows - more expressive */
  --border: rgba(13, 10, 48, 0.08);
  --border-strong: rgba(13, 10, 48, 0.16);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Legacy support */
  --muted: var(--text-secondary);
  --chip-green: #79c8a0;
  --chip-blue: #7aa7ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: -0.02em;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }

.container { 
  width: min(1200px, 92%); 
  margin-inline: auto; 
  overflow-x: hidden;
  max-width: 100%;
}
.section { padding: 120px 0; }
.section + .section { border-top: 1px solid rgba(13, 10, 48, 0.06); }

/* Typography - Enhanced Hierarchy */
h1, h2, h3, h4 { 
  color: var(--dark-blue); 
  margin: 10px 0 24px 0; 
  font-weight: 800; 
  letter-spacing: -0.025em; 
  line-height: 1.15;
}

h2 { 
  font-size: clamp(2rem, 2vw + 1rem, 3rem); 
  font-weight: 900;
  letter-spacing: -0.03em;
}

h3 { 
  font-size: clamp(1.5rem, 1.5vw + 0.5rem, 2rem); 
  font-weight: 700;
}

.display { 
  font-size: clamp(2.8rem, 2rem + 4vw, 5rem); 
  line-height: 1.1; 
  text-align: center; 
  font-weight: 900;
  background: linear-gradient(135deg, var(--dark-blue), var(--sick-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 32px;
  padding-bottom: 8px;
  overflow: visible;
}

.lead { 
  color: var(--text-secondary); 
  font-size: clamp(1.125rem, 0.5vw + 1rem, 1.375rem); 
  line-height: 1.6; 
  font-weight: 400;
  margin-bottom: 32px;
}

/* Emphasized text styles */
.text-emphasized {
  font-weight: 700;
  color: var(--dark-blue);
  background: linear-gradient(135deg, var(--sick-purple), var(--purple-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.center { text-align: center; max-width: 78ch; margin: 0 auto; }

/* Enhanced text hierarchy */
.text-xl { font-size: 1.25rem; line-height: 1.6; }
.text-lg { font-size: 1.125rem; line-height: 1.7; }
.text-base { font-size: 1rem; line-height: 1.6; }
.text-sm { font-size: 0.875rem; line-height: 1.5; }
.text-xs { font-size: 0.75rem; line-height: 1.4; }

/* Header / Nav */
.site-header { position: sticky; top: 0; z-index: 1000; background: #ffffff; border-bottom: 1px solid var(--border); transition: box-shadow 0.25s ease; }
.site-header.scrolled { box-shadow: 0 8px 24px var(--shadow); }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 10px 0; min-height: 64px; position: relative; }
.logo { 
  font-weight: 800; 
  font-size: 1.25rem; 
  color: var(--dark-blue); 
  text-decoration: none; 
  letter-spacing: 0; 
  line-height: 1; 
  display: inline-flex; 
  align-items: center; 
  height: 40px; 
}

.menu { 
  list-style: none; 
  display: flex; 
  gap: 16px; 
  margin: 0; 
  padding: 0; 
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.menu li { display: flex; align-items: center; position: relative; }
.menu a { color: var(--dark-blue); text-decoration: none; padding: 0 12px; height: 40px; border-radius: 10px; transition: color 0.2s, background 0.2s; line-height: 1; display: inline-flex; align-items: center; gap: 4px; }
.menu .btn { height: 40px; padding: 10px 16px; }
.menu a:hover { color: var(--sick-purple); background: rgba(124, 87, 233, 0.08); }

/* Dropdown Toggle & Arrow */
.dropdown-toggle {
  cursor: pointer;
  position: relative;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.menu-item-has-dropdown {
  position: relative;
}

/* Debug: Ensure mega menu is visible on hover */
.menu-item-has-dropdown:hover .mega-menu {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.menu-item-has-dropdown:hover .dropdown-arrow,
.menu-item-has-dropdown.is-open .dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  padding: 32px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 640px;
  backdrop-filter: blur(10px);
  z-index: 9999;
  pointer-events: auto;
}

.menu-item-has-dropdown:hover .mega-menu,
.menu-item-has-dropdown.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mega-menu-section h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-menu-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu-section li {
  margin-bottom: 0;
}

.mega-menu-section a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: var(--dark-blue);
  background: transparent;
  margin-bottom: 4px;
  height: auto;
  align-items: flex-start;
}

.mega-menu-section a:hover {
  background: linear-gradient(135deg, rgba(124, 87, 233, 0.08), rgba(167, 139, 250, 0.06));
  color: var(--sick-purple);
  transform: translateX(4px);
}

.menu-badge {
  font-size: 0.75rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--sick-purple), var(--purple-600));
  color: white;
  padding: 2px 8px;
  border-radius: 8px;
  align-self: flex-start;
}

.menu-desc {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 400;
}

.mega-menu-section a:hover .menu-desc {
  color: var(--purple-600);
}

.nav-cta {
  height: 40px;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--sick-purple), var(--purple-600));
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 87, 233, 0.3);
  background: linear-gradient(135deg, var(--purple-600), var(--sick-purple));
}

.hamburger { width: 44px; height: 44px; display: none; align-items: center; justify-content: center; gap: 4px; flex-direction: column; background: transparent; border: 1px solid var(--border); border-radius: 12px; padding: 6px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark-blue); transition: transform 0.25s ease, opacity 0.25s ease; }

/* Buttons - Material Design 3 Expressive */
.btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  gap: 8px;
  padding: 14px 24px; 
  text-decoration: none; 
  font-weight: 600; 
  font-size: 0.95rem;
  letter-spacing: -0.01em; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

/* Primary button - expressive shape */
.btn-primary { 
  background: linear-gradient(135deg, var(--dark-blue), var(--sick-purple), var(--purple-600));
  background-size: 200% 200%;
  color: white; 
  box-shadow: var(--shadow-lg);
  border: none;
  border-radius: 20px 8px 20px 8px;
  animation: subtleGlow 4s ease-in-out infinite;
}

@keyframes subtleGlow {
  0%, 100% { background-position: 0% 50%; box-shadow: var(--shadow-lg); }
  50% { background-position: 100% 50%; box-shadow: 0 20px 40px -12px rgba(124, 87, 233, 0.4); }
}

.btn-primary:hover { 
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--sick-purple), var(--dark-blue));
}

/* Secondary button - subtle shape */
.btn-secondary { 
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg)); 
  color: var(--text); 
  border: 2px solid var(--border-strong);
  border-radius: 8px 16px 8px 16px;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover { 
  background: var(--bg); 
  border-color: var(--sick-purple);
  box-shadow: var(--shadow-md);
}

/* CTA button - most expressive */
.btn-cta { 
  background: linear-gradient(135deg, var(--sick-purple), var(--purple-400), var(--purple-600));
  background-size: 200% 200%;
  color: #fff !important; 
  box-shadow: var(--shadow-xl);
  border-radius: 20px;
  animation: gradientShift 3s ease infinite;
}

.btn-cta:hover {
  background-size: 150% 150%;
  box-shadow: 0 25px 50px -12px rgba(124, 87, 233, 0.4);
}

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

/* Hero */
.hero { 
  padding-top: 90px; 
  overflow: visible;
  min-height: auto;
}
.hero-centered .cta-center { display: flex; gap: 12px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }
.hero-stage { 
  position: relative; 
  margin-top: 36px; 
  display: grid; 
  place-items: center; 
  gap: 12px;
  overflow: visible;
}
.chip { display: inline-block; padding: 8px 12px; border-radius: 999px; font-weight: 700; font-size: 0.9rem; color: #fff; box-shadow: 0 6px 14px var(--shadow); }
.chip-purple { background: var(--sick-purple); }
.chip-purple-light { background: var(--purple-400); }
.chip-purple-dark { background: var(--purple-800); }

.card-row { display: flex; gap: 16px; align-items: center; justify-content: center; padding: 8px; }
.hero-card { width: clamp(120px, 18vw, 200px); height: clamp(120px, 18vw, 200px); border-radius: 18px; object-fit: cover; border: 1px solid var(--border); box-shadow: 0 20px 40px var(--shadow); background: #f2f3f7; }
.tilt-l2 { transform: rotate(-10deg); }
.tilt-l1 { transform: rotate(-5deg); }
.tilt-r1 { transform: rotate(5deg); }
.tilt-r2 { transform: rotate(10deg); }

/* About */
.about-header { text-align: center; margin-bottom: 56px; }
.about-header .chip.subtle { 
  background: var(--purple-100); 
  color: var(--sick-purple); 
  border-radius: 20px 8px 20px 8px; /* Asymmetric shape */
  padding: 10px 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 48px; }

.about-text h3 { font-size: 1.4rem; margin-bottom: 16px; color: var(--dark-blue); }
.about-text p { color: var(--muted); line-height: 1.7; margin-bottom: 24px; }

.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.stat-card { 
  text-align: center; 
  padding: 24px 20px; 
  background: var(--card); 
  border: 1px solid var(--border); 
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card:nth-child(1) { border-radius: 20px 8px 20px 8px; }
.stat-card:nth-child(2) { border-radius: 8px 20px 8px 20px; }
.stat-card:nth-child(3) { border-radius: 20px 8px 8px 20px; }

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--sick-purple);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sick-purple), var(--purple-400));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.stat-number { 
  font-size: 2.5rem; 
  font-weight: 900; 
  background: linear-gradient(135deg, var(--sick-purple), var(--purple-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px; 
}
.stat-label { color: var(--text-secondary); font-weight: 600; font-size: 0.9rem; }

.about-visual { position: relative; }
.about-image-grid { position: relative; display: grid; grid-template-areas: 
  "main main secondary"
  "main main secondary"; 
  gap: 12px; }
.about-img { border-radius: 16px; object-fit: cover; border: 1px solid var(--border); box-shadow: 0 20px 40px var(--shadow); }
.main-img { grid-area: main; height: 280px; }
.secondary-img { grid-area: secondary; height: 134px; }

.about-badge { position: absolute; bottom: 16px; left: 16px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); border: 1px solid var(--border); border-radius: 12px; padding: 8px 12px; display: flex; align-items: center; gap: 8px; box-shadow: 0 8px 20px var(--shadow); }
.badge-icon { font-size: 1.2rem; }
.badge-text { font-weight: 700; color: var(--dark-blue); font-size: 0.9rem; }

.about-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item { 
  text-align: center; 
  padding: 32px 24px; 
  background: var(--card); 
  border: 1px solid var(--border); 
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-item:nth-child(1) { border-radius: 24px 12px 24px 12px; }
.feature-item:nth-child(2) { border-radius: 12px 24px 12px 24px; }
.feature-item:nth-child(3) { border-radius: 24px 12px 12px 24px; }
.feature-item:nth-child(4) { border-radius: 12px 24px 24px 12px; }

.feature-item:hover { 
  transform: translateY(-12px) scale(1.02); 
  box-shadow: var(--shadow-xl);
  border-color: var(--sick-purple);
}

.feature-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(124, 87, 233, 0.05), rgba(168, 85, 247, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-item:hover::after {
  opacity: 1;
}

.feature-icon { 
  font-size: 3rem; 
  margin-bottom: 20px; 
  display: block;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-item h4 { 
  font-size: 1.2rem; 
  margin-bottom: 16px; 
  color: var(--dark-blue);
  font-weight: 700;
}
.feature-item p { 
  color: var(--text-secondary); 
  line-height: 1.7; 
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* Products - New Detailed Section */
.products-header { text-align: center; margin-bottom: 56px; }
.products-header .chip.subtle { 
  background: linear-gradient(135deg, var(--purple-100), var(--purple-200)); 
  color: var(--sick-purple); 
  border-radius: 8px 20px 8px 20px; /* Different asymmetric shape */
  padding: 10px 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.products-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 40px; 
  margin-bottom: 48px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.product-card.featured {
  background: linear-gradient(135deg, var(--card), var(--bg-secondary));
  border: 1px solid var(--border);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 420px;
  height: auto;
}

/* Varied shapes for each card */
.product-card.featured:nth-child(1) { border-radius: 32px 12px 32px 12px; }
.product-card.featured:nth-child(2) { border-radius: 12px 32px 12px 32px; }
.product-card.featured:nth-child(3) { border-radius: 32px 12px 32px 12px; }

.product-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--sick-purple);
}

.product-card.recommended {
  border: 3px solid var(--sick-purple);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--sick-purple), var(--purple-600));
  transform: scale(1.02);
  position: relative;
  color: white;
}

.product-card.recommended::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--sick-purple), var(--purple-600), var(--sick-purple));
  border-radius: inherit;
  z-index: -1;
  opacity: 0.8;
}

.product-card.recommended:hover {
  transform: translateY(-8px);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge.popular {
  background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
}

.product-badge.recommended {
  background: linear-gradient(135deg, var(--sick-purple), var(--purple-800));
}

.product-badge.flexible {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
}

.product-header {
  margin-bottom: 12px;
  text-align: center;
}

.product-header h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--dark-blue);
  font-weight: 800;
}

.product-card.recommended .product-header h3 {
  color: white;
}

.interest-rate {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.rate-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--sick-purple);
  line-height: 1;
}

.product-card.recommended .rate-number {
  color: white;
}

.rate-unit {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.product-card.recommended .rate-unit {
  color: rgba(255, 255, 255, 0.9);
}

.product-features {
  margin-bottom: 20px;
}

.product-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: none;
  margin-bottom: 8px;
}

.product-features .feature-item:last-child {
  margin-bottom: 0;
}

.product-features .feature-icon {
  color: var(--sick-purple);
  font-weight: bold;
  font-size: 1.1rem;
  min-width: 20px;
}

.product-features span:last-child {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
}

.product-actions {
  text-align: center;
  margin-top: auto;
}

/* Products section spacing tweaks */
.section.products { padding-top: 120px; padding-bottom: 120px; border-top: none; }

.product-actions .btn {
  width: 100%;
  justify-content: center;
}

/* Legacy Products */
.products .product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 22px; box-shadow: 0 10px 24px var(--shadow); }
.card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.card p { color: var(--muted); }
.features { margin: 14px 0 16px 16px; }
.features li { margin: 6px 0; }
.chart { height: 180px; border: 1px dashed rgba(13,10,48,0.18); border-radius: 12px; display: grid; place-items: center; color: var(--muted); }

/* Trust */
/* (old trust styles kept for reference but unused) */
.trust .badge-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: center; }
.trust img { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 16px; }

/* Testimonials */
/* (old testimonials styles kept for reference but unused) */
.carousel { position: relative; }
.carousel-track { display: grid; grid-template-columns: 1fr; gap: 0; }
.testimonial { display: none; background: #ffffff; border: 1px solid var(--border); border-radius: 16px; padding: 22px; text-align: center; box-shadow: 0 10px 24px var(--shadow); }
.testimonial.is-active { display: block; animation: fadeIn 300ms ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* How it works (flow board) */
.how-header .chip.subtle { 
  background: linear-gradient(135deg, var(--purple-50), var(--purple-100)); 
  color: var(--sick-purple); 
  border-radius: 16px 4px 16px 4px; /* Third variation */
  padding: 10px 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid var(--purple-200);
}
.flow-board { 
  background: linear-gradient(135deg, #fafbff 0%, #f3f4f6 100%); 
  border: 1px solid var(--border); 
  border-radius: 32px; 
  padding: 48px 40px; 
  box-shadow: var(--shadow-xl); 
  margin: 0 auto;
  overflow-x: auto;
  position: relative;
}

.flow-board::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(124, 87, 233, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(124, 87, 233, 0.03) 0%, transparent 50%);
  border-radius: inherit;
  pointer-events: none;
}

/* Horizontal flow layout */
.horizontal-flow {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  align-items: center;
  gap: 40px;
  min-width: 800px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.flow-step {
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-node { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 8px; 
}

.user-circle { 
  width: 72px; 
  height: 72px; 
  border-radius: 50%; 
  border: 3px solid var(--sick-purple); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.6rem; 
  background: linear-gradient(135deg, var(--purple-50), #fff);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.user-circle:hover {
  transform: scale(1.05);
}

.user-label { 
  font-weight: 600; 
  color: var(--dark-blue); 
  font-size: 0.9rem; 
}

.platform-node { 
  background: linear-gradient(135deg, var(--sick-purple), var(--purple-600)); 
  color: white; 
  padding: 20px 24px; 
  border-radius: 20px; 
  box-shadow: var(--shadow-xl); 
  text-align: center;
  min-width: 160px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.platform-node:hover::before {
  left: 100%;
}

.platform-node:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -12px rgba(124, 87, 233, 0.4);
}

.platform-logo { 
  font-weight: 800; 
  font-size: 1.1rem; 
  margin-bottom: 4px;
}

.platform-subtitle { 
  font-size: 0.8rem; 
  opacity: 0.9; 
}

/* Flow connectors */
.flow-connector {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.flow-arrow { 
  color: var(--text-secondary); 
  font-size: 1.8rem; 
  font-weight: bold;
}

.flow-splitter {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.split-connector {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100px;
}

.split-connector.top { transform: translateY(-16px); }
.split-connector.bottom { transform: translateY(16px); }

.flow-destinations {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bank-node { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 8px; 
  padding: 16px 20px; 
  border: 1px solid var(--border); 
  border-radius: 16px; 
  background: linear-gradient(135deg, #fff, #fafbff); 
  box-shadow: var(--shadow-lg); 
  text-align: center;
  min-width: 140px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bank-node:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--sick-purple);
}

.bank-icon { 
  font-size: 1.1rem; 
}

.bank-node span { 
  font-size: 0.75rem; 
  font-weight: 600; 
  color: var(--dark-blue); 
  line-height: 1.2;
}

.coin { 
  width: 28px; 
  height: 28px; 
  border-radius: 50%; 
  background: radial-gradient(circle at 30% 30%, #ffe8a3, #fca311); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: 800; 
  color: #7a4b00; 
  font-size: 0.8rem;
  box-shadow: var(--shadow-sm); 
  position: absolute;
}

/* Horizontal flowing animation */
@keyframes coinFlowHorizontal {
  0% { 
    opacity: 0; 
    transform: translateX(-20px) scale(0.7); 
  }
  25% { 
    opacity: 1; 
    transform: translateX(0) scale(1); 
  }
  75% { 
    opacity: 1; 
    transform: translateX(0) scale(1); 
  }
  100% { 
    opacity: 0; 
    transform: translateX(20px) scale(0.7); 
  }
}

.coin.flowing { 
  animation: coinFlowHorizontal 2.5s ease-in-out infinite; 
  animation-delay: var(--delay, 0s); 
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .horizontal-flow {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    gap: 24px;
    min-width: auto;
  }
  
  .flow-splitter {
    flex-direction: row;
    gap: 12px;
    justify-content: center;
  }
  
  .split-connector {
    flex-direction: column;
    width: auto;
  }
  
  .split-connector.top,
  .split-connector.bottom {
    transform: none;
  }
  
  .flow-destinations {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Benefits below flow */
.how-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.benefit { display: flex; gap: 10px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 12px 14px; box-shadow: var(--shadow-sm); }
.benefit .i { font-size: 1.2rem; color: var(--sick-purple); }
.benefit h4 { margin: 0 0 4px 0; font-size: 1rem; color: var(--dark-blue); }
.benefit p { margin: 0; color: var(--text-secondary); font-size: 0.95rem; }

.avatar { display: grid; place-items: center; margin-bottom: 12px; }
.avatar img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(13,10,48,0.15); }
blockquote { margin: 0; color: var(--dark-blue); font-size: 1.05rem; }
.author { margin: 8px 0 0; color: var(--muted); }

.carousel-controls { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; pointer-events: none; }
.carousel-controls button { pointer-events: all; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: #fff; color: var(--dark-blue); cursor: pointer; box-shadow: 0 6px 16px var(--shadow); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.carousel-dots .dot { width: 8px; height: 8px; border-radius: 999px; border: none; background: rgba(13,10,48,0.25); cursor: pointer; }
.carousel-dots .dot.is-active { background: var(--deadly-red); width: 18px; }

/* Trust & Security */
.trust {
  background: linear-gradient(135deg, var(--purple-50) 0%, var(--bg) 100%);
  padding: 80px 0;
}

.trust-header {
  margin-bottom: 60px;
}

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

.trust-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sick-purple), var(--purple-600));
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sick-purple);
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.trust-card h3 {
  color: var(--dark-blue);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.trust-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

.certifications {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.certifications h3 {
  color: var(--dark-blue);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 32px;
  text-align: center;
}

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

.cert-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--purple-50);
  border: 1px solid var(--purple-200);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.cert-item:hover {
  background: var(--purple-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.cert-logo {
  font-size: 2rem;
  flex-shrink: 0;
}

.cert-content h4 {
  color: var(--dark-blue);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.cert-content p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .cert-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .certifications {
    padding: 24px;
  }
  
  .cert-item {
    padding: 16px;
  }
}

/* Trustpilot Rating */
.trustpilot {
  background: linear-gradient(135deg, var(--purple-50) 0%, var(--bg) 100%);
  padding: 80px 0;
}

.trustpilot-header {
  margin-bottom: 60px;
}

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

.trustpilot-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 500px;
  width: 100%;
}

.rating-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  font-size: 2rem;
  color: #E5E7EB;
  transition: color 0.3s ease;
}

.star.filled {
  color: #FFB800;
}

.star.partial {
  background: linear-gradient(90deg, #FFB800 80%, #E5E7EB 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1;
}

.score-label {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--purple-50);
  border: 1px solid var(--purple-200);
  border-radius: 12px;
  padding: 12px 20px;
  margin-top: 8px;
}

.trustpilot-logo {
  height: 24px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
}

.badge-text {
  color: var(--sick-purple);
  font-weight: 600;
  font-size: 0.875rem;
}

.trustpilot-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 600px;
  width: 100%;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sick-purple);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--sick-purple);
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

.trustpilot-cta {
  margin-top: 20px;
}

.trustpilot-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--purple-50);
  color: var(--sick-purple);
  border: 2px solid var(--purple-200);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.trustpilot-cta .btn:hover {
  background: var(--purple-100);
  border-color: var(--sick-purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 87, 233, 0.2);
}

.trustpilot-cta .btn svg {
  transition: transform 0.3s ease;
}

.trustpilot-cta .btn:hover svg {
  transform: translate(2px, -2px);
}

@media (max-width: 768px) {
  .trustpilot-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .trustpilot-rating {
    padding: 30px 20px;
  }
  
  .score {
    font-size: 2.5rem;
  }
  
  .star {
    font-size: 1.75rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .trustpilot-rating {
    padding: 24px 16px;
  }
  
  .score {
    font-size: 2rem;
  }
  
  .star {
    font-size: 1.5rem;
  }
  
  .stat-item {
    padding: 20px 16px;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
}

/* Contact */
.contact {
  background: linear-gradient(135deg, var(--purple-50) 0%, var(--bg) 100%);
  padding: 80px 0;
}

.contact-header {
  margin-bottom: 60px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sick-purple);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-card h3 {
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.contact-card p {
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.5;
}

.contact-note {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-style: italic;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: none;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header h3 {
  color: var(--dark-blue);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark-blue);
  font-weight: 600;
  font-size: 0.875rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--sick-purple);
  box-shadow: 0 0 0 3px rgba(124, 87, 233, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.error-message {
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 6px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.error-message::before {
  content: "⚠";
  font-size: 0.75rem;
}

.char-counter {
  text-align: right;
  color: var(--text-secondary);
  font-size: 0.75rem;
  margin-top: 4px;
}

/* Checkbox styling */
.checkbox-field {
  margin-bottom: 16px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--sick-purple);
  border-color: var(--sick-purple);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-text {
  color: var(--text);
}

.checkbox-text a {
  color: var(--sick-purple);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-text a:hover {
  text-decoration: underline;
}

/* Form actions */
.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.form-actions .btn {
  min-width: 200px;
  position: relative;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  animation: spin 1s linear infinite;
}

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

/* Success message */
.form-success {
  text-align: center;
  padding: 40px 20px;
  background: var(--success);
  color: white;
  border-radius: 16px;
  margin-top: 24px;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: bold;
}

.form-success h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 1rem;
  margin-bottom: 24px;
  opacity: 0.9;
}

.success-details {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}

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

.success-item:last-child {
  margin-bottom: 0;
}

.success-label {
  font-weight: 600;
  opacity: 0.8;
}

.success-value {
  font-weight: 700;
  font-family: monospace;
}

/* Error message */
.form-error {
  text-align: center;
  padding: 40px 20px;
  background: var(--error);
  color: white;
  border-radius: 16px;
  margin-bottom: 24px;
}

.form-error .error-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-error h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.form-error p {
  font-size: 1rem;
  margin-bottom: 0;
  opacity: 0.9;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-form {
    padding: 24px;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form {
    order: 1;
  }
}

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 40px 0; color: var(--text-secondary); background: #fafbff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; align-items: start; }
.footer .logo { font-weight: 800; color: var(--dark-blue); text-decoration: none; }
.footer-brand p { margin-top: 8px; max-width: 38ch; }
.footer-nav h4, .footer-cta h4 { margin: 0 0 12px 0; font-size: 1rem; color: var(--dark-blue); }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-nav a { color: var(--text-secondary); text-decoration: none; }
.footer-nav a:hover { color: var(--sick-purple); }
.footer-cta .btn { 
  width: 100%; 
  background: linear-gradient(135deg, var(--sick-purple), var(--purple-600));
  background-size: 200% 200%;
  color: white; 
  text-decoration: none;
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(124, 87, 233, 0.25);
}

.footer-cta .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124, 87, 233, 0.35);
  background-position: 100% 100%;
}
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; border-top: 1px solid var(--border); margin-top: 24px; padding-top: 16px; color: var(--text-secondary); }
.footer-bottom .legal-links { display: flex; gap: 12px; }
.footer-bottom .legal-links a { color: var(--text-secondary); text-decoration: none; }
.footer-bottom .legal-links a:hover { color: var(--sick-purple); }

/* Responsive */
@media (max-width: 1024px) {
  .products-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 32px; 
    width: 100%;
    max-width: 100%;
  }
  .products .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  /* Mobile Header Optimization */
  .site-header {
    padding: 0 16px;
  }
  
  .nav {
    padding: 8px 0;
    min-height: 56px;
  }
  
  .logo {
    font-size: 1.125rem;
    height: 36px;
  }
  
  /* Hide desktop menu and CTA button on mobile */
  .menu { 
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column; 
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 0;
    padding: 80px 24px 24px;
    width: 100vw;
    height: 100vh;
    display: none;
    transform: none;
    z-index: 9998;
    overflow-y: auto;
  }
  
  .menu.is-open { 
    display: flex; 
    animation: slideInFromTop 0.3s ease-out;
  }
  
  @keyframes slideInFromTop {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Hide mega menus on mobile */
  .mega-menu {
    display: none !important;
  }
  
  /* Ensure mega menu is visible on desktop */
  @media (min-width: 768px) {
    .mega-menu {
      display: block !important;
    }
  }
  
  /* Mobile dropdown styles */
  .menu .menu-item-has-dropdown > .dropdown-toggle::after {
    content: none;
  }
  
  .menu .dropdown-arrow {
    display: none;
  }
  
  /* Adjust mobile menu items */
  .menu li {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 8px;
  }
  
  .menu a {
    width: 100%;
    justify-content: flex-start;
    height: 48px;
    padding: 0 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
  }
  
  .menu a:hover {
    background: rgba(124, 87, 233, 0.08);
    color: var(--sick-purple);
  }
  
  /* Hide CTA button on mobile */
  .nav-cta {
    display: none !important;
  }
  
  /* Enhanced hamburger menu */
  .hamburger { 
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(124, 87, 233, 0.05);
    border: 1px solid rgba(124, 87, 233, 0.1);
  }
  
  .hamburger span {
    width: 20px;
    height: 2px;
    background: var(--dark-blue);
    transition: all 0.3s ease;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Mobile Layout Optimizations */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .about-features { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-image-grid { grid-template-areas: 
    "main"
    "secondary"; }
  .main-img { height: 200px; }
  .secondary-img { height: 120px; }

  .products-grid { 
    grid-template-columns: 1fr; 
    gap: 28px; 
    width: 100%;
    max-width: 100%;
  }
  .products .product-grid { grid-template-columns: 1fr; }
  .trust .badge-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .how-benefits { grid-template-columns: 1fr; }
  
  /* Mobile Typography */
  .display {
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.1;
  }
  
  .hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  
  .hero p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Mobile Spacing */
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 60px 0 40px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  /* Mobile Buttons */
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .btn-cta {
    padding: 14px 24px;
    font-size: 1rem;
  }

  /* Mobile Contact Section */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

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

  .contact-form {
    padding: 24px;
  }

  /* Mobile Flow Section */
  .flow-container {
    flex-direction: column;
    gap: 20px;
  }
  
  /* Mobile Form Improvements */
  input, textarea, select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 14px 16px;
  }
  
  /* Mobile Card Improvements */
  .card {
    padding: 20px;
    border-radius: 16px;
  }
  
  /* Mobile Trustpilot */
  .trustpilot-rating {
    padding: 24px;
  }
  
  .score {
    font-size: 2.5rem;
  }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  /* Tablet Grid Adjustments */
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
  }
  
  /* Tablet Typography */
  .display {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
  
  .hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  
  /* Tablet Menu */
  .menu {
    gap: 12px;
  }
  
  .menu a {
    padding: 0 10px;
    font-size: 0.9rem;
  }
  
  /* Tablet Buttons */
  .btn {
    padding: 12px 20px;
  }
  
  .btn-cta {
    padding: 14px 28px;
  }
}

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

  .flow-arrow {
    transform: rotate(90deg);
  }

  .flow-destinations {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Mobile Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}

/* Product showcase (liquid glass) */
.product-showcase-section { 
  background: var(--bg-secondary); 
  margin: 48px 0;
}

.product-showcase { 
  background: #0f1022; 
  border-radius: 28px; 
  padding: 40px 28px; 
  box-shadow: 0 30px 60px rgba(13,10,48,0.18); 
  position: relative; 
  overflow: hidden; 
}
.product-showcase::before { content: ''; position: absolute; inset: -20%; background: radial-gradient(600px 300px at 10% 0%, rgba(124,87,233,0.15), transparent 60%), radial-gradient(400px 260px at 90% 10%, rgba(243,74,96,0.12), transparent 60%); pointer-events: none; }
.product-head { text-align: center; color: #fff; }
.product-head h2 { color: #fff; }
.product-head .small { color: rgba(255,255,255,0.7); }
.product-head .chip.subtle { background: rgba(255,255,255,0.12); backdrop-filter: blur(6px); }

.product-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.product-card { position: relative; border-radius: 18px; overflow: hidden; background: #fff; border: 1px solid rgba(255,255,255,0.1); }
.product-card img { width: 100%; height: 240px; object-fit: cover; display: block; }
.glass-info { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,0.65); backdrop-filter: blur(8px); border: 1px solid rgba(13,10,48,0.08); box-shadow: 0 10px 24px rgba(13,10,48,0.18); }
.glass-info h3 { margin: 0 0 4px 0; font-size: 1.05rem; color: var(--dark-blue); }
.glass-info p { margin: 0; color: var(--muted); font-weight: 600; font-size: 0.95rem; }

.bubble-badge { position: absolute; right: 14px; top: 14px; width: 40px; height: 40px; display: grid; place-items: center; color: #fff; border-radius: 999px; font-weight: 800; box-shadow: 0 10px 24px rgba(0,0,0,0.25); }
.bubble-badge.red { background: linear-gradient(135deg, rgba(243,74,96,0.9), rgba(243,74,96,0.75)); }
.bubble-badge.purple { background: linear-gradient(135deg, rgba(124,87,233,0.95), rgba(124,87,233,0.75)); }
.bubble-badge.blue { background: linear-gradient(135deg, rgba(122,167,255,0.95), rgba(122,167,255,0.75)); }

@media (max-width: 900px) {
  .product-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .about-features { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; gap: 16px; }
  .stat-card { padding: 16px; }
  .feature-item { padding: 20px; }
  
  /* Small mobile optimizations */
  .container {
    padding: 0 12px;
  }
  
  .hero {
    padding: 40px 0 30px;
  }
  
  .section {
    padding: 30px 0;
  }
  
  .card {
    padding: 16px;
  }
  
  .btn {
    padding: 10px 16px;
    font-size: 0.875rem;
    min-height: 44px; /* Better touch target */
  }
  
  /* Improve touch targets */
  .menu a {
    min-height: 44px;
    padding: 12px 16px;
  }
  
  .hamburger {
    min-width: 44px;
    min-height: 44px;
  }
  
  /* Better spacing for small screens */
  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 0.95rem;
  }
  
  .display {
    font-size: 1.75rem;
    line-height: 1.1;
  }
}
