* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Typography System - Poppins */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

h4 {
  font-size: 1.4rem;
  font-weight: 600;
}

h5 {
  font-size: 1.2rem;
  font-weight: 500;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
}

p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.subtitle, .intro-text, .section-intro {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
}

.btn, button, a.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo a {
  text-decoration: none;
  color: #333;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f53d8;
  letter-spacing: -0.5px;
}

.logo-image {
  height: 40px;
  width: auto;
  max-width: 200px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Hide the "Try a Demo" text link on desktop - only show the blue button */
.mobile-demo-link {
  display: none;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #1f53d8;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1f53d8;
  transition: width 0.3s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
}


.btn-nav-demo {
  background: #1f53d8;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 120px;
  text-align: center;
  display: inline-block;
}

.btn-nav-demo:hover {
  background: #1a4bb8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 172, 254, 0.3);
}

/* Section 1: Hero */
/* Hero Section Styles - MODERN DESIGNS */

/* HERO STYLE 1: Glassmorphism with floating elements */
.hero-modern-1 {
  background: linear-gradient(135deg, #1f53d8 0%, #46e0fe 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.circle-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.hero-modern-1 h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(45deg, #ffd700, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-primary-modern {
  background: white;
  color: #1f53d8;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary-modern {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* HERO STYLE 2: Dark theme with neon accents */
.hero-modern-2 {
  background: #0a0a0a;
  color: white;
  padding: 120px 0 80px;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(79, 172, 254, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 172, 254, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-content-dark {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #1f53d8;
}

.tagline-icon {
  font-size: 1.2rem;
}

.hero-modern-2 h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.neon-text {
  color: #1f53d8;
  text-shadow: 0 0 10px #1f53d8, 0 0 20px #1f53d8, 0 0 30px #1f53d8;
  animation: neon-pulse 2s ease-in-out infinite alternate;
}

@keyframes neon-pulse {
  from { text-shadow: 0 0 10px #1f53d8, 0 0 20px #1f53d8, 0 0 30px #1f53d8; }
  to { text-shadow: 0 0 5px #1f53d8, 0 0 10px #1f53d8, 0 0 15px #1f53d8; }
}

.hero-description-dark {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.8;
  line-height: 1.6;
}

.hero-cta-dark {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-neon {
  background: linear-gradient(45deg, #1f53d8, #46e0fe);
  color: #0a0a0a;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-neon:hover .btn-glow {
  left: 100%;
}

.btn-outline-neon {
  background: transparent;
  color: #1f53d8;
  padding: 16px 32px;
  border: 2px solid #1f53d8;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-outline-neon:hover {
  background: #1f53d8;
  color: #0a0a0a;
  box-shadow: 0 0 20px #1f53d8;
}

.hero-features-preview {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(79, 172, 254, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(79, 172, 254, 0.2);
}

.feature-preview i {
  font-size: 1.5rem;
  color: #1f53d8;
}

/* HERO STYLE 3: Split with animated dashboard mockup */
.hero-modern-3 {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #333;
  padding: 120px 0 80px;
  margin-top: 70px;
}

.hero-split-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge-modern {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #1f53d8;
  font-weight: 600;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #1f53d8;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-modern-3 h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight-text {
  color: #1f53d8;
  position: relative;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1f53d8, #46e0fe);
  border-radius: 2px;
}

/* Typewriter effect for Style 3 */
.typewriter-text {
  color: #1f53d8;
  position: relative;
  overflow: hidden;
  border-right: 2px solid #1f53d8;
  white-space: nowrap;
  animation: typewriter 3s steps(40, end) 1s forwards, blink-caret 0.75s step-end infinite;
  width: 0;
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: #1f53d8; }
}

.hero-description-modern {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #666;
  line-height: 1.6;
}

.hero-cta-modern {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-primary-split {
  background: #1f53d8;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.btn-primary-split:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.btn-secondary-split {
  background: transparent;
  color: #1f53d8;
  padding: 16px 32px;
  border: 2px solid #1f53d8;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary-split:hover {
  background: #1f53d8;
  color: white;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.trust-text {
  font-size: 0.9rem;
  color: #666;
}

.trust-logos {
  display: flex;
  gap: 20px;
}

.trust-logo {
  padding: 8px 16px;
  background: white;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f53d8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-mockup {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: float-gentle 3s ease-in-out infinite;
}

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

.mockup-header {
  background: #f8f9fa;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #e9ecef;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dee2e6;
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:last-child { background: #28ca42; }

.mockup-title {
  font-weight: 600;
  color: #333;
}

.mockup-content {
  padding: 30px;
}

.mockup-chart {
  height: 200px;
  background: linear-gradient(135deg, #1f53d8 0%, #46e0fe 100%);
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.mockup-chart::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.mockup-stats {
  display: flex;
  gap: 20px;
}

.mockup-stat {
  flex: 1;
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f53d8;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

/* HERO STYLE 4: Minimalist with bold typography */
.hero-modern-4 {
  background: white;
  color: #333;
  padding: 120px 0 80px;
  margin-top: 70px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 1rem;
  color: #1f53d8;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-modern-4 h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.1;
}

.bold-accent {
  color: #1f53d8;
  position: relative;
}

.bold-accent::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #1f53d8;
  transform: scaleX(0);
  animation: underline-expand 1s ease-out 0.5s forwards;
}

@keyframes underline-expand {
  to { transform: scaleX(1); }
}

.hero-description-minimal {
  font-size: 1.3rem;
  margin-bottom: 50px;
  color: #666;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-minimal {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-minimal-primary {
  background: #1f53d8;
  color: white;
  padding: 18px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #1f53d8;
}

.btn-minimal-primary:hover {
  background: white;
  color: #1f53d8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.btn-minimal-secondary {
  background: transparent;
  color: #1f53d8;
  padding: 18px 36px;
  border: 2px solid #1f53d8;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-minimal-secondary:hover {
  background: #1f53d8;
  color: white;
  transform: translateY(-2px);
}

.hero-social-proof {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

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

.proof-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f53d8;
  margin-bottom: 5px;
}

.proof-text {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

/* HERO STYLE 5: Interactive with hover effects */
.hero-modern-5 {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  color: white;
  padding: 120px 0 80px;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-interactive-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.interactive-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: interactive-float 8s ease-in-out infinite;
}

.element-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.element-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  animation-delay: 2s;
}

.element-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 10%;
  animation-delay: 4s;
}

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

.hero-interactive {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge-interactive {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: #ffd700;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-modern-5 h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.interactive-text {
  background: linear-gradient(45deg, #00ff88, #00d4aa, #00a8cc, #1f53d8, #00ff88);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-rotate 4s ease-in-out infinite;
}

@keyframes gradient-rotate {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}

.hero-description-interactive {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-cta-interactive {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-interactive-primary {
  background: white;
  color: #1f53d8;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-interactive-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-interactive-primary:hover .btn-text {
  opacity: 0;
}

.btn-interactive-primary:hover .btn-hover {
  opacity: 1;
}

.btn-interactive-secondary {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-interactive-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-benefits {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

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

.benefit-item span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* HERO STYLE 6: Interactive with particle effects */
.hero-modern-6 {
  background: linear-gradient(135deg, #1f53d8 0%, #46e0fe 100%);
  color: white;
  padding: 120px 0 80px;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-particle-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particle-float 8s linear infinite;
}

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

.particle-2 {
  top: 60%;
  left: 20%;
  animation-delay: 2s;
}

.particle-3 {
  top: 40%;
  right: 15%;
  animation-delay: 4s;
}

.particle-4 {
  bottom: 30%;
  left: 30%;
  animation-delay: 6s;
}

.particle-5 {
  top: 80%;
  right: 25%;
  animation-delay: 1s;
}

@keyframes particle-float {
  0% { transform: translateY(0px) translateX(0px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
}

.hero-interactive-v2 {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge-interactive-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

.badge-glow {
  width: 8px;
  height: 8px;
  background: #ffd700;
  border-radius: 50%;
  animation: glow-pulse 2s infinite;
  box-shadow: 0 0 10px #ffd700;
}

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

.hero-modern-6 h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.morphing-text {
  background: linear-gradient(45deg, #ffd700, #ff6b6b, #1f53d8, #46e0fe);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: morphing-gradient 4s ease-in-out infinite;
}

@keyframes morphing-gradient {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 50%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
}

.hero-description-interactive-v2 {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-cta-interactive-v2 {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-morphing-primary {
  background: white;
  color: #1f53d8;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-morphing-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(102, 126, 234, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.btn-morphing-primary:hover .btn-ripple {
  width: 300px;
  height: 300px;
}

.btn-morphing-secondary {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-wave {
  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-morphing-secondary:hover .btn-wave {
  left: 100%;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.metric-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

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

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
}

.metric-label {
  font-size: 0.9rem;
  font-weight: 600;
}

/* HERO STYLE 7: Interactive with holographic effects */
.hero-modern-7 {
  background: #0a0a0a;
  color: white;
  padding: 120px 0 80px;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-holographic-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.holographic-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1f53d8, transparent);
  animation: holographic-scan 3s linear infinite;
}

.line-1 {
  top: 20%;
  left: 0;
  right: 0;
  animation-delay: 0s;
}

.line-2 {
  top: 50%;
  left: 0;
  right: 0;
  animation-delay: 1s;
}

.line-3 {
  top: 80%;
  left: 0;
  right: 0;
  animation-delay: 2s;
}

@keyframes holographic-scan {
  0% { opacity: 0; transform: scaleX(0); }
  50% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(0); }
}

.hero-holographic {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge-holographic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

.badge-scan {
  width: 8px;
  height: 8px;
  background: #1f53d8;
  border-radius: 50%;
  animation: scan-pulse 2s infinite;
  box-shadow: 0 0 15px #1f53d8;
}

@keyframes scan-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(2); opacity: 0.5; }
}

.hero-modern-7 h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.holographic-text {
  color: #1f53d8;
  text-shadow: 0 0 10px #1f53d8, 0 0 20px #1f53d8, 0 0 30px #1f53d8;
  animation: holographic-flicker 3s ease-in-out infinite;
}

@keyframes holographic-flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero-description-holographic {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.8;
  line-height: 1.6;
}

.hero-cta-holographic {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-holographic-primary {
  background: linear-gradient(45deg, #1f53d8, #46e0fe);
  color: #0a0a0a;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(79, 172, 254, 0.5);
}

.btn-scan-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.btn-holographic-primary:hover .btn-scan-line {
  left: 100%;
}

.btn-holographic-secondary {
  background: transparent;
  color: #1f53d8;
  padding: 16px 32px;
  border: 2px solid #1f53d8;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-border-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #1f53d8, #46e0fe, #1f53d8);
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-holographic-secondary:hover .btn-border-glow {
  opacity: 1;
}

.hero-tech-preview {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(79, 172, 254, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(79, 172, 254, 0.3);
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: rgba(79, 172, 254, 0.2);
  box-shadow: 0 0 20px rgba(79, 172, 254, 0.3);
}

.tech-icon {
  font-size: 1.5rem;
}

/* HERO STYLE 8: Interactive with liquid effects */
.hero-modern-8 {
  background: linear-gradient(135deg, #1f53d8 0%, #46e0fe 100%);
  color: white;
  padding: 120px 0 80px;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-liquid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.liquid-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: liquid-morph 10s ease-in-out infinite;
}

.blob-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

.blob-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
}

@keyframes liquid-morph {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    border-radius: 50%;
  }
  25% { 
    transform: scale(1.2) rotate(90deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% { 
    transform: scale(0.8) rotate(180deg);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
  75% { 
    transform: scale(1.1) rotate(270deg);
    border-radius: 40% 60% 60% 40% / 60% 40% 40% 60%;
  }
}

.hero-liquid {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge-liquid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

.badge-flow {
  width: 8px;
  height: 8px;
  background: #ffd700;
  border-radius: 50%;
  animation: flow-pulse 2s infinite;
}

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

.hero-modern-8 h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.liquid-text {
  background: linear-gradient(45deg, #ffd700, #ff6b6b, #1f53d8);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: liquid-flow 3s ease-in-out infinite;
}

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

.hero-description-liquid {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-cta-liquid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-liquid-primary {
  background: white;
  color: #1f53d8;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-liquid-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-liquid-primary:hover .btn-liquid-effect {
  transform: translateX(100%);
}

.btn-liquid-secondary {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-liquid-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s ease;
}

.btn-liquid-secondary:hover .btn-liquid-wave {
  transform: translateX(100%) skewX(-15deg);
}

.hero-flow-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.flow-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

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

.flow-item span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* HERO STYLE 9: Terminal/Code Interface */
.hero-terminal {
  background: #1a1a1a;
  color: #00ff00;
  padding: 120px 0 80px;
  margin-top: 70px;
  font-family: 'Courier New', monospace;
}

.terminal-window {
  background: #2d2d2d;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.terminal-header {
  background: #3d3d3d;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.terminal-buttons {
  display: flex;
  gap: 8px;
}

.terminal-buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.btn-close { background: #ff5f57; }
.btn-minimize { background: #ffbd2e; }
.btn-maximize { background: #28ca42; }

.terminal-title {
  color: #ccc;
  font-size: 0.9rem;
}

.terminal-body {
  padding: 20px;
  min-height: 300px;
}

.terminal-line {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.prompt {
  color: #00ff00;
  font-weight: bold;
}

.command {
  color: #ffffff;
  animation: typewriter-terminal 2s steps(20, end) 1s forwards;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
}

@keyframes typewriter-terminal {
  from { width: 0; }
  to { width: 100%; }
}

.terminal-output {
  margin-top: 20px;
}

.output-line {
  margin-bottom: 8px;
  color: #ccc;
  animation: fade-in-line 0.5s ease-in forwards;
  opacity: 0;
}

.output-line:nth-child(1) { animation-delay: 3s; }
.output-line:nth-child(2) { animation-delay: 4s; }
.output-line:nth-child(3) { animation-delay: 5s; }
.output-line:nth-child(4) { animation-delay: 6s; }
.output-line:nth-child(5) { animation-delay: 7s; }
.output-line:nth-child(6) { animation-delay: 8s; }

@keyframes fade-in-line {
  to { opacity: 1; }
}

.output-line.success {
  color: #00ff00;
}

.highlight-result {
  color: #ffff00;
  font-weight: bold;
}

.cursor-blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.terminal-cta {
  text-align: center;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-terminal-primary {
  background: #00ff00;
  color: #1a1a1a;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  transition: all 0.3s ease;
}

.btn-terminal-primary:hover {
  background: #00cc00;
  box-shadow: 0 0 20px #00ff00;
}

.btn-terminal-secondary {
  background: transparent;
  color: #00ff00;
  padding: 12px 24px;
  border: 2px solid #00ff00;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  transition: all 0.3s ease;
}

.btn-terminal-secondary:hover {
  background: #00ff00;
  color: #1a1a1a;
}

/* HERO STYLE 10: Newspaper/Article Layout */
.hero-newspaper {
  background: #f5f5f5;
  color: #333;
  padding: 120px 0 80px;
  margin-top: 70px;
}

.newspaper-container {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.newspaper-header {
  background: #333;
  color: white;
  padding: 20px;
  text-align: center;
  border-bottom: 3px solid #000;
}

.newspaper-title {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.newspaper-date {
  font-size: 1rem;
  opacity: 0.8;
}

.newspaper-content {
  padding: 40px;
}

.main-headline {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #333;
  padding-bottom: 20px;
}

.main-headline h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.1;
}

.headline-subtitle {
  font-size: 1.5rem;
  color: #1f53d8;
  font-weight: 600;
}

.newspaper-columns {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.lead-paragraph {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.6;
}

.column-left p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.quote-box {
  background: #f8f9fa;
  border-left: 4px solid #1f53d8;
  padding: 20px;
  margin: 20px 0;
}

.quote-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.quote-attribution {
  font-weight: bold;
  color: #666;
}

.sidebar-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.sidebar-box h3 {
  margin-bottom: 15px;
  color: #1f53d8;
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
}

.sidebar-box li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

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

.btn-newspaper {
  background: #333;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.btn-newspaper:hover {
  background: #1f53d8;
}

.btn-newspaper-secondary {
  background: transparent;
  color: #333;
  padding: 12px 24px;
  border: 2px solid #333;
  text-decoration: none;
  font-weight: bold;
  display: block;
  transition: all 0.3s ease;
}

.btn-newspaper-secondary:hover {
  background: #333;
  color: white;
}

/* HERO STYLE 11: Game Interface */
.hero-game {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 120px 0 80px;
  margin-top: 70px;
  font-family: 'Poppins', sans-serif;
}

.game-ui {
  max-width: 800px;
  margin: 0 auto;
}

.game-hud {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid #1f53d8;
  box-shadow: 0 0 30px rgba(79, 172, 254, 0.3);
}

.hud-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #1f53d8;
}

.score-display, .level-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.score-label, .level-label {
  font-size: 0.9rem;
  color: #ccc;
}

.score-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ff00;
}

.level-value {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1f53d8;
}

.game-main {
  text-align: center;
  margin-bottom: 30px;
}

.character-display {
  margin-bottom: 30px;
}

.character {
  font-size: 4rem;
  margin-bottom: 10px;
  animation: character-bounce 2s ease-in-out infinite;
}

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

.character-name {
  font-size: 1.2rem;
  color: #1f53d8;
  font-weight: bold;
}

.dialogue-box {
  background: rgba(79, 172, 254, 0.1);
  border: 2px solid #1f53d8;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.dialogue-text {
  font-size: 1.3rem;
  margin-bottom: 20px;
  line-height: 1.4;
}

.game-highlight {
  color: #ffff00;
  font-weight: bold;
}

.dialogue-options {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.game-option {
  background: #1f53d8;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.game-option:hover {
  background: #1a4bb8;
  transform: translateY(-2px);
}

.hud-bottom {
  border-top: 2px solid #1f53d8;
  padding-top: 20px;
}

.stats-bar {
  display: flex;
  justify-content: space-around;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stat-icon {
  font-size: 1.5rem;
}

.stat-text {
  font-size: 0.9rem;
  color: #ccc;
}

/* HERO STYLE 12: Social Media Feed */
.hero-social {
  background: #f8f9fa;
  color: #333;
  padding: 120px 0 80px;
  margin-top: 70px;
}

.social-feed {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.feed-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-avatar {
  width: 50px;
  height: 50px;
  background: #1f53d8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.profile-name {
  font-weight: bold;
  font-size: 1.1rem;
}

.profile-handle {
  color: #666;
  font-size: 0.9rem;
}

.follow-btn {
  background: #1f53d8;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.follow-btn:hover {
  background: #1a4bb8;
}

.post-content {
  padding: 20px;
}

.post-text {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.social-highlight {
  color: #1f53d8;
  font-weight: bold;
}

.post-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.stat {
  display: flex;
  align-items: center;
  gap: 5px;
}

.stat-icon {
  font-size: 1.2rem;
}

.stat-count {
  font-weight: bold;
  color: #666;
}

.post-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-btn {
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.social-btn.primary {
  background: #1f53d8;
  color: white;
}

.social-btn.primary:hover {
  background: #1a4bb8;
}

.social-btn.secondary {
  background: transparent;
  color: #1f53d8;
  border: 2px solid #1f53d8;
}

.social-btn.secondary:hover {
  background: #1f53d8;
  color: white;
}

.feed-comments {
  background: #f8f9fa;
  padding: 20px;
}

.comment {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  background: #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.comment-author {
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.comment-text {
  font-size: 0.9rem;
  color: #666;
}

/* HERO STYLE 13: Medical/Diagnostic Interface */
.hero-medical {
  background: #f0f8ff;
  color: #333;
  padding: 120px 0 80px;
  margin-top: 70px;
}

.medical-interface {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.medical-header {
  background: #1f53d8;
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hospital-logo {
  font-size: 2rem;
}

.hospital-name {
  font-size: 1.5rem;
  font-weight: bold;
}

.patient-id {
  margin-left: auto;
  font-size: 1rem;
  opacity: 0.9;
}

.medical-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  padding: 30px;
}

.diagnosis-panel {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid #e9ecef;
}

.diagnosis-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f53d8;
  margin-bottom: 20px;
  text-align: center;
}

.symptoms {
  margin-bottom: 25px;
}

.symptom-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #dee2e6;
}

.symptom-icon {
  font-size: 1.5rem;
}

.symptom-text {
  font-weight: 500;
}

.diagnosis-result {
  background: #fff3cd;
  border: 2px solid #ffeaa7;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.diagnosis-label {
  font-size: 0.9rem;
  color: #856404;
  margin-bottom: 5px;
}

.diagnosis-text {
  font-size: 1.3rem;
  font-weight: bold;
  color: #856404;
}

.treatment-plan {
  background: #d1ecf1;
  border: 2px solid #bee5eb;
  border-radius: 8px;
  padding: 20px;
}

.treatment-label {
  font-size: 1rem;
  font-weight: bold;
  color: #0c5460;
  margin-bottom: 10px;
}

.treatment-text {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.treatment-highlight {
  color: #1f53d8;
  font-weight: bold;
}

.treatment-details {
  font-size: 0.9rem;
  color: #0c5460;
  line-height: 1.6;
}

.prescription-pad {
  background: #f8f9fa;
  border: 2px dashed #6c757d;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
}

.prescription-header {
  font-size: 1.3rem;
  font-weight: bold;
  color: #6c757d;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prescription-content {
  margin-bottom: 25px;
}

.prescription-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #dee2e6;
}

.med-name {
  font-weight: bold;
  color: #1f53d8;
}

.med-dose {
  color: #666;
  font-size: 0.9rem;
}

.prescription-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-prescription {
  background: #1f53d8;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-prescription:hover {
  background: #1a4bb8;
  transform: translateY(-2px);
}

.btn-prescription-secondary {
  background: transparent;
  color: #1f53d8;
  padding: 12px 24px;
  border: 2px solid #1f53d8;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-prescription-secondary:hover {
  background: #1f53d8;
  color: white;
}

/* HERO STYLE 16: Dating App Profile Style */
.hero-dating {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  color: white;
  padding: 120px 0 80px;
  margin-top: 70px;
}

.dating-profile {
  max-width: 500px;
  margin: 0 auto;
}

.profile-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  color: #333;
}

.profile-photo {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.photo-placeholder {
  width: 120px;
  height: 120px;
  background: #1f53d8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
  border: 4px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.online-indicator {
  position: absolute;
  bottom: 10px;
  right: calc(50% - 60px);
  width: 20px;
  height: 20px;
  background: #00ff00;
  border-radius: 50%;
  border: 3px solid white;
}

.profile-name {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #1f53d8;
}

.profile-age {
  text-align: center;
  color: #666;
  margin-bottom: 10px;
}

.profile-location {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
}

.profile-bio {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center;
}

.profile-interests {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.interest-tag {
  background: #f8f9fa;
  color: #1f53d8;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid #1f53d8;
}

.profile-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f53d8;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

.profile-actions {
  display: flex;
  gap: 15px;
}

.btn-swipe-right {
  flex: 1;
  background: #00ff00;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-swipe-right:hover {
  background: #00cc00;
  transform: scale(1.05);
}

.btn-swipe-left {
  flex: 1;
  background: #ff6b6b;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-swipe-left:hover {
  background: #ff5252;
  transform: scale(1.05);
}


.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  min-width: 150px;
}

.hero-feature i {
  font-size: 2rem;
  color: white;
}

.hero-feature span {
  font-size: 1rem;
  font-weight: 500;
}

/* Common hero elements */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ffffff;
  color: #333;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 15px 30px;
  border: 2px solid white;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: white;
  color: #333;
}

/* Section 7: HubSpot & GoHighLevel Comparison Teaser */
.comparison-section {
  padding: 80px 0;
  background: white;
}

.comparison-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.comparison-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.comparison-points {
  max-width: 800px;
  margin: 0 auto 40px;
}

.comparison-point {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-point:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.comparison-before {
  flex: 1;
  text-align: left;
  color: #666;
}

.comparison-arrow {
  margin: 0 20px;
  color: #1f53d8;
  font-size: 1.2rem;
}

.comparison-after {
  flex: 1;
  text-align: right;
  color: #333;
  font-weight: 500;
}

.comparison-note {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
  margin-bottom: 30px;
}

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

/* Section 6: Why TrackMyLead */
.why-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.why-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  font-weight: 500;
}

.why-cta {
  text-align: center;
  margin-top: 40px;
}

.why-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #333;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.why-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.why-card i {
  font-size: 3rem;
  color: #1f53d8;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.why-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Integration Logos */
.integration-logos {
  margin: 40px 0;
  text-align: center;
}

.integration-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  font-weight: 500;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

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

.partner-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover .partner-img {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-name {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Common CTA buttons for all styles */
.why-section .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-playbook-primary {
  background: #1f53d8;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-playbook-primary:hover {
  background: #1a4bb8;
  transform: translateY(-2px);
}

/* Section 3: The Basics We Answer */
.basics-section {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.basics-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.basics-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.basics-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-size: 1.1rem;
  color: #555;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.basics-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.basics-list i {
  color: #28a745;
  margin-right: 20px;
  font-size: 1.5rem;
  min-width: 25px;
}

/* Section 2: The Basics Your CRM Already Answers */
.basics-crm-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.basics-crm-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.basics-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  font-weight: 500;
}

.basics-crm-section .basics-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.basics-crm-section .basic-item {
  display: flex;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.basics-crm-section .basic-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.basics-crm-section .basic-item i {
  color: #1f53d8;
  margin-right: 15px;
  font-size: 1.2rem;
  min-width: 20px;
}

.basics-crm-section .basic-item span {
  color: #1e293b;
  font-weight: 500;
}

.basics-conclusion {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Section 3: The 24 More Questions That Drive Profit */
.questions-section {
  padding: 80px 0;
  background: white;
}

.questions-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.not-emphasis {
  color: #e74c3c;
  font-weight: 800;
  display: inline-block;
  animation: notPulse 2s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
}

@keyframes notPulse {
  0% {
    transform: scale(1);
    color: #e74c3c;
  }
  50% {
    transform: scale(1.1);
    color: #c0392b;
  }
  100% {
    transform: scale(1);
    color: #e74c3c;
  }
}

.questions-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.questions-list {
  max-width: 900px;
  margin: 0 auto 40px;
}

.questions-list .question-item {
  display: flex;
  align-items: flex-start;
  background: #f8f9fa;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 12px;
  border-left: 4px solid #1f53d8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.questions-list .question-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.questions-list .question-item i {
  color: #1f53d8;
  margin-right: 15px;
  font-size: 1.2rem;
  min-width: 20px;
  margin-top: 2px;
}

.questions-list .question-item span {
  color: #333;
  font-weight: 500;
  line-height: 1.5;
}

.question-card {
  background: white;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.question-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-color: #1f53d8;
}

.question-icon {
  background: linear-gradient(135deg, #1f53d8 0%, #1a4bb8 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.question-icon i {
  font-size: 1.5rem;
  color: white;
}

.question-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.question-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* Callouts Section */
.callouts-section {
  padding: 40px 0 80px;
  background: white;
}

.callouts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.callout-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.callout-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.callout-playbook {
  border-color: #1f53d8;
}

.callout-ai {
  border-color: #28a745;
}

.callout-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: white;
}

.callout-playbook .callout-icon {
  background: linear-gradient(135deg, #1f53d8 0%, #1a4bb8 100%);
}

.callout-ai .callout-icon {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.callout-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.callout-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-callout {
  background: #1f53d8;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-callout:hover {
  background: #1a4bb8;
  transform: translateY(-2px);
}

.playbook-callout .btn-playbook-primary:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Section 5: How does this make me money */
.money-section {
  padding: 80px 0;
  background: white;
}

.money-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin: 0 auto 36px;
  font-weight: 500;
  max-width: 800px;
}

.money-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  color: #333;
}

.money-points {
  max-width: 900px;
  margin: 0 auto 40px;
}

.money-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.money-point i {
  color: #28a745;
  font-size: 1.5rem;
  margin-right: 20px;
  margin-top: 5px;
  min-width: 30px;
}

.money-point p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

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

/* Section 6: Meet the TML AI Summary Bot */
.ai-section {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.ai-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.ai-subheading {
  font-size: 1.5rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 30px;
}

.ai-description {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.ai-benefits {
  max-width: 600px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ai-benefit {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-size: 1rem;
  color: #555;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-benefit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.ai-benefit i {
  color: #28a745;
  margin-right: 15px;
  font-size: 1.2rem;
  min-width: 20px;
}

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

/* Section 7: Features That Drive Profit */
.features-section {
  padding: 80px 0;
  background: white;
}

.features-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.feature-card i {
  font-size: 3rem;
  color: #1f53d8;
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

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

/* Section 7: Final CTA */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1e1b4b 50%, #1f53d8 100%);
  color: white;
  text-align: center;
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
}

.final-cta .hero-buttons {
  margin-top: 40px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: #333;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.faq-question {
  background: #1f53d8;
  color: white;
  padding: 25px 30px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #1a4bb8;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
  padding: 25px 30px;
  max-height: 1000px; /* Increased to accommodate longer content */
}

.faq-answer p {
  color: #1e293b;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 15px 0;
}

.faq-answer ul {
  color: #1e293b;
  font-size: 1rem;
  line-height: 1.6;
  margin: 15px 0;
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 8px;
  color: #374151;
}

.faq-answer strong {
  color: #1e293b;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 0;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .nav-content {
    align-items: center;
    min-height: 35px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .logo-image {
    height: 35px;
    max-width: 150px;
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    flex-direction: column;
    padding: 20px;
    z-index: 999;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
  }
  
  .nav-menu .nav-link:last-child {
    border-bottom: none;
  }
  
  .mobile-demo-link {
    display: block; /* Show on mobile */
    background: linear-gradient(135deg, #1f53d8 0%, #46e0fe 100%);
    color: white !important;
    border-radius: 8px;
    margin: 20px 0 0 0;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(31, 83, 216, 0.3);
    border: none;
    width: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .mobile-demo-link:hover {
    background: linear-gradient(135deg, #1a4bb8 0%, #3bc4e6 100%);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 83, 216, 0.4);
  }
  
  .mobile-demo-link::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;
  }
  
  .mobile-demo-link:hover::before {
    left: 100%;
  }
  
  @keyframes pulse-demo {
    0%, 100% { 
      box-shadow: 0 4px 15px rgba(31, 83, 216, 0.3);
    }
    50% { 
      box-shadow: 0 4px 20px rgba(31, 83, 216, 0.5);
    }
  }
  
  .mobile-demo-link {
    animation: pulse-demo 2s ease-in-out infinite;
  }
  
  .btn-nav-demo {
    padding: 8px 20px;
    font-size: 0.9rem;
    height: 35px;
    display: flex;
    align-items: center;
    min-width: 100px;
    justify-content: center;
  }
  
  /* Responsive styles for modern hero styles */
  .hero-modern-1,
  .hero-modern-2,
  .hero-modern-3,
  .hero-modern-4,
  .hero-modern-5,
  .hero-modern-6,
  .hero-modern-7,
  .hero-modern-8,
  .hero-dating {
    margin-top: 60px;
    padding: 100px 0 80px;
  }
  
  .hero-modern-1 h1,
  .hero-modern-2 h1,
  .hero-modern-3 h1,
  .hero-modern-4 h1,
  .hero-modern-5 h1,
  .hero-modern-6 h1,
  .hero-modern-7 h1,
  .hero-modern-8 h1,
  .hero-with-dashboard h1 {
    font-size: 2.5rem;
  }

  .main-headline h1 {
    font-size: 2rem;
  }

  .newspaper-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .medical-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dating-profile {
    margin: 0 20px;
  }

  .profile-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-swipe-right,
  .btn-swipe-left {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .hero-modern-3 .hero-split-modern {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-modern-4 h1 {
    font-size: 3rem;
  }

  .hero-stats,
  .hero-features-preview,
  .hero-benefits,
  .hero-social-proof {
    gap: 20px;
  }

  .hero-actions,
  .hero-cta-dark,
  .hero-cta-modern,
  .hero-cta-minimal,
  .hero-cta-interactive,
  .hero-cta-interactive-v2,
  .hero-cta-holographic,
  .hero-cta-liquid {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-modern,
  .btn-neon,
  .btn-primary-split,
  .btn-minimal-primary,
  .btn-interactive-primary,
  .btn-morphing-primary,
  .btn-holographic-primary,
  .btn-liquid-primary,
  .btn-secondary-modern,
  .btn-outline-neon,
  .btn-secondary-split,
  .btn-minimal-secondary,
  .btn-interactive-secondary,
  .btn-morphing-secondary,
  .btn-holographic-secondary,
  .btn-liquid-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-glass-card,
  .dashboard-mockup {
    margin: 0 20px;
    padding: 40px 20px;
  }

  .floating-circle,
  .particle,
  .holographic-line,
  .liquid-blob {
    display: none;
  }

  .interactive-element {
    display: none;
  }

  .hero-metrics,
  .hero-tech-preview,
  .hero-flow-indicators {
    gap: 20px;
  }

  /* Responsive styles for hero section */
  .hero-features {
    gap: 20px;
  }

  .hero-feature {
    min-width: 120px;
  }

  .hero-buttons, .why-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary, .btn-playbook-primary {
    width: 100%;
    max-width: 300px;
  }

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

  .money-point {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .money-point i {
    margin-right: 0;
    margin-bottom: 15px;
    margin-top: 0;
  }

  .question-item {
    padding: 20px;
  }

  /* Responsive styles for questions grid */
  .questions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Responsive styles for callout sections */
  .callouts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Responsive styles for new sections */
  .basics-crm-section .basics-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .comparison-point {
    flex-direction: column;
    text-align: center;
  }

  .comparison-before,
  .comparison-after {
    text-align: center;
    margin: 10px 0;
  }

  .comparison-arrow {
    margin: 10px 0;
    transform: rotate(90deg);
  }

  .basics-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .basics-list li {
    padding: 20px;
    text-align: center;
    justify-content: center;
  }

  .playbook-callout {
    padding: 30px 0;
    margin: 30px 0 0;
  }

  .playbook-callout h3 {
    font-size: 1.5rem;
  }

  /* Responsive styles for Why TrackMyLead section */
  .why-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .logo-container {
    gap: 30px;
  }

  .partner-img {
    height: 40px;
  }

  .faq-question {
    padding: 20px;
    font-size: 1.1rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1200px; /* Increased for mobile longer content */
  }

  /* Responsive styles for AI section */
  .ai-benefits {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .ai-benefit {
    padding: 12px 15px;
    text-align: center;
    justify-content: center;
  }

  .ai-benefit i {
    margin-right: 10px;
  }

  .final-cta h2 {
    font-size: 1.8rem;
  }
}

/* Privacy Policy Page Styles */
.privacy-section {
  padding: 120px 0 80px;
  margin-top: 70px;
  background: #f8f9fa;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.privacy-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.effective-date {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 40px;
  font-style: italic;
}

.privacy-intro {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 40px;
  border-left: 4px solid #1f53d8;
}

.privacy-intro p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.privacy-sections {
  margin-bottom: 40px;
}

.privacy-section-item {
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #e9ecef;
}

.privacy-section-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-section-item h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.privacy-section-item p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.privacy-section-item ul {
  margin: 15px 0;
  padding-left: 20px;
}

.privacy-section-item li {
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-info {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 15px;
}

.contact-info p {
  margin: 0;
  line-height: 1.6;
}

.contact-info a {
  color: #1f53d8;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

.privacy-cta {
  text-align: center;
  margin-top: 40px;
}

.privacy-cta .btn-primary {
  background: #1f53d8;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.privacy-cta .btn-primary:hover {
  background: #1a4bb8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

/* Responsive Privacy Policy */
@media (max-width: 768px) {
  .privacy-section {
    padding: 100px 0 60px;
    margin-top: 60px;
  }
  
  .privacy-content {
    padding: 30px 20px;
    margin: 0 20px;
  }
  
  .privacy-content h1 {
    font-size: 2rem;
  }
  
  .privacy-section-item h2 {
    font-size: 1.3rem;
  }
}

/* Terms of Service Page Styles */
.terms-section {
  padding: 120px 0 80px;
  margin-top: 70px;
  background: #f8f9fa;
}

.terms-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.terms-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.terms-intro {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 40px;
  border-left: 4px solid #1f53d8;
}

.terms-intro p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.terms-sections {
  margin-bottom: 40px;
}

.terms-section-item {
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #e9ecef;
}

.terms-section-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-section-item h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.terms-section-item p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.terms-section-item ul {
  margin: 15px 0;
  padding-left: 20px;
}

.terms-section-item li {
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
}

.terms-section-item a {
  color: #1f53d8;
  text-decoration: none;
  font-weight: 500;
}

.terms-section-item a:hover {
  text-decoration: underline;
}

.terms-cta {
  text-align: center;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.terms-cta .btn-primary {
  background: #1f53d8;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.terms-cta .btn-primary:hover {
  background: #1a4bb8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.terms-cta .btn-secondary {
  background: transparent;
  color: #1f53d8;
  padding: 15px 30px;
  border: 2px solid #1f53d8;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.terms-cta .btn-secondary:hover {
  background: #1f53d8;
  color: white;
  transform: translateY(-2px);
}

/* Responsive Terms of Service */
@media (max-width: 768px) {
  .terms-section {
    padding: 100px 0 60px;
    margin-top: 60px;
  }
  
  .terms-content {
    padding: 30px 20px;
    margin: 0 20px;
  }
  
  .terms-content h1 {
    font-size: 2rem;
  }
  
  .terms-section-item h2 {
    font-size: 1.3rem;
  }
  
  .terms-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .terms-cta .btn-primary,
  .terms-cta .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

/* Enhanced Style 7: 3D Flip Cards with Auto-Rotation */
.basics-crm-section-7 { 
  padding: 70px 0; 
  background: white; 
  color: #1e293b; 
}

.basics-crm-section-7 h2 { 
  text-align: center; 
  color: #1e293b; 
  margin-bottom: 12px; 
}

.basics-crm-section-7 .basics-intro { 
  text-align: center; 
  color: #64748b; 
  margin-bottom: 36px; 
}

.flip-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 20px; 
  perspective: 1000px; 
  max-width: 900px;
  margin: 0 auto;
}

.flip-card { 
  position: relative; 
  height: 160px; 
  transform-style: preserve-3d; 
  transition: transform .7s; 
  cursor: pointer; 
  border-radius: 16px; 
}

.flip-card:focus-visible { 
  outline: 3px solid #1f53d8; 
  outline-offset: 4px; 
}

.flip-card::after { 
  content: ""; 
  position: absolute; 
  inset: -1px; 
  border-radius: 18px; 
  background: linear-gradient(135deg, rgba(79,172,254,.6), rgba(102,126,234,.6)); 
  filter: blur(8px); 
  opacity: 0; 
  transition: opacity .3s ease; 
  z-index: 0; 
}

.flip-card:hover::after { 
  opacity: .35; 
}

.flip-card:hover { 
  transform: rotateY(180deg) rotateX(0.5deg); 
}

.flip-card.is-flipped { 
  transform: rotateY(180deg); 
}

.flip-card.is-paused { 
  animation-play-state: paused; 
}

.flip-face { 
  position: absolute; 
  inset: 0; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 14px; 
  border-radius: 16px; 
  border: 1px solid #e2e8f0; 
  background: linear-gradient(135deg, rgba(79,172,254,.08), rgba(102,126,234,.08)); 
  backface-visibility: hidden; 
  z-index: 1; 
  box-shadow: 0 8px 18px rgba(0,0,0,.2); 
  padding: 20px;
  text-align: center;
}

.flip-back { 
  transform: rotateY(180deg); 
  background: linear-gradient(135deg, rgba(79,172,254,.12), rgba(102,126,234,.12)); 
  padding: 22px; 
  text-align: center; 
  line-height: 1.4; 
}

.flip-face i { 
  font-size: 1.75rem; 
  color: #1f53d8; 
  background: radial-gradient(circle at 30% 30%, rgba(79,172,254,.2), rgba(102,126,234,.1)); 
  padding: 12px; 
  border-radius: 999px; 
  box-shadow: inset 0 0 0 1px rgba(79,172,254,.2), 0 6px 14px rgba(79,172,254,.25); 
}

.flip-face span { 
  font-weight: 600; 
  color: #1e293b; 
}

.flip-back .flip-meta { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  margin-top: 8px; 
  color: #10b981; 
  background: rgba(16,185,129,.12); 
  border: 1px solid rgba(16,185,129,.25); 
  padding: 6px 10px; 
  border-radius: 999px; 
  font-size: .9rem; 
}

.basics-crm-section-7 .basics-conclusion { 
  text-align: center; 
  color: #1e293b; 
  margin-top: 28px; 
  font-weight: 500;
  opacity: 0.8;
}

/* Mobile responsiveness for flip cards */
@media (max-width: 768px) {
  .flip-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 16px; 
  }
  
  .flip-card { 
    height: 120px; 
  }
  
  .flip-card:hover { 
    transform: none; 
  }
  
  @media (max-width: 520px) {
    .flip-grid { 
      grid-template-columns: 1fr; 
    }
  }
}

/* Reduce motion preferences */
@media (prefers-reduced-motion: reduce) {
  .flip-card:hover { 
    transform: none; 
  }
}

/* Style A1: Questions Section with Auto-Rotation */
.questions-section-a1 {
  padding: 70px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1e1b4b 50%, #1f53d8 100%);
  color: white;
}

.questions-section-a1 h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 12px;
  font-size: 2.5rem;
}

.questions-section-a1 .questions-intro {
  text-align: center;
  color: #e2e8f0;
  margin-bottom: 36px;
  font-size: 1.2rem;
}

.questions-grid-a1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  perspective: 1000px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.question-card-a1 {
  position: relative;
  height: 160px;
  transform-style: preserve-3d;
  transition: transform .6s;
  cursor: pointer;
  border-radius: 16px;
}

.question-card-a1:focus-visible {
  outline: 3px solid #10b981;
  outline-offset: 4px;
}

.question-card-a1::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(16,185,129,.6), rgba(34,197,94,.6));
  filter: blur(8px);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 0;
}

.question-card-a1:hover::after {
  opacity: .4;
}

.question-card-a1:hover {
  transform: rotateY(180deg) rotateX(2deg);
}

.question-card-a1.is-flipped {
  transform: rotateY(180deg);
}

.question-face-a1 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  backface-visibility: hidden;
  z-index: 1;
  box-shadow: 0 8px 18px rgba(0,0,0,.2);
  padding: 20px;
  text-align: center;
}

.question-back-a1 {
  transform: rotateY(180deg);
  background: rgba(16,185,129,.8);
  border: 1px solid rgba(16,185,129,.8);
  color: #ffffff;
}

.question-face-a1 i {
  font-size: 1.8rem;
  color: #ffffff;
  background: rgba(16,185,129,.8);
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(16,185,129,.5);
  border: 2px solid rgba(255,255,255,.3);
}

.question-face-a1 span {
  font-weight: 600;
  color: #f8fafc;
  font-size: 1rem;
  line-height: 1.4;
}

.question-back-a1 .question-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: #10b981;
  background: rgba(255,255,255,.95);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.question-back-a1 .question-meta span {
  color: #10b981;
}

.question-back-a1 .question-meta i {
  color: #ffffff;
  background: #10b981;
  font-size: .8rem;
}

.questions-section-a1 .playbook-callout {
  text-align: center;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.questions-section-a1 .callout-content {
  padding: 10px 20px;
}

.questions-section-a1 .callout-content h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.4;
}

/* Questions Section CTA button: use card-back green */
.questions-section-a1 .btn-playbook-primary {
  background: #10b981;
  color: #ffffff;
  border: 1px solid #10b981;
  padding: 17px 34px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(16,185,129,0.35);
  letter-spacing: 0.2px;
  margin-top: 30px; /* +10px from current spacing due to margin collapse */
}

.questions-section-a1 .btn-playbook-primary:hover,
.questions-section-a1 .playbook-callout .btn-playbook-primary:hover {
  background: #059669;
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(5,150,105,0.45);
  transform: translateY(-3px);
}

/* Mobile responsiveness for questions A1 */
@media (max-width: 768px) {
  .questions-grid-a1 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .question-card-a1 {
    height: 120px;
  }
  
  .question-card-a1:hover {
    transform: none;
  }
}

/* Reduce motion preferences for questions A1 */
@media (prefers-reduced-motion: reduce) {
  .question-card-a1:hover {
    transform: none;
  }
}

/* Visual Hero Section with Dashboard - Variation 4 Winner! */
.hero-with-dashboard {
  padding: 40px 0 40px 0; /* Desktop: 40px top and bottom */
  background: linear-gradient(135deg, #0a0a0a 0%, #1e1b4b 50%, #1f53d8 100%);
  color: white;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  animation: neon-glow 3s ease-in-out infinite;
  margin-top: 80px; /* Increased to account for navbar height */
}

/* Neon Glow Animation */
@keyframes neon-glow {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3), 0 0 40px rgba(59, 130, 246, 0.1);
  }
  50% { 
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6), 0 0 60px rgba(59, 130, 246, 0.3);
  }
}

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

.hero-with-dashboard h1 {
  color: white;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-with-dashboard .hero-description-interactive {
  color: #e2e8f0;
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Enhanced AI Summary Bot Badge - Variation 4 Winner */
.hero-with-dashboard .hero-badge-interactive {
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-with-dashboard .interactive-text {
  background: linear-gradient(45deg, #00ff88, #00d4aa, #00a8cc, #1f53d8, #00ff88);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-rotate 4s ease-in-out infinite;
}

.hero-dashboard-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-dashboard {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.dashboard-mockup {
  position: relative;
  max-width: 100%;
}

.mockup-browser {
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
  overflow: hidden;
  border: 1px solid #333;
}

.browser-header {
  background: #2a2a2a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #333;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #555;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.browser-url {
  background: #1a1a1a;
  color: #888;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-family: monospace;
}

.browser-content {
  position: relative;
}

.dashboard-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 0 12px 12px;
}

/* Money Section Layout */
.money-content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin: 40px 0;
}

.money-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.money-right-side {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 20px;
}

.money-gif-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.money-gif-container {
  text-align: center;
  max-width: 100%;
}

.money-gif {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
  margin-bottom: 20px;
}

/* Bottom Section: Connected Caption + CTA Unit */
.money-bottom-section {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.money-callout-unit {
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, #1f53d8 0%, #46e0fe 100%);
  border-radius: 16px;
  padding: 30px 40px;
  box-shadow: 0 12px 35px rgba(79, 172, 254, 0.3);
  max-width: 900px;
  width: 100%;
}

.money-callout-content {
  flex: 1;
  text-align: left;
}

.money-callout-content h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.money-callout-content p {
  color: #e2e8f0;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}

.money-callout-cta {
  flex-shrink: 0;
}

/* AI Text styling for right side */
.money-ai-text {
  text-align: center;
  padding: 0;
}

.money-ai-text p {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.money-cta-button {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.money-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* Features Tabbed Layout - Desktop */
.features-tabbed-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin: 40px 0;
  min-height: 500px;
}

.features-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
}

.feature-tab:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.feature-tab.active {
  background: linear-gradient(135deg, #1f53d8 0%, #46e0fe 100%);
  color: white;
  border-color: #1f53d8;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.feature-tab i {
  font-size: 1.2rem;
  min-width: 20px;
}

.features-content {
  position: relative;
}

.feature-panel {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.feature-panel.active {
  display: block;
}

.feature-panel-content {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
}

.feature-panel-content h3 {
  color: #1e293b;
  font-size: 1.8rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.feature-panel-content p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.feature-benefits .benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.feature-benefits .benefit-item i {
  color: #10b981;
  font-size: 1rem;
}

.feature-benefits .benefit-item span {
  color: #1e293b;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Features Scroll Layout - Mobile Only */
.features-scroll {
  display: none;
  position: relative;
  margin: 40px 0;
}

.scroll-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-tabs::-webkit-scrollbar {
  display: none;
}

.scroll-tab {
  min-width: 200px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.scroll-tab.active {
  background: linear-gradient(135deg, #1f53d8 0%, #46e0fe 100%);
  color: white;
  border-color: #1f53d8;
  box-shadow: 0 4px 12px rgba(31, 83, 216, 0.3);
}

.scroll-tab-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #1f53d8;
}

.scroll-tab.active .scroll-tab-icon {
  color: white;
}

.scroll-tab-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.scroll-content {
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
}

.scroll-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.scroll-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-benefits-stacked {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.benefit-tag {
  background: #f1f5f9;
  color: #475569;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* AI Video Section */
.ai-video-section {
  margin: 24px 0;
}

.video-container {
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e2e8f0;
}

.ai-video {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-caption {
  margin-top: 16px;
  text-align: center;
}

.video-caption h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.video-caption p {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsiveness for Visual Elements */
@media (max-width: 768px) {
  .hero-with-dashboard {
    padding: 35px 0 35px 0; /* Tablet: 35px top and bottom */
    margin-top: 70px; /* Adjusted for mobile navbar */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-content-centered {
    max-width: 100%;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .hero-dashboard {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-cta-interactive {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }
  
  .hero-badge-interactive {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .hero-with-dashboard h1 {
    text-align: center;
    width: 100%;
    font-size: 2.5rem;
    padding-top: 20px;
  }
  
  .hero-description-interactive {
    text-align: center;
    width: 100%;
    font-size: 1rem;
  }
  
  .dashboard-mockup {
    max-width: 90%;
  }
  
  .hero-dashboard-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    order: 2;
  }
  
  .hero-dashboard {
    order: 1;
  }
  
  .money-content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .money-right-side {
    order: -1; /* Move right side above left side on mobile */
  }
  
  .money-gif {
    max-width: 100%;
  }
  
  .money-ai-text {
    padding: 15px 0;
  }
  
  .money-ai-text p {
    font-size: 1rem;
  }
  
  .money-callout-unit {
    flex-direction: column;
    gap: 25px;
    padding: 25px 20px;
    margin: 0;
  }
  
  .money-callout-content {
    text-align: center;
  }
  
  .money-callout-content h3 {
    font-size: 1.3rem;
  }
  
  .money-callout-content p {
    font-size: 1rem;
  }
  
  .money-cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .video-container {
    margin: 0 20px;
  }
  
  /* Features Layout Mobile - Switch to Scroll Layout */
  .features-tabbed-layout {
    display: none;
  }
  
  .features-scroll {
    display: block;
  }
  
  .scroll-tab {
    min-width: 160px;
  }
  
  .scroll-content {
    padding: 20px;
  }
  
  .scroll-content h3 {
    font-size: 1.5rem;
  }
  
  .ai-video {
    max-width: 100%;
  }
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1f53d8 0%, #46e0fe 100%);
  color: white;
  padding: 40px 0;
  text-align: center;
}

footer a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 0.8;
}

@media (max-width: 480px) {
  .hero-with-dashboard {
    padding: 30px 0 30px 0; /* Mobile: 30px top and bottom */
    min-height: auto;
    margin-top: 60px; /* Adjusted for mobile navbar */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-with-dashboard h1 {
    font-size: 2.2rem;
  }
  
  .hero-dashboard-layout {
    gap: 30px;
  }
  
  .hero-with-dashboard .hero-badge-interactive {
    padding: 6px 16px;
    font-size: 0.8rem;
  }
  
  .gif-caption h3 {
    font-size: 1.3rem;
  }
  
  .gif-caption p {
    font-size: 1rem;
  }
}
