@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  --bg-main: #060913;
  --bg-gradient: linear-gradient(135deg, #060913 0%, #0d1527 50%, #1a102f 100%);
  --panel-bg: rgba(15, 23, 42, 0.45);
  --panel-border: rgba(255, 255, 255, 0.06);
  --panel-border-hover: rgba(255, 255, 255, 0.15);
  
  --color-primary: #8b5cf6;     /* Neon Purple */
  --color-secondary: #06b6d4;   /* Cyan Glow */
  --color-accent: #ec4899;      /* Pink Glow */
  --color-blue: #3b82f6;        /* Blue Glow */
  --color-green: #10b981;       /* Green Glow */
  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #64748b;
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-neon-purple: 0 0 25px rgba(139, 92, 246, 0.3);
  --shadow-neon-cyan: 0 0 25px rgba(6, 182, 212, 0.3);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg-main);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.6);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

/* Canvas for Mouse Trail */
#trail-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

/* --- STRUCTURE --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

section {
  padding: 100px 0;
}

/* Glassmorphism utility */
.glass-panel {
  background: var(--panel-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}
.glass-panel:hover {
  border-color: var(--panel-border-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Glow Elements */
.glow-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 2;
  pointer-events: none;
  opacity: 0.15;
}

/* --- HEADER / NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(6, 9, 19, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--panel-border);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 12px 0;
  background: rgba(6, 9, 19, 0.85);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

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

.logo {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(to right, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  font-size: 1.2rem;
  -webkit-text-fill-color: initial;
}

.logo-highlight {
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  transition: var(--transition-smooth);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #7c3aed 100%);
  color: #fff;
  box-shadow: var(--shadow-neon-purple);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

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

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--panel-border);
  z-index: 10;
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-smooth);
}

/* --- HERO SECTION & COSMIC STARFIELD --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}

/* Cosmic space background styles for Hero */
.hero-space-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, #0d0f2b 0%, #04060d 90%);
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.stars-layer1 {
  position: absolute;
  width: 1px;
  height: 1px;
  background: transparent;
  box-shadow: 
    150px 80px #fff, 250px 300px #fff, 80px 420px #fff, 400px 180px #fff,
    720px 100px #fff, 550px 480px #fff, 880px 280px #fff, 950px 80px #fff,
    1100px 380px #fff, 1300px 220px #fff, 1250px 600px #fff, 1500px 400px #fff,
    150px 750px #fff, 380px 820px #fff, 680px 700px #fff, 850px 900px #fff,
    1050px 780px #fff, 1350px 850px #fff, 1600px 720px #fff, 90px 950px #fff;
  opacity: 0.4;
}

.stars-layer2 {
  position: absolute;
  width: 2px;
  height: 2px;
  background: transparent;
  box-shadow: 
    200px 180px rgba(255,255,255,0.8), 350px 380px rgba(255,255,255,0.8),
    600px 200px rgba(255,255,255,0.8), 850px 450px rgba(255,255,255,0.8),
    1150px 180px rgba(255,255,255,0.8), 1400px 520px rgba(255,255,255,0.8),
    220px 600px rgba(255,255,255,0.8), 500px 750px rgba(255,255,255,0.8),
    950px 680px rgba(255,255,255,0.8), 1200px 880px rgba(255,255,255,0.8);
  opacity: 0.7;
}

.cosmic-nebula-purple {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  filter: blur(60px);
}

.cosmic-nebula-blue {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  filter: blur(70px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-content {
  z-index: 10;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 100px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.hero-tag .tag-dot {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-primary);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  background: linear-gradient(to bottom, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

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

.main-globe-canvas {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.globe-spinner {
  width: 80%;
  height: 80%;
  border: 2px dashed rgba(6, 182, 212, 0.3);
  border-radius: 50%;
  position: absolute;
  animation: rotateClockwise 25s linear infinite;
}

.globe-spinner-outer {
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(139, 92, 246, 0.2);
  border-radius: 50%;
  position: absolute;
  animation: rotateCounterClockwise 40s linear infinite;
}

.visual-image-wrapper {
  position: relative;
  z-index: 5;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.8) 0%, rgba(6, 9, 19, 0.9) 100%);
  border: 1px solid var(--panel-border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), var(--shadow-neon-purple);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-image {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.9;
  mix-blend-mode: screen;
}

.visual-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  animation: float 4s ease-in-out infinite;
  z-index: 10;
}

.visual-badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
}

.visual-badge-txt div:first-child {
  font-weight: 700;
  font-size: 0.9rem;
}
.visual-badge-txt div:last-child {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- SECTION GENERAL STYLE --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 10;
}

.section-tag {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
}

/* --- FEATURES SECTION --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  padding: 40px;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-secondary);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  box-shadow: var(--shadow-neon-purple);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- PRICING SECTION & METEOR SHOWER --- */
.pricing-section-container {
  position: relative;
  overflow: hidden;
  background: rgba(6, 9, 19, 0.3);
}

/* Meteor Shower styles */
.meteor-shower {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.meteor {
  position: absolute;
  top: -50px;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 10px #fff;
  animation: meteor-fall linear infinite;
}

.meteor::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 1px;
  background: linear-gradient(to left, rgba(6, 182, 212, 0.8), rgba(139, 92, 246, 0));
  transform: rotate(-45deg) translate(-50px, 30px);
  transform-origin: top left;
}

/* Different meteor properties styling */
.meteor:nth-child(1) { left: 10%; animation-duration: 6s; animation-delay: 0.5s; --color: var(--color-secondary); }
.meteor:nth-child(2) { left: 30%; animation-duration: 8s; animation-delay: 2s; --color: var(--color-primary); }
.meteor:nth-child(3) { left: 50%; animation-duration: 5s; animation-delay: 1s; --color: var(--color-accent); }
.meteor:nth-child(4) { left: 70%; animation-duration: 7s; animation-delay: 3s; --color: var(--color-blue); }
.meteor:nth-child(5) { left: 90%; animation-duration: 9s; animation-delay: 0.2s; --color: var(--color-secondary); }
.meteor:nth-child(6) { left: 20%; animation-duration: 6.5s; animation-delay: 4.5s; --color: var(--color-primary); }
.meteor:nth-child(7) { left: 60%; animation-duration: 7.5s; animation-delay: 1.5s; --color: var(--color-accent); }
.meteor:nth-child(8) { left: 80%; animation-duration: 5.5s; animation-delay: 2.5s; --color: var(--color-blue); }

.meteor:nth-child(1)::before { background: linear-gradient(to left, var(--color-secondary), transparent); }
.meteor:nth-child(2)::before { background: linear-gradient(to left, var(--color-primary), transparent); }
.meteor:nth-child(3)::before { background: linear-gradient(to left, var(--color-accent), transparent); }
.meteor:nth-child(4)::before { background: linear-gradient(to left, var(--color-blue), transparent); }
.meteor:nth-child(5)::before { background: linear-gradient(to left, var(--color-secondary), transparent); }
.meteor:nth-child(6)::before { background: linear-gradient(to left, var(--color-primary), transparent); }
.meteor:nth-child(7)::before { background: linear-gradient(to left, var(--color-accent), transparent); }
.meteor:nth-child(8)::before { background: linear-gradient(to left, var(--color-blue), transparent); }

@keyframes meteor-fall {
  0% {
    transform: translate3d(500px, -100px, 0) rotate(-45deg) scale(0.2);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  30% {
    transform: translate3d(-300px, 700px, 0) rotate(-45deg) scale(1);
    opacity: 0;
  }
  100% {
    transform: translate3d(-300px, 700px, 0) rotate(-45deg) scale(1);
    opacity: 0;
  }
}

/* Pricing cards grid - 3 columns on Desktop */
.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 5;
  margin-top: 40px;
}

.pricing-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: 8px; /* Rectangular shape */
  border-width: 1px;
  border-style: solid;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  background: var(--panel-bg);
}

/* Colored pricing card borders and shadows */
.pricing-card.color-cyan {
  border-color: var(--color-secondary);
  background: rgba(6, 182, 212, 0.04);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.1);
}
.pricing-card.color-purple {
  border-color: var(--color-primary);
  background: rgba(139, 92, 246, 0.04);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.1);
}
.pricing-card.color-pink {
  border-color: var(--color-accent);
  background: rgba(236, 72, 153, 0.04);
  box-shadow: 0 0 25px rgba(236, 72, 153, 0.1);
}
.pricing-card.color-blue {
  border-color: var(--color-blue);
  background: rgba(59, 130, 246, 0.04);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.1);
}
.pricing-card.color-green {
  border-color: var(--color-green);
  background: rgba(16, 185, 129, 0.04);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.1);
}

.pricing-card.popular {
  border-color: var(--color-accent);
  background: linear-gradient(180deg, rgba(26, 16, 47, 0.55) 0%, rgba(15, 23, 42, 0.55) 100%);
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(236, 72, 153, 0.2);
}

.pricing-card.popular::before {
  content: 'POPULAR';
  position: absolute;
  top: 20px;
  right: -30px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 30px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 10;
}

.pricing-header {
  margin-bottom: 24px;
}

.plan-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.plan-price-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}

.plan-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.plan-price {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.plan-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-dark);
}

.pricing-divider {
  height: 1px;
  background: var(--panel-border);
  margin: 20px 0;
}

.plan-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.plan-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li i {
  color: var(--color-secondary);
  font-size: 0.85rem;
}

.plan-features li.disabled {
  color: var(--text-dark);
}

.plan-features li.disabled i {
  color: var(--text-dark);
}

/* --- REVIEWS / TESTIMONIALS SECTION (Rectangular & Colored Borders) --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  padding: 32px;
  border-radius: 8px; /* Rectangular shape */
  border-width: 1px;
  border-style: solid;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Distinct neon colored borders and backgrounds for reviews */
.review-card.color-cyan {
  border-color: var(--color-secondary);
  background: rgba(6, 182, 212, 0.04);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.1);
}
.review-card.color-purple {
  border-color: var(--color-primary);
  background: rgba(139, 92, 246, 0.04);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.1);
}
.review-card.color-pink {
  border-color: var(--color-accent);
  background: rgba(236, 72, 153, 0.04);
  box-shadow: 0 0 25px rgba(236, 72, 153, 0.1);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.95rem;
  color: #e2e8f0;
  margin-bottom: 24px;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--panel-border);
  background: rgba(255,255,255,0.05);
}

.review-author-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.review-author-info p {
  font-size: 0.8rem;
  color: var(--text-dark);
}

/* --- SEO ARTICLES SECTION (Horizontal scroll & Bobbing animation) --- */
.articles-wrapper {
  overflow-x: auto;
  padding: 30px 0;
  margin: 0 -24px;
  scrollbar-width: none; /* Firefox */
}

.articles-wrapper::-webkit-scrollbar {
  display: none; /* Safari / Chrome */
}

.articles-row {
  display: flex;
  gap: 24px;
  padding: 0 24px;
  min-width: max-content;
}

.article-card {
  width: 340px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  animation: bobbing 4s ease-in-out infinite;
}

/* Staggered animation delays for article cards */
.article-card:nth-child(1) { animation-delay: 0s; }
.article-card:nth-child(2) { animation-delay: 0.6s; }
.article-card:nth-child(3) { animation-delay: 1.2s; }
.article-card:nth-child(4) { animation-delay: 1.8s; }
.article-card:nth-child(5) { animation-delay: 2.4s; }
.article-card:nth-child(6) { animation-delay: 3.0s; }

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

.article-card-image-box {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid var(--panel-border);
}

.article-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.article-card:hover .article-card-image {
  transform: scale(1.05);
}

.article-meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.article-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.article-card:hover h3 {
  color: var(--color-secondary);
}

.article-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-readmore {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.article-card:hover .article-readmore {
  color: var(--color-secondary);
  gap: 10px;
}

/* --- FAQ SECTION (Rectangular & Color Box Borders) --- */
.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 8px; /* Rectangular shape */
  border-width: 1px;
  border-style: solid;
  overflow: hidden;
  transition: var(--transition-smooth);
}

/* Distinct color boxes for FAQ items */
.faq-item.color-purple {
  border-color: var(--color-primary);
  background: rgba(139, 92, 246, 0.04);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.08);
}
.faq-item.color-cyan {
  border-color: var(--color-secondary);
  background: rgba(6, 182, 212, 0.04);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.08);
}
.faq-item.color-pink {
  border-color: var(--color-accent);
  background: rgba(236, 72, 153, 0.04);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.08);
}
.faq-item.color-blue {
  border-color: var(--color-blue);
  background: rgba(59, 130, 246, 0.04);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.08);
}

.faq-item:hover {
  transform: translateX(4px);
}

.faq-question {
  width: 100%;
  padding: 24px;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--color-secondary);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 24px;
}

.faq-answer p {
  color: #cbd5e1;
  font-size: 0.95rem;
  padding-bottom: 24px;
  line-height: 1.8;
}

/* --- FOOTER & PBN LINKS --- */
footer {
  background: rgba(6, 9, 19, 0.95);
  border-top: 1px solid var(--panel-border);
  padding: 60px 0 30px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-pbn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.footer-pbn span {
  color: var(--text-dark);
  font-size: 0.8rem;
}

.footer-pbn a {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: var(--transition-smooth);
  border-bottom: 1px dashed var(--panel-border);
  padding-bottom: 2px;
}

.footer-pbn a:hover {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  font-size: 0.8rem;
  color: var(--text-dark);
}

/* --- ANIMATIONS --- */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
    box-shadow: 0 0 14px var(--color-primary);
  }
}

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

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

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

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .pricing-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  section {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  
  .features-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid-3 {
    grid-template-columns: 1fr;
  }
  
  .articles-row {
    padding: 0 24px;
  }
  .article-card {
    width: 290px;
  }
}

/* --- ARTICLE TEMPLATE STYLING (FOR SUBPAGES) --- */
.article-header {
  padding-top: 150px;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 100px;
}

.article-content {
  background: var(--panel-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #e2e8f0;
}

.article-content h2 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-top: 36px;
  margin-bottom: 16px;
  border-left: 4px solid var(--color-primary);
  padding-left: 12px;
}

.article-content h3 {
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-top: 28px;
  margin-bottom: 12px;
}

.article-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #cbd5e1;
}

.article-content ul, .article-content ol {
  margin-left: 24px;
  margin-bottom: 24px;
}

.article-content li {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.article-content strong {
  color: var(--color-secondary);
}

.article-internal-links {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 40px;
}

.article-internal-links h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.article-internal-links ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-internal-links a {
  color: var(--color-secondary);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.article-internal-links a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.article-back:hover {
  color: var(--color-secondary);
  transform: translateX(-4px);
}
