/* ============================================
   Wishtide Landing Page - Main Styles
   Mobile-First Design with Modern UI/UX
   ============================================ */

/* === CSS Variables === */
:root {
  /* Brand Colors */
  --wt-purple: #6D29D9;
  --wt-purple-alt: #6D28D9;
  --wt-purple-light: #A175E9;
  --wt-purple-glow: rgba(109, 41, 217, 0.4);
  
  /* Text Colors */
  --wt-text: #434343;
  --wt-text-secondary: rgba(67, 67, 67, 0.8);
  --wt-text-muted: rgba(67, 67, 67, 0.7);
  --wt-muted: #4F485A;
  
  /* Background Colors */
  --wt-bg: #FBFBFB;
  --wt-white: #FFFFFF;
  --wt-light-gray: rgba(118, 118, 128, 0.12);
  
  /* Border Colors */
  --wt-border: #F2F2F2;
  --wt-border-light: rgba(18, 32, 35, 0.14);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-purple: 0 8px 32px var(--wt-purple-glow);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--wt-text);
  background-color: var(--wt-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Top Navigation Bar === */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.navbar-custom.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--wt-border);
  box-shadow: var(--shadow-md);
}

.navbar-custom.scrolled .nav-link-custom {
  color: var(--wt-purple);
}

.navbar-custom.scrolled .nav-link-custom:hover,
.navbar-custom.scrolled .nav-link-custom.active {
  color: var(--wt-purple-alt);
  text-shadow: none;
}

.navbar-custom.scrolled .nav-link-hover-effect {
  background: rgba(109, 41, 217, 0.08);
}

/* Policy page navbar with hero gradient */
.policy-page .navbar-custom {
  background: linear-gradient(135deg, 
    rgba(109, 41, 217, 1) 0%, 
    rgba(139, 92, 246, 1) 25%,
    rgba(168, 85, 247, 1) 50%,
    rgba(192, 132, 252, 1) 75%,
    rgba(109, 41, 217, 1) 100%
  );
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: backgroundPulse 8s ease-in-out infinite alternate;
}

.policy-page .navbar-custom.scrolled {
  background: linear-gradient(135deg, 
    rgba(109, 41, 217, 1) 0%, 
    rgba(139, 92, 246, 1) 25%,
    rgba(168, 85, 247, 1) 50%,
    rgba(192, 132, 252, 1) 75%,
    rgba(109, 41, 217, 1) 100%
  );
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 10;
  transition: transform var(--transition-fast);
}

.navbar-brand:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 32px;
  display: block;
}

/* Desktop Navigation Menu */
.nav-menu {
  display: none;
  gap: 0.5rem;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link-custom {
  position: relative;
  padding: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color var(--transition-fast);
  overflow: hidden;
  border-radius: 12px;
}

.nav-link-text {
  position: relative;
  z-index: 1;
}

.nav-link-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity var(--transition-base);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.nav-link-custom:hover .nav-link-hover-effect,
.nav-link-custom.active .nav-link-hover-effect {
  opacity: 1;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

/* Navigation Actions */
.nav-actions {
  display: none;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 992px) {
  .nav-actions {
    display: flex;
  }
}

/* Custom Buttons */
.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-custom.btn-lg {
  padding: 1rem 2rem;
  font-size: 16px;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--wt-purple) 0%, var(--wt-purple-alt) 100%);
  color: white;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::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;
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}

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

.btn-outline {
  background: rgba(255, 255, 255, 0.95);
  color: var(--wt-purple);
  border: 2px solid rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.btn-outline:hover {
  background: var(--wt-white);
  border-color: var(--wt-white);
  color: var(--wt-purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Scrolled navbar button styles */
.navbar-custom.scrolled .btn-outline {
  background: var(--wt-white);
  color: var(--wt-purple);
  border: 2px solid var(--wt-purple);
}

.navbar-custom.scrolled .btn-outline:hover {
  background: var(--wt-purple);
  color: var(--wt-white);
  border-color: var(--wt-purple);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition-fast);
}

.mobile-menu-toggle:hover {
  background: var(--wt-light-gray);
}

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

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar-custom.scrolled .hamburger-line {
  background-color: #6D29D9;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  max-width: 400px;
  height: 100%;
  background: var(--wt-white);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wt-light-gray);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  color: var(--wt-text);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
  background: var(--wt-purple);
  color: white;
  transform: rotate(90deg);
}

.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: var(--wt-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.mobile-nav-link i:first-child {
  width: 24px;
  font-size: 18px;
  color: var(--wt-text-secondary);
  transition: color var(--transition-fast);
}

.mobile-nav-link i:last-child {
  margin-left: auto;
  font-size: 14px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: linear-gradient(135deg, rgba(109, 41, 217, 0.08), rgba(161, 117, 233, 0.08));
  color: var(--wt-purple);
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
  color: var(--wt-purple);
}

.mobile-nav-link:hover i:last-child,
.mobile-nav-link.active i:last-child {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--wt-border);
}

.mobile-menu-footer .btn-outline {
  background: var(--wt-white);
  color: var(--wt-purple);
  border: 2px solid var(--wt-purple);
}

.mobile-menu-footer .btn-outline:hover {
  background: var(--wt-purple);
  color: var(--wt-white);
  border-color: var(--wt-purple);
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--wt-border);
  padding: 0.5rem 0;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

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

.mobile-bottom-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.5rem;
  color: var(--wt-text-secondary);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.mobile-bottom-nav-item i {
  font-size: 20px;
  transition: all var(--transition-base);
}

.mobile-bottom-nav-item span:not(.nav-indicator) {
  transition: all var(--transition-fast);
}

.mobile-bottom-nav-item.active {
  color: var(--wt-purple);
}

.mobile-bottom-nav-item.active i {
  transform: scale(1.1);
}

.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--wt-purple), var(--wt-purple-light));
  border-radius: 3px 3px 0 0;
  transition: transform var(--transition-base);
}

.mobile-bottom-nav-item.active .nav-indicator {
  transform: translateX(-50%) scaleX(1);
}

/* === Hero Section === */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 1rem 8rem;
  background: linear-gradient(135deg, 
    rgba(109, 41, 217, 0.85) 0%, 
    rgba(139, 92, 246, 0.9) 25%,
    rgba(168, 85, 247, 0.85) 50%,
    rgba(192, 132, 252, 0.9) 75%,
    rgba(109, 41, 217, 0.85) 100%
  );
  position: relative;
  overflow: hidden;
  animation: backgroundPulse 8s ease-in-out infinite alternate;
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(219, 39, 119, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(50px, -40px) rotate(120deg); }
  66% { transform: translate(-30px, 30px) rotate(240deg); }
}

/* Animated Decorative Elements */
.hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Floating Icons */
.floating-icon {
  position: absolute;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
  animation: floatIcon 15s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(109, 41, 217, 0.5));
  opacity: 0.7;
}

.floating-icon i {
  animation: iconRotate 10s linear infinite;
}

@keyframes floatIcon {
  0%, 100% { 
    transform: translate(0, 0) scale(1); 
    opacity: 0.7;
  }
  25% { 
    transform: translate(30px, -40px) scale(1.1); 
    opacity: 0.9;
  }
  50% { 
    transform: translate(-20px, 20px) scale(0.9); 
    opacity: 0.6;
  }
  75% { 
    transform: translate(40px, 10px) scale(1.05); 
    opacity: 0.8;
  }
}

@keyframes iconRotate {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(15deg); }
}

.icon-1 { top: 15%; left: 10%; animation-delay: 0s; font-size: 2.5rem; }
.icon-2 { top: 25%; right: 15%; animation-delay: -2s; font-size: 2rem; }
.icon-3 { top: 60%; left: 8%; animation-delay: -4s; font-size: 2.2rem; }
.icon-4 { top: 35%; right: 12%; animation-delay: -6s; font-size: 2.3rem; }
.icon-5 { bottom: 20%; left: 15%; animation-delay: -8s; font-size: 2.4rem; }
.icon-6 { bottom: 15%; right: 10%; animation-delay: -10s; font-size: 2.1rem; }

/* Geometric Shapes */
.geo-shape {
  position: absolute;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(219, 39, 119, 0.4), rgba(109, 41, 217, 0.3));
  filter: blur(2px);
  animation: shapeFloat 20s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes shapeFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-30px, 40px) rotate(120deg); }
  66% { transform: translate(40px, -30px) rotate(240deg); }
}

.shape-1 { 
  width: 150px; 
  height: 150px; 
  top: 20%; 
  right: 25%; 
  animation-delay: -2s;
  transform: rotate(45deg);
}

.shape-2 { 
  width: 100px; 
  height: 100px; 
  bottom: 30%; 
  left: 20%; 
  animation-delay: -7s;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.4), rgba(192, 132, 252, 0.3));
}

.shape-3 { 
  width: 120px; 
  height: 120px; 
  top: 50%; 
  right: 10%; 
  animation-delay: -12s;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219, 39, 119, 0.3), rgba(109, 41, 217, 0.2));
}

/* Dotted Patterns */
.dotted-pattern {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.6) 2px, transparent 2px);
  background-size: 15px 15px;
  animation: patternDrift 18s linear infinite;
  opacity: 0.5;
}

@keyframes patternDrift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(50px, -50px) rotate(360deg); }
}

.pattern-1 { top: 35%; left: 5%; animation-delay: -3s; }
.pattern-2 { bottom: 25%; right: 8%; animation-delay: -9s; }

/* Curved Lines */
.curved-line {
  position: absolute;
  width: 200px;
  height: 200px;
  opacity: 0.6;
  animation: lineWave 12s ease-in-out infinite;
}

@keyframes lineWave {
  0%, 100% { transform: translateY(0) scaleX(1); }
  50% { transform: translateY(-20px) scaleX(1.1); }
}

.line-1 { top: 10%; left: 15%; animation-delay: -1s; }
.line-2 { bottom: 20%; right: 20%; animation-delay: -5s; }

@media (max-width: 768px) {
  .floating-icon { font-size: 1.5rem; }
  .geo-shape { display: none; }
  .dotted-pattern { width: 80px; height: 80px; }
  .curved-line { width: 150px; height: 150px; }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-top: 3rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding-top: 0;
  }
}

.hero-left-column {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-right-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Device Frame (Phone) === */
.device-frame {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 19.5;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 3D perspective container */
  perspective: 1200px;
}

.device-bezel {
  position: relative;
  width: 100%;
  height: 100%;
  /* Light silver frame */
  background: linear-gradient(145deg, #f8fafc, #dfe3ea 35%, #cbd3dc 65%, #e9edf2);
  border-radius: 36px;
  box-shadow: 0 22px 40px rgba(0,0,0,0.35), 0 10px 18px rgba(0,0,0,0.18), inset 0 0 0 2px rgba(255,255,255,0.65), inset 0 0 0 4px rgba(0,0,0,0.06);
  padding: 10px; /* inner bezel */
  /* 3D tilt */
  transform: rotateY(-18deg) rotateX(5deg) rotateZ(-2deg);
  transform-style: preserve-3d;
  transition: transform var(--transition-smooth), box-shadow var(--transition-base);
}

.device-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 22px;
  background: #0f1117;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.4);
  z-index: 2;
}

.device-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  /* slight inner shadow for depth */
  box-shadow: inset 0 0 24px rgba(0,0,0,0.45);
}

.device-screen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Gloss highlight */
.device-bezel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background: linear-gradient(25deg, rgba(255,255,255,0.22), rgba(255,255,255,0) 35%, rgba(255,255,255,0) 65%, rgba(255,255,255,0.15));
  pointer-events: none;
}

/* Base shadow to sell the 3D tilt */
.device-frame::before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 10%;
  right: 10%;
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.35), rgba(0,0,0,0.05) 60%, transparent 70%);
  filter: blur(6px);
  transform: translateZ(-1px);
}

/* Subtle hover parallax */
.device-frame:hover .device-bezel {
  transform: rotateY(-14deg) rotateX(4deg) rotateZ(-1deg) translateY(-2px);
  box-shadow: 0 28px 48px rgba(0,0,0,0.4), 0 12px 22px rgba(0,0,0,0.22), inset 0 0 0 2px rgba(255,255,255,0.65), inset 0 0 0 4px rgba(0,0,0,0.06);
}

/* Responsiveness for device frame */
@media (min-width: 768px) {
  .device-frame { max-width: 380px; }
}

@media (min-width: 992px) {
  .device-frame { max-width: 420px; }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.8s ease-out 0.2s both;
}

.gradient-text {
  background: linear-gradient(135deg, rgba(254, 243, 199, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.8s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: slideDown 0.8s ease-out 0.6s both;
}

.hero-actions .btn-custom {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 767px) {
  .hero-actions .btn-custom {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 140px;
  }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  animation: slideDown 0.8s ease-out 0.8s both;
}

.hero-stat {
  text-align: center;
  flex: 1;
  min-width: 0;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(251, 251, 251);
  line-height: 1.2;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  /* Prevent layout shift during counter animation */
  min-width: 85px;
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.stat-icon {
  font-size: 1.25rem;
  color: rgb(251, 251, 251);
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-stat-divider {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, transparent, var(--wt-border-light), transparent);
  flex-shrink: 0;
  display: none;
}

/* Privacy note layout */
.form-note {
  color: var(--wt-text-secondary);
}

.form-note .privacy-lead {
  font-size: 0.875rem;
  line-height: 0.1;
}


/* === Section Styles === */
.section-padding {
  padding: 3rem 1rem;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(109, 41, 217, 0.1);
    color: var(--wt-purple);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--wt-text);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--wt-text-secondary);
}

/* Feature Cards */
.feature-card {
  padding: 2rem;
  background: var(--wt-white);
  border: 1px solid var(--wt-border);
  border-radius: 16px;
  transition: all var(--transition-base);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(109, 41, 217, 0.2);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(109, 41, 217, 0.1), rgba(161, 117, 233, 0.1));
  border-radius: 12px;
  margin-bottom: 1.5rem;
  color: var(--wt-purple);
  font-size: 24px;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--wt-text);
}

.feature-card p {
  color: var(--wt-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* === Wishlist Section === */
.wishlist-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--wt-text);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-list-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-list-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--wt-purple), var(--wt-purple-light));
  border-radius: 12px;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(109, 41, 217, 0.2);
}

.feature-list-text h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--wt-text);
}

.feature-list-text p {
  color: var(--wt-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.wishlist-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wishlist-card-demo {
  width: 100%;
  max-width: 400px;
}

.demo-card {
  background: var(--wt-white);
  border: 1px solid var(--wt-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-smooth);
  position: relative;
}

.demo-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.demo-card-header {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.demo-card-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--wt-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.demo-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(109, 41, 217, 0.1), rgba(161, 117, 233, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--wt-purple);
}

.demo-card-content {
  padding: 1.5rem;
}

.demo-card-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.demo-user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, yellow, var(--wt-purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.demo-user-info {
  flex: 1;
  min-width: 0;
}

.demo-user-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--wt-text);
  margin: 0;
  line-height: 1.3;
}

.demo-user-handle {
  font-size: 0.8125rem;
  color: var(--wt-text-secondary);
  margin: 0;
  line-height: 1.3;
}

.demo-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--wt-text);
  line-height: 1.4;
}

.demo-card-location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--wt-text-secondary);
  margin-bottom: 0.25rem;
}

.demo-card-location i {
  color: var(--wt-purple);
}

.demo-card-date {
  font-size: 0.875rem;
  color: var(--wt-text-secondary);
  margin-bottom: 1rem;
}

.demo-card-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--wt-border);
  border-bottom: 1px solid var(--wt-border);
  margin-bottom: 0.75rem;
}

.demo-stat {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--wt-text-secondary);
}

.demo-stat i {
  color: var(--wt-text);
  font-size: 0.9375rem;
}

.demo-card-liked {
  font-size: 0.8125rem;
  color: var(--wt-text-secondary);
  margin: 0;
}

.demo-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.demo-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(109, 41, 217, 0.1);
  border-radius: 20px;
  font-size: 0.8125rem;
  color: var(--wt-purple);
  font-weight: 500;
}

.demo-tag i {
  font-size: 0.875rem;
}

/* === Responsive Typography === */
@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
  
  .hero-left-column {
    flex: 1;
    text-align: left;
  }
  
  .hero-right-column {
    flex: 1;
  }
  
  .hero-actions {
    justify-content: flex-start;
  }
  
  .hero-stats {
    justify-content: flex-start;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-padding {
    padding: 4rem 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 2.5rem;
    margin-top: 4rem;
  }
  
  .hero-stat-divider {
    display: block;
    height: 40px;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .section-padding {
    padding: 5rem 1rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .hero-stats {
    gap: 4rem;
  }
}

/* === Utility Classes === */
.bg-light {
  background-color: var(--wt-bg) !important;
}

.w-100 {
  width: 100%;
}

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

/* ============================= */
/* How It Works Section          */
/* ============================= */
.steps-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.step-card {
  position: relative;
  background: white;
  border: 1px solid var(--wt-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.step-number {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wt-purple), var(--wt-purple-light));
  color: white;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(109,41,217,0.25);
}

.step-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  background: rgba(109,41,217,0.12);
  color: var(--wt-purple);
  font-size: 1.75rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wt-text);
  margin: 0.5rem 0 0.75rem;
}

.step-desc {
  color: var(--wt-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* dashed connectors on desktop */
@media (min-width: 992px) {
  .step-card { overflow: visible; }
  /* .step-card:nth-child(1)::after,
  .step-card:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 80px;
    right: -32px;
    width: 64px;
    height: 1px;
    border-top: 3px dashed rgba(161, 117, 233, 0.6);
  } */
}

/* ============================= */
/* Use Cases Section             */
/* ============================= */
.section-chip {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: rgba(109,41,217,0.12);
  color: var(--wt-purple);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.usecases-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 576px) {
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .usecases-grid { grid-template-columns: repeat(4, 1fr); }
}

.usecase-card {
  background: rgba(118,118,128,0.06);
  border: 1px solid var(--wt-border);
  border-radius: 16px;
  padding: 2rem 1rem;
  text-align: center;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.usecase-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.75rem;
  display: grid;
  place-items: center;
  font-size: 3rem;
  line-height: 1;
}

.usecase-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  color: var(--wt-text);
}

/* === Waitlist Section === */
.waitlist-section {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, 
    rgba(168, 85, 247, 0.15) 0%, 
    rgba(139, 92, 246, 0.2) 100%
  );
  position: relative;
  overflow: hidden;
}

.waitlist-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: float 20s ease-in-out infinite;
}

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

.waitlist-icon {
  font-size: 3.5rem;
  color: var(--wt-purple);
  margin-bottom: 1.5rem;
  animation: iconPulse 2s ease-in-out infinite;
}

.waitlist-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--wt-text);
  margin-bottom: 1rem;
}

.waitlist-description {
  font-size: 1.125rem;
  color: var(--wt-text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.waitlist-form {
  margin-bottom: 2rem;
}

/* Waitlist Success State */
.waitlist-success {
  text-align: center;
  padding: 2rem 1rem;
  animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.success-emoji {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
  animation: bounceIn 0.8s ease-out 0.2s both;
}

.success-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--wt-dark, #1a1a2e);
  margin-bottom: 0.75rem;
  animation: slideUp 0.5s ease-out 0.3s both;
}

.success-message {
  font-size: 1.05rem;
  color: var(--wt-text, #333);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 1.25rem;
  animation: slideUp 0.5s ease-out 0.4s both;
}

.success-confetti {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  animation: slideUp 0.5s ease-out 0.5s both;
}

.success-confetti span {
  animation: wiggle 2s ease-in-out infinite;
}

.success-confetti span:nth-child(2) { animation-delay: 0.15s; }
.success-confetti span:nth-child(3) { animation-delay: 0.3s; }
.success-confetti span:nth-child(4) { animation-delay: 0.45s; }
.success-confetti span:nth-child(5) { animation-delay: 0.6s; }

@keyframes successPop {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

.form-group-horizontal {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group-horizontal .btn-custom {
  flex: 0 0 auto;
}

.form-control-custom {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--wt-text);
  transition: all var(--transition-base);
}

.form-control-custom:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 1);
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-control-custom::placeholder {
  color: var(--wt-text-muted);
}

.form-note {
  font-size: 0.875rem;
  color: var(--wt-text-muted);
  justify-content: center;
  margin: 0;
}

.form-note i {
  font-size: 0.875rem;
}

.waitlist-section .btn-primary-custom {
  background: linear-gradient(135deg, var(--wt-purple) 0%, var(--wt-purple-alt) 100%);
  color: white;
  font-weight: 600;
}

.waitlist-section .btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--wt-purple-alt) 0%, var(--wt-purple) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}

.waitlist-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--wt-text);
  font-weight: 500;
  font-size: 0.95rem;
}

.benefit-item i {
  color: var(--wt-purple);
  font-size: 1.25rem;
}

@media (max-width: 767px) {
  .waitlist-title {
    font-size: 2rem;
  }
  
  .form-group-horizontal {
    flex-direction: column;
  }
  
  .form-control-custom {
    min-width: 100%;
  }
  
  .waitlist-benefits {
    gap: 1rem;
    flex-wrap: nowrap;
  }

  .benefit-item {
    font-size: 0.75rem;
    gap: 0.25rem;
  }

  .benefit-item i {
    font-size: 1rem;
  }
}

/* === Waitlist Modal === */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: white;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 767px) {
  .modal-container {
    max-height: 90vh;
    overflow-y: auto;
  }
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--wt-light-gray);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--wt-text);
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  background: var(--wt-purple);
  color: white;
  transform: rotate(90deg);
}

.modal-content {
  padding: 3rem 2rem;
  text-align: center;
}

.modal-content .waitlist-icon {
  font-size: 3rem;
  color: var(--wt-purple);
  margin-bottom: 1rem;
}

.modal-content .waitlist-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--wt-text);
  margin-bottom: 1rem;
}

.modal-content .waitlist-description {
  font-size: 1rem;
  color: var(--wt-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.modal-content .waitlist-form {
  margin-bottom: 2rem;
}

.modal-content .form-group {
  margin-bottom: 1rem;
}

.modal-content .form-control-custom {
  width: 100%;
  min-width: 100%;
  border-color: var(--wt-border);
  background: white;
}

.modal-content .form-note {
  margin-top: 1rem;
  color: var(--wt-text-muted);
}

.modal-content .waitlist-benefits {
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .modal-content {
    padding: 2rem 1.5rem;
  }
  
  .modal-content .waitlist-title {
    font-size: 1.75rem;
  }
}

/* ============================= */
/* Testimonials Section          */
/* ============================= */
.testimonials-container {
  margin: 0 auto;
}

.testimonial-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--wt-purple);
  color: var(--wt-purple);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-arrow:hover {
  background: var(--wt-purple);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(109, 41, 217, 0.3);
}

.testimonial-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.testimonial-arrow-left {
  left: -60px;
}

.testimonial-arrow-right {
  right: -60px;
}

@media (max-width: 991px) {
  .testimonial-arrow-left {
    left: -20px;
  }
  
  .testimonial-arrow-right {
    right: -20px;
  }
  
  .testimonial-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .testimonial-arrow {
    display: none;
  }
}

.testimonials-track {
  position: relative;
  height: auto;
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
  will-change: transform;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--wt-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s ease;
}

/* Desktop: 3 items per view */
@media (min-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

/* Tablet: 2 items per view */
@media (min-width: 768px) and (max-width: 991.98px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

/* Mobile: 1 item per view with swipe */
@media (max-width: 767.98px) {
  .testimonials-container {
    overflow: visible;
  }
  .testimonials-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
}

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--wt-purple), var(--wt-purple-light));
  color: white;
  border: none;
}

.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .author-name,
.testimonial-card.featured .author-role {
  color: white;
}

/* Desktop: Hover and scale effects */
@media (min-width: 992px) {
  .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  }
  .testimonial-card.featured {
    transform: scale(1.03);
  }
  .testimonial-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 16px 40px rgba(109, 41, 217, 0.3);
  }
}

@media (max-width: 991px) {
  .testimonials-track {
    min-height: 280px;
  }
}

@media (min-width: 992px) {
  .testimonials-track {
    min-height: auto;
  }
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  font-size: 1rem;
}

.testimonial-card .testimonial-stars {
  color: #FFA500;
}

.testimonial-card.featured .testimonial-stars {
  color: #FFD700;
}

.testimonial-text {
  color: var(--wt-text);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--wt-border);
}

.testimonial-card.featured .testimonial-author {
  border-top-color: rgba(255, 255, 255, 0.3);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-avatar i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wt-purple), var(--wt-purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  color: var(--wt-text);
  font-size: 0.9375rem;
  line-height: 1.3;
}

.author-role {
  color: var(--wt-text-secondary);
  font-size: 0.8125rem;
  line-height: 1.3;
}

.testimonials-pagination {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(109, 41, 217, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-dot:hover {
  background: rgba(109, 41, 217, 0.6);
  transform: scale(1.2);
}

.pagination-dot.active {
  background: var(--wt-purple);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .testimonials-track {
    min-height: 320px;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
}

/* ============================= */
/* FAQs Section                  */
/* ============================= */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--wt-border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--wt-purple);
  box-shadow: 0 4px 12px rgba(109, 41, 217, 0.1);
}

.faq-header {
  margin: 0;
}

.faq-button {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-button:hover {
  background: rgba(109, 41, 217, 0.04);
}

.faq-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(109, 41, 217, 0.08), rgba(161, 117, 233, 0.08));
  border-bottom: 1px solid rgba(109, 41, 217, 0.1);
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--wt-text);
  flex: 1;
  padding-right: 1rem;
  line-height: 1.5;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wt-purple), var(--wt-purple-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-button:not(.collapsed) .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  padding: 1rem 2rem 1.5rem;
  color: var(--wt-text);
  line-height: 1.7;
  font-size: 1rem;
}

.faq-body p {
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-button {
    padding: 1.25rem 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-body {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .faq-button {
    padding: 1rem 1.25rem;
  }

  .faq-question {
    font-size: 0.9375rem;
  }

  .faq-body {
    padding: 0 1.25rem 1rem;
    font-size: 0.875rem;
  }
}

/* ============================= */
/* Back to Top Button            */
/* ============================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wt-purple), var(--wt-purple-light));
  color: white;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(109, 41, 217, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 16px rgba(109, 41, 217, 0.4);
}

.back-to-top:active {
  transform: translateY(-2px) scale(1.05);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 90px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
  }
}

/* ============================= */
/* Cookie Consent Popup          */
/* ============================= */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--wt-border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-icon {
  font-size: 2.5rem;
  color: var(--wt-purple);
  animation: cookieBounce 2s ease-in-out infinite;
}

@keyframes cookieBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(-5deg); }
  75% { transform: translateY(-3px) rotate(5deg); }
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--wt-text);
  margin-bottom: 0.5rem;
}

.cookie-description {
  font-size: 0.9375rem;
  color: var(--wt-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.cookie-link {
  color: var(--wt-purple);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.cookie-link:hover {
  color: var(--wt-purple-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--wt-purple), var(--wt-purple-alt));
  color: white;
  box-shadow: var(--shadow-sm);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}

.cookie-btn-decline {
  background: var(--wt-white);
  color: var(--wt-text);
  border: 2px solid var(--wt-border);
}

.cookie-btn-decline:hover {
  background: var(--wt-light-gray);
  border-color: var(--wt-text-secondary);
}
.cookie-modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wt-light-gray);
  border: none;
  border-radius: 50%;
  font-size: 1.125rem;
  color: var(--wt-text);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.cookie-modal-close:hover {
  background: var(--wt-purple);
  color: white;
  transform: rotate(90deg);
}

/* Cookie Policy Offcanvas */
.cookie-offcanvas {
  max-width: 480px;
  background: var(--wt-white);
  box-shadow: var(--shadow-lg);
  z-index: 11000;
}

.cookie-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--wt-border);
}

.cookie-offcanvas-body {
  font-size: 0.9375rem;
  color: var(--wt-text-secondary);
}

.cookie-offcanvas-body h6 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--wt-text);
}

.cookie-offcanvas-body a {
  color: var(--wt-purple);
  text-decoration: none;
  font-weight: 600;
}

.cookie-offcanvas-body a:hover {
  text-decoration: underline;
}

.offcanvas-backdrop.show {
  z-index: 10990;
}

/* Cookie Preference Card */
.cookie-preference-card {
  background: var(--wt-white);
  border: 1px solid var(--wt-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
}

.cookie-preference-card:hover {
  border-color: var(--wt-purple);
  box-shadow: 0 2px 8px rgba(102, 16, 242, 0.1);
}

.cookie-preference-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.cookie-preference-header h6 {
  margin-bottom: 0.25rem;
  color: var(--wt-dark);
  font-weight: 600;
}

.cookie-preference-header p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--wt-text);
  line-height: 1.5;
}

.form-check-input:checked {
  background-color: var(--wt-purple);
  border-color: var(--wt-purple);
}

.form-check-input:focus {
  border-color: var(--wt-purple);
  box-shadow: 0 0 0 0.25rem rgba(102, 16, 242, 0.25);
}

@media (max-width: 768px) {
  .cookie-consent {
    padding: 1.25rem;
  }

  .cookie-content {
    gap: 1rem;
  }

  .cookie-icon {
    font-size: 2rem;
  }

  .cookie-text {
    min-width: 100%;
  }

  .cookie-title {
    font-size: 1rem;
  }

  .cookie-description {
    font-size: 0.875rem;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

/* ============================
   Footer Styles
   ============================ */

.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: var(--wt-white);
  padding: 4rem 0 2rem;
  margin-top: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  width: 180px;
  height: auto;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  max-width: 300px;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link.social-instagram::before {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.social-x::before {
  background: linear-gradient(135deg, #1a1a2e, #2d2d44);
}

.social-link i {
  position: relative;
  z-index: 1;
}

.social-link:hover {
  color: var(--wt-white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.social-link:hover::before {
  opacity: 1;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--wt-white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-list li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-list li a:hover {
  color: var(--wt-white);
  padding-left: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social-handle {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social-handle a {
  color: var(--wt-purple-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-social-handle a:hover {
  color: var(--wt-white);
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 767.98px) {
  .footer {
    padding: 3rem 0 5rem;
    text-align: center;
  }

  .footer-content {
    gap: 2.5rem;
  }

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

  .footer-tagline {
    text-align: center;
    max-width: 100%;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

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

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

  .footer-logo {
    width: 150px;
  }
}
/* ============================
   Policy/Legal Pages Styles
   ============================ */

.policy-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--wt-text);
}

.policy-content h2 {
  color: var(--wt-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  color: var(--wt-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  margin-bottom: 1rem;
}

.policy-content ul {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.policy-content ul li {
  margin-bottom: 0.5rem;
}

.policy-content a {
  color: var(--wt-purple);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.policy-content a:hover {
  color: var(--wt-purple-alt);
  text-decoration: underline;
}

.policy-content hr {
  border-color: rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.policy-content .lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--wt-dark);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .policy-content {
    font-size: 0.95rem;
  }

  .policy-content .lead {
    font-size: 1rem;
  }

  .policy-content h2 {
    font-size: 1.5rem;
  }

  .policy-content h3 {
    font-size: 1.25rem;
  }
}