/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Modern color palette */
  --primary: #0f0f23;
  --primary-light: #1a1a2e;
  --accent: #6366f1;
  --accent-hover: #4f46e5;
  --accent-light: #818cf8;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --purple: #8b5cf6;
  --pink: #ec4899;
  
  /* Neutral colors */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', Consolas, monospace;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Border radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
  color: var(--gray-300);
  font-size: 1.125rem;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

/* ===== HEADER ===== */
.header {
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-normal);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  color: var(--gray-300);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--purple));
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::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: var(--transition-slow);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: var(--primary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
}

/* Particles background */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 var(--space-lg);
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.hero p {
  font-size: 1.25rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.hero .btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
  padding: var(--space-lg) var(--space-xl);
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.hero .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: var(--space-lg) var(--space-xl);
  font-size: 1.1rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.verification-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: var(--accent-light);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
  margin-top: var(--space-lg);
}

.verification-badge svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Hero Image Section */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-screenshot {
  width: 100%;
  max-width: 500px;
  border-radius: 2rem;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes float {
  0% {
    transform: translateY(0) rotateY(0deg);
  }
  50% {
    transform: translateY(-20px) rotateY(5deg);
  }
  100% {
    transform: translateY(0) rotateY(0deg);
  }
}

.gradient-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.15) 0%,
    rgba(139, 92, 246, 0.1) 30%,
    rgba(99, 102, 241, 0) 70%
  );
  z-index: -1;
  animation: pulse 8s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.1);
    opacity: 0.4;
  }
}

/* ===== FEATURES SECTION ===== */
.features {
  background: var(--primary-light);
  padding: var(--space-3xl) 0;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
  background-size: 400px 400px, 300px 300px;
  pointer-events: none;
}

.features .container {
  position: relative;
  z-index: 2;
}

.features h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.features > .container > p {
  color: var(--gray-300);
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: 1.25rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

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

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: white;
  font-size: 1.5rem;
}

.feature-card h3 {
  margin-bottom: var(--space-md);
  color: var(--white);
}

.feature-card p {
  color: var(--gray-300);
  margin-bottom: var(--space-lg);
}

.feature-highlight {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  background-size: 500px 500px, 400px 400px;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: white;
  margin-bottom: var(--space-lg);
}

.cta-section p {
  color: var(--gray-300);
  font-size: 1.25rem;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PRICING SECTION ===== */
.pricing {
  background: var(--primary);
  padding: var(--space-3xl) 0;
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, transparent 48%, rgba(99, 102, 241, 0.02) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(139, 92, 246, 0.02) 50%, transparent 52%);
  background-size: 60px 60px, 60px 60px;
  pointer-events: none;
}

.pricing .container {
  position: relative;
  z-index: 2;
}

.pricing h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.pricing > .container > p {
  color: var(--gray-300);
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: 1.25rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
  position: relative;
  backdrop-filter: blur(10px);
}

.pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.pricing-period {
  color: var(--gray-400);
  font-size: 1rem;
}

.pricing-total {
  color: var(--gray-300);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: var(--space-sm);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.pricing-features li {
  padding: var(--space-sm) 0;
  color: var(--gray-300);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.pricing-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
}

.pricing-cta {
  width: 100%;
}

/* ===== DOWNLOAD SECTION ===== */
.download {
  background: var(--primary-light);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
}

.download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 75%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
  background-size: 400px 400px, 300px 300px;
  pointer-events: none;
}

.download .container {
  position: relative;
  z-index: 2;
}

.download h2 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.download p {
  color: var(--gray-300);
  margin-bottom: var(--space-2xl);
  font-size: 1.25rem;
}

.download-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
}

.download-btn {
  min-width: 200px;
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

/* ===== INSTRUCTIONS SECTION ===== */
.instructions {
  background: var(--primary);
  padding: var(--space-3xl) 0;
  position: relative;
}

.instructions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, transparent 48%, rgba(99, 102, 241, 0.02) 50%, transparent 52%);
  background-size: 80px 80px;
  pointer-events: none;
}

.instructions .container {
  position: relative;
  z-index: 2;
}

.instructions h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.instructions > .container > p {
  color: var(--gray-300);
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: 1.25rem;
}

.instructions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.instruction-card {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
  position: relative;
  backdrop-filter: blur(10px);
}

.instruction-card:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.instruction-number {
  position: absolute;
  top: -15px;
  left: var(--space-lg);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.instruction-card h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--white);
}

.instruction-card p {
  color: var(--gray-300);
  margin-bottom: var(--space-lg);
}

.download-platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.platform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  min-height: 48px;
  backdrop-filter: blur(10px);
}

.platform-btn:hover {
  border-color: var(--accent);
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.platform-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.platform-icon.windows {
  background: linear-gradient(135deg, #00a4ef, #0078d4);
  color: white;
}

.platform-icon.android {
  background: linear-gradient(135deg, #3ddc84, #2bb673);
  color: white;
}

.platform-icon.macos {
  background: linear-gradient(135deg, #000000, #333333);
  color: white;
}

.platform-icon.ios {
  background: linear-gradient(135deg, #007aff, #5856d6);
  color: white;
}

.platform-btn:hover .platform-icon.windows {
  background: linear-gradient(135deg, #0078d4, #00a4ef);
}

.platform-btn:hover .platform-icon.android {
  background: linear-gradient(135deg, #2bb673, #3ddc84);
}

.platform-btn:hover .platform-icon.macos {
  background: linear-gradient(135deg, #333333, #000000);
}

.platform-btn:hover .platform-icon.ios {
  background: linear-gradient(135deg, #5856d6, #007aff);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
  background: var(--primary-light);
  padding: var(--space-3xl) 0;
  position: relative;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 40% 60%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 60% 40%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
  background-size: 400px 400px, 300px 300px;
  pointer-events: none;
}

.reviews .container {
  position: relative;
  z-index: 2;
}

.reviews h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.reviews > .container > p {
  color: var(--gray-300);
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: 1.25rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.25rem;
}

.review-info h4 {
  margin-bottom: var(--space-xs);
  color: var(--white);
}

.review-info p {
  color: var(--gray-400);
  margin-bottom: 0;
  font-size: 0.875rem;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.star {
  color: #fbbf24;
  font-size: 1.125rem;
}

.review-text {
  color: var(--gray-300);
  font-style: italic;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: white;
  padding: var(--space-3xl) 0 var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-section h3 {
  color: white;
  margin-bottom: var(--space-lg);
  font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
  color: var(--gray-300);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  text-align: center;
  color: var(--gray-400);
}

/* Premium Setup Section */
.premium-setup {
  background: var(--primary-light);
  position: relative;
  overflow: hidden;
  padding: var(--space-4xl) 0;
  color: white;
}

.premium-setup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
    linear-gradient(90deg, transparent 48%, rgba(99, 102, 241, 0.02) 50%, transparent 52%);
  background-size: 400px 400px, 300px 300px, 60px 60px;
  animation: backgroundFloat 25s ease-in-out infinite reverse;
  pointer-events: none;
}

.premium-setup-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.setup-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.setup-header p {
  font-size: 1.125rem;
  color: var(--gray-300);
  margin-bottom: var(--space-xl);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.setup-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.setup-step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: white;
}

.step-content p {
  color: var(--gray-300);
  line-height: 1.6;
}

.setup-cta {
  margin-top: var(--space-xl);
  text-align: center;
}

.setup-btn {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border: none;
  color: white;
  font-weight: 600;
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.setup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
  border-radius: 40px;
  padding: 8px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.app-interface {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.app-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.app-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}

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

.status-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.status-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(99, 102, 241, 0.2);
}

.status-item.active {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
}

.status-icon {
  font-size: 1.5rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.status-item.active .status-icon {
  background: rgba(99, 102, 241, 0.2);
}

.status-text {
  color: var(--gray-300);
  font-weight: 500;
}

.status-item.active .status-text {
  color: var(--accent-light);
  font-weight: 600;
}

.app-footer {
  margin-top: auto;
  padding: 16px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.connection-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.9rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-card {
  position: absolute;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--accent-light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-card.card-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero p {
    max-width: 100%;
  }

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

  .hero-image {
    margin-top: 2rem;
  }
  
  .premium-setup-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 2rem;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .hero p {
    font-size: 1.125rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .hero .btn-primary,
  .hero .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .premium-setup {
    padding: 2rem 0;
  }
  
  .setup-header h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
  
  .phone-frame {
    width: 240px;
    height: 480px;
  }
  
  .floating-card {
    display: none;
  }
  
  .verification-badge {
    font-size: 0.8rem;
    padding: var(--space-xs) var(--space-sm);
  }

  .nav {
    display: none;
  }
  
  .features-grid,
  .pricing-grid,
  .reviews-grid,
  .instructions-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
  
  .download-platforms {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .premium-setup {
    padding: 1.5rem 0;
  }
  
  .phone-frame {
    width: 200px;
    height: 400px;
  }
  
  .app-interface {
    padding: 12px;
  }
  
  .app-header {
    padding: 12px;
    margin-bottom: 20px;
  }
  
  .app-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  
  .app-title {
    font-size: 1rem;
  }
  
  .status-item {
    padding: 12px;
    gap: 8px;
  }
  
  .status-icon {
    width: 24px;
    height: 24px;
    font-size: 1.25rem;
  }
  
  .status-text {
    font-size: 0.875rem;
  }

  .container {
    padding: 0 var(--space-md);
  }
  
  .hero-buttons,
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero .btn,
  .download-btn {
    min-width: 250px;
  }
  
  .verification-badge {
    font-size: 0.8rem;
    padding: var(--space-xs) var(--space-md);
    max-width: 350px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .nav {
    display: none;
  }
  
  .hero-buttons,
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero .btn,
  .download-btn {
    min-width: 250px;
  }
  
  .features-grid,
  .pricing-grid,
  .reviews-grid,
  .instructions-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
  
  .download-platforms {
    grid-template-columns: 1fr;
  }
  
  .verification-badge {
    font-size: 0.8rem;
    padding: var(--space-xs) var(--space-md);
    max-width: 350px;
  }
}

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

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

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

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ===== UTILITIES ===== */
.text-center {
  text-align: center;
}

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }
.mb-6 { margin-bottom: var(--space-2xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }
.mt-6 { margin-top: var(--space-2xl); }

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
} 

/* ===== HAPP THEME (scoped) ===== */
.theme-happ .hero {
  min-height: 70vh;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 40%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
  display: block;
  padding: 8rem 0 4rem;
  color: #111827;
}

.theme-happ .hero .container,
.theme-happ .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.theme-happ .hero-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.theme-happ .hero h1 {
  color: #111827;
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.theme-happ .hero p {
  color: #4b5563;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA buttons */
.theme-happ .hero .btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}
.theme-happ .hero .btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.35);
}
.theme-happ .hero .btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #e5e7eb;
  color: #1f2937;
}

/* Provider badge */
.theme-happ .verification-badge {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #e5e7eb;
  color: #111827;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.theme-happ .verification-badge svg { color: #2563eb; }

/* Blobs */
.theme-happ .blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.theme-happ .blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(32px);
  opacity: 0.7;
  animation: blobFloat 7s infinite ease-in-out;
}
.theme-happ .blob-1 { top: 5rem; left: 2.5rem; width: 18rem; height: 18rem; background: #dbeafe; }
.theme-happ .blob-2 { top: 10rem; right: 2.5rem; width: 18rem; height: 18rem; background: #ede9fe; animation-delay: 2s; }
.theme-happ .blob-3 { bottom: -2rem; left: 5rem; width: 18rem; height: 18rem; background: #fee2e2; animation-delay: 4s; }

@keyframes blobFloat {
  0% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-40px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(0.97); }
  100% { transform: translate(0,0) scale(1); }
}

/* Light sections */
.theme-happ .features,
.theme-happ .instructions,
.theme-happ .download,
.theme-happ .pricing,
.theme-happ .reviews {
  background: #ffffff;
}

.theme-happ .features h2,
.theme-happ .instructions h2,
.theme-happ .download h2,
.theme-happ .pricing h2,
.theme-happ .reviews h2 { color: #111827; }

.theme-happ .features > .container > p,
.theme-happ .instructions > .container > p,
.theme-happ .download > .container > p,
.theme-happ .pricing > .container > p,
.theme-happ .reviews > .container > p { color: #4b5563; }

.theme-happ .feature-card,
.theme-happ .instruction-card,
.theme-happ .pricing-card,
.theme-happ .review-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.theme-happ .feature-card:hover,
.theme-happ .instruction-card:hover,
.theme-happ .pricing-card:hover,
.theme-happ .review-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.theme-happ .feature-card h3,
.theme-happ .instruction-card h3,
.theme-happ .pricing-name { color: #111827; }

.theme-happ .feature-card p,
.theme-happ .instruction-card p,
.theme-happ .pricing-period,
.theme-happ .pricing-total { color: #4b5563; }

/* Theme-happ CTA section light variant */
.theme-happ .cta-section {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 60%, #eff6ff 100%);
  color: #111827;
}
.theme-happ .cta-section h2 { color: #111827; }
.theme-happ .cta-section p { color: #4b5563; }

/* Theme-happ footer contrast fix */
.theme-happ .footer { background: #0f172a; }
.theme-happ .footer-section h3 { color: #ffffff; }
.theme-happ .footer-section p,
.theme-happ .footer-section a { color: rgba(255,255,255,0.85); }
.theme-happ .footer-section a:hover { color: #ffffff; }
.theme-happ .footer-bottom { color: rgba(255,255,255,0.7); border-top-color: rgba(255,255,255,0.15); }

/* Success button */
.btn-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
}
.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(16, 185, 129, 0.35);
}

/* Theme-happ platform buttons on white */
.theme-happ .platform-btn {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #1f2937;
}
.theme-happ .platform-btn:hover {
  background: #f8fafc;
  border-color: #2563eb;
  color: #2563eb;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.15);
}

/* Premium-setup: light theme and screenshot slot */
.theme-happ .premium-setup {
  background: #ffffff;
  color: #111827;
}
.theme-happ .premium-setup .setup-header p { color: #4b5563; }
.theme-happ .premium-setup .setup-step { background: #ffffff; border: 1px solid #e5e7eb; }
.theme-happ .premium-setup .setup-step:hover { border-color: #c7d2fe; box-shadow: 0 16px 32px rgba(0,0,0,0.08); }
.theme-happ .screenshot-slot {
  min-height: 420px;
  border: 2px dashed #e5e7eb;
  border-radius: 16px;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-weight: 600;
}
@media (max-width: 768px) {
  .theme-happ .screenshot-slot { min-height: 260px; }
}

/* Spread floating words */
.premium-setup .floating-card.card-1 { top: 12%; left: 5%; }
.premium-setup .floating-card.card-2 { top: 68%; right: 8%; }
.premium-setup .floating-card.card-3 { bottom: 18%; left: 32%; }

/* Make floating words a bit subtler */
.premium-setup .floating-card {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
  color: #2563eb;
} 

/* Theme-happ typography overrides to prevent white-on-white */
.theme-happ h1,
.theme-happ h2,
.theme-happ h3,
.theme-happ h4,
.theme-happ h5,
.theme-happ h6 { color: #111827; }
.theme-happ p,
.theme-happ li,
.theme-happ .nav-link { color: #4b5563; }
.theme-happ .feature-card h3,
.theme-happ .instruction-card h3,
.theme-happ .pricing-name { color: #111827; }
.theme-happ .feature-card p,
.theme-happ .instruction-card p,
.theme-happ .pricing-features li { color: #4b5563; }

/* Screenshot wrapper */
.theme-happ .screenshot-wrapper { position: relative; overflow: visible; }
.theme-happ .screenshot-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  border: 1px solid rgba(0,0,0,0.06);
}

/* Floating words around screenshot (relative to wrapper) */
.theme-happ .screenshot-wrapper .floating-elements { position: absolute; inset: 0; }
.theme-happ .screenshot-wrapper .floating-card.card-1 { top: 10%; left: -8%; }
.theme-happ .screenshot-wrapper .floating-card.card-2 { top: 65%; right: -6%; }
.theme-happ .screenshot-wrapper .floating-card.card-3 { bottom: 12%; left: 28%; } 

/* Theme-happ premium-setup heading readability */
.theme-happ .premium-setup .setup-header h2 {
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: #111827 !important;
  text-shadow: none;
}
.theme-happ .premium-setup .setup-header p {
  color: #4b5563 !important;
} 

/* Theme-happ hero two-column with screenshot */
.theme-happ .hero-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-2xl); align-items: center; }
.theme-happ .hero-text { text-align: left; }
.theme-happ .hero-shot { display: flex; justify-content: center; }
.theme-happ .hero-shot img { max-width: 420px; width: 100%; height: auto; border-radius: 28px; box-shadow: 0 25px 50px rgba(0,0,0,0.2); border: 1px solid rgba(0,0,0,0.06); }

@media (max-width: 1024px) {
  .theme-happ .hero-content { grid-template-columns: 1fr; }
  .theme-happ .hero-text { text-align: center; }
  .theme-happ .hero-shot { margin-top: 24px; }
} 

/* Theme-happ header high-contrast nav */
.theme-happ .header { background: rgba(255,255,255,0.98); border-bottom: 1px solid #e5e7eb; }
.theme-happ .logo { color: #111827; }
.theme-happ .nav-link { color: #111827; font-weight: 600; }
.theme-happ .nav-link:hover { color: #2563eb; } 

/* Theme-happ mobile compaction */
@media (max-width: 768px) {
  .theme-happ .container { padding: 0 16px; }
  .theme-happ .hero { padding: 8rem 0 4rem !important; }
  .theme-happ .hero .container { display: flex; align-items: center; min-height: 60vh; }
  .theme-happ h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .theme-happ .features-grid,
  .theme-happ .pricing-grid,
  .theme-happ .instructions-grid,
  .theme-happ .reviews-grid { gap: 12px; }

  .theme-happ .feature-card,
  .theme-happ .pricing-card,
  .theme-happ .instruction-card,
  .theme-happ .review-card { padding: 14px 16px; border-radius: 12px; max-width: 560px; margin: 10px auto; }

  .theme-happ .feature-card p,
  .theme-happ .instruction-card p,
  .theme-happ .pricing-features li,
  .theme-happ .reviews .review-text { font-size: 0.95rem; line-height: 1.45; }

  .theme-happ .pricing-price { font-size: 2rem; }
  .theme-happ .pricing-name { font-size: 1.125rem; }
  .theme-happ .pricing-features li { padding: 6px 0; }

  .theme-happ .instruction-number { width: 32px; height: 32px; font-size: 0.95rem; top: -12px; }

  .theme-happ .download-platforms { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .theme-happ .platform-btn { padding: 10px 12px; border-radius: 10px; min-height: 40px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .theme-happ .hero { padding: 10rem 0 5rem !important; }
  .theme-happ .hero .container { min-height: 50vh; }
  .theme-happ h1 { font-size: clamp(1.6rem, 8vw, 2rem); }
  .theme-happ .hero p { font-size: 1rem; }
  .theme-happ .pricing-price { font-size: 1.75rem; }
  .theme-happ .feature-card,
  .theme-happ .pricing-card,
  .theme-happ .instruction-card,
  .theme-happ .review-card { padding: 12px 14px; border-radius: 10px; }
} 

/* Theme-happ overall background slightly darker to contrast white cards */
.theme-happ { background: #e3e8f0; }

/* Darken hero background a touch */
.theme-happ .hero { background: linear-gradient(135deg, #dde5f1 0%, #f7f9fc 45%, #dfe7fb 100%); }

/* Premium setup slightly tinted background */
.theme-happ .premium-setup { background: #f3f6fa; }

/* Platform icons now use Font Awesome instead of custom SVG masks */

/* Hover states removed - using Tailwind CSS classes now */ 

/* Premium-setup screenshot alignment */
.theme-happ .premium-setup-content { align-items: center; }
.theme-happ .screenshot-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  margin: 0 auto;
}
.theme-happ .screenshot-img {
  max-width: 360px;
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.22);
  border: 1px solid rgba(0,0,0,0.06);
  transform: none; /* no tilt */
}

/* Tidy floating labels around the screenshot */
.theme-happ .screenshot-wrapper .floating-elements { position: absolute; inset: 0; pointer-events: none; }
.theme-happ .screenshot-wrapper .floating-card {
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: #2563eb;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  animation: none; /* stop random floating */
}
/* fixed positions */
.theme-happ .screenshot-wrapper .floating-card.card-1 { top: 18%; left: -90px; }
.theme-happ .screenshot-wrapper .floating-card.card-2 { top: 55%; right: -95px; }
.theme-happ .screenshot-wrapper .floating-card.card-3 { bottom: 16%; left: -65px; }

@media (max-width: 1024px) {
  .theme-happ .screenshot-wrapper { min-height: 420px; }
  .theme-happ .screenshot-img { max-width: 320px; }
  .theme-happ .screenshot-wrapper .floating-card.card-1 { top: 14%; left: -60px; }
  .theme-happ .screenshot-wrapper .floating-card.card-2 { top: 58%; right: -60px; }
  .theme-happ .screenshot-wrapper .floating-card.card-3 { bottom: 12%; left: -40px; }
}
@media (max-width: 640px) {
  .theme-happ .screenshot-wrapper { min-height: 360px; }
  .theme-happ .screenshot-img { max-width: 280px; }
  .theme-happ .screenshot-wrapper .floating-card { display: none; }
} 

/* Theme-happ pricing button visibility */
.theme-happ .pricing-card .pricing-cta { background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: #ffffff; border: none; }
.theme-happ .pricing-card .pricing-cta:hover { box-shadow: 0 12px 30px rgba(16,185,129,.35); transform: translateY(-2px); }
.theme-happ .pricing-card { border: 1px solid #e5e7eb; }
.theme-happ .pricing-card.featured .pricing-cta { background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: #ffffff; } 

/* Tighten premium-setup screenshot sizing to avoid oversized image */
.theme-happ .screenshot-wrapper { position: relative; overflow: visible; min-height: 420px; }
.theme-happ .screenshot-img { max-width: 300px; width: 100%; height: auto; border-radius: 24px; box-shadow: 0 25px 50px rgba(0,0,0,0.18); }
/* Adjust floating labels slightly and ensure no animation-induced growth */
.theme-happ .screenshot-wrapper .floating-card { animation: none; }
@media (max-width: 1024px) {
	.theme-happ .screenshot-wrapper { min-height: 360px; }
	.theme-happ .screenshot-img { max-width: 260px; }
}
@media (max-width: 640px) {
	.theme-happ .screenshot-wrapper { min-height: 300px; }
	.theme-happ .screenshot-img { max-width: 220px; }
}

/* ===== PLATFORMS SECTION MOBILE FIX ===== */
@media (max-width: 640px) {
  .platform-icon {
    font-size: 18px !important;
  }
  .platform-title {
    font-size: 1rem !important;
  }
  .platform-text {
    font-size: 0.875rem !important;
  }
}

/* ===== FONT AWESOME ICONS FIX ===== */
/* Ensure Font Awesome icons display correctly */
i.fab,
i.fas {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
  font-style: normal !important;
  font-weight: 900 !important;
  -webkit-font-smoothing: antialiased !important;
  display: inline-block !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
} 
