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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #080808;
  color: #F3F4F5;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Ambient background blobs removed */

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

ul {
  list-style: none;
}

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

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --red-primary: #E60000;
  --white-accent: #FFFFFF;
  --black-accent: #111111;
  --dark: #080808;
  --dark-deep: #100C08;
  --text-primary: #F3F4F5;
  --text-secondary: #DBE0E1;
  --text-muted: rgba(219, 224, 225, 0.55);

  --gradient-hero: linear-gradient(135deg, #E60000 0%, #FFFFFF 50%, #444444 100%);
  --gradient-btn: linear-gradient(135deg, #E60000 0%, #000000 100%);

  /* Glassmorphism tokens */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-hover: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(230, 0, 0, 0.25);
  --glass-blur: blur(20px);
  --glass-blur-strong: blur(32px);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --glass-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 40px rgba(230, 0, 0, 0.06);
  --glass-inner-glow: inset 0 1px 0 rgba(255, 255, 255, 0.06);

  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --container: 1200px;
  --section-gap: 120px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

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

p {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
}

.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.red-text {
  color: var(--red-primary);
}

.highlight-red {
  color: var(--red-primary);
  text-shadow: 0 0 15px rgba(230, 0, 0, 0.3);
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section {
  padding: var(--section-gap) 0;
  position: relative;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 60px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: 0 4px 24px rgba(230, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(230, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--glass-inner-glow);
}

.btn-outline:hover {
  border-color: var(--glass-border-hover);
  background: rgba(230, 0, 0, 0.08);
  box-shadow: var(--glass-inner-glow), 0 0 20px rgba(230, 0, 0, 0.08);
}

/* ===== HEADER — GLASS ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(8, 8, 8, 0.4);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s, border-color 0.3s;
}

.header.scrolled {
  background: rgba(8, 8, 8, 0.7);
  border-bottom-color: rgba(230, 0, 0, 0.1);
}

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

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px rgba(230, 0, 0, 0.3);
}

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

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}

.nav a:hover {
  color: var(--red-primary);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-btn);
  border-radius: 2px;
  transition: width 0.3s;
}

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

.header-cta {
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

/* Large ambient orbs behind hero removed */

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--glass-inner-glow), var(--glass-shadow);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--red-primary);
  margin-bottom: 32px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-primary);
  box-shadow: 0 0 8px var(--red-primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 .highlight {
  display: block;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== WHY YOUTUBE SECTION ===== */
.why-section {
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(100, 100, 100, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red-primary);
  margin-bottom: 20px;
}

.section-label .line {
  width: 32px;
  height: 2px;
  background: var(--gradient-btn);
  border-radius: 2px;
}

.section-header {
  max-width: 720px;
  margin-bottom: 64px;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ===== GLASS CARD — CORE GLASSMORPHISM ===== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  box-shadow: var(--glass-shadow), var(--glass-inner-glow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Top shimmer line */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255, 255, 255, 0.12) 50%, transparent 90%);
}

/* Side accent glow */
.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--red-primary), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow-hover);
}

.glass-card:hover::after {
  opacity: 1;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(230, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(230, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--red-primary);
}

.glass-card h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.glass-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Wide card spanning 2 cols */
.glass-card.wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 40px;
}

.glass-card.wide .card-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 1.8rem;
}

.glass-card.wide .card-text h3 {
  font-size: 1.3rem;
}

/* ===== ANALYTICS SECTION ===== */
.analytics-section {
  position: relative;
}

/* Ambient orb behind analytics */
.analytics-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 0, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.analytics-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.analytics-card {
  position: relative;
}

.analytics-card .card-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.12;
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
}

/* ===== CONTENT INTEGRATION SECTION ===== */
.integration-section {
  position: relative;
  padding: 80px 0 120px;
}

/* Ambient orb behind integration */
.integration-section::before {
  content: '';
  position: absolute;
  top: 40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 0, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.integration-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.integration-text {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  box-shadow: var(--glass-shadow), var(--glass-inner-glow);
  position: relative;
  overflow: hidden;
}

.integration-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255, 255, 255, 0.1) 50%, transparent 90%);
}

.integration-text h2 {
  margin-bottom: 24px;
}

.integration-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.integration-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.integration-circle {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.integration-circle::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px dashed rgba(230, 0, 0, 0.2);
}

.integration-circle-inner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E60000 0%, #8A0000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 40px rgba(230, 0, 0, 0.4), inset 0 0 40px rgba(0, 0, 0, 0.2);
  z-index: 2;
  animation: pulse-integration 4s ease-in-out infinite;
}

@keyframes pulse-integration {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 40px rgba(230, 0, 0, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 16px 60px rgba(230, 0, 0, 0.6); }
}

.integration-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(25, 25, 25, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  z-index: 3;
}

.integration-tag svg {
  color: var(--red-primary);
}

.float-1 {
  top: 10%;
  left: -20px;
  animation: float-tag 6s ease-in-out infinite;
}

.float-2 {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  animation: float-tag 7s ease-in-out infinite 1s;
}

.float-3 {
  bottom: 10%;
  left: 10px;
  animation: float-tag 5s ease-in-out infinite 2s;
}

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

/* ===== STATS SECTION ===== */
.stats-section {
  position: relative;
  padding: 100px 0;
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
  position: relative;
  padding: 120px 0;
}

/* Background blur removed */

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.comparison-card {
  display: flex;
  flex-direction: column;
  padding: 48px 40px;
}

.comparison-header {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.comparison-header h3 {
  font-size: 1.8rem;
  margin: 0;
}

.badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 60px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.badge-primary {
  background: rgba(230, 0, 0, 0.15);
  border: 1px solid rgba(230, 0, 0, 0.3);
  color: var(--red-primary);
  box-shadow: 0 0 15px rgba(230, 0, 0, 0.2);
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.list-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-x {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
}

.icon-check {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: 0 4px 12px rgba(230, 0, 0, 0.3);
}

.new-way {
  background: rgba(230, 0, 0, 0.03);
  border-color: rgba(230, 0, 0, 0.15);
  transform: translateY(-8px);
}

.new-way:hover {
  border-color: rgba(230, 0, 0, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 40px rgba(230, 0, 0, 0.1);
}

/* Ambient orb behind stats */
/* Removed */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.stat-card {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  box-shadow: var(--glass-shadow), var(--glass-inner-glow);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

/* Top shimmer on stat cards */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255, 255, 255, 0.1) 50%, transparent 90%);
}

.stat-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-hover);
  transform: translateY(-4px);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

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

.stat-suffix {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ===== VISUAL TRUST SECTION ===== */
.trust-section {
  position: relative;
  padding: 100px 0;
}

.trust-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trust-text {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 48px 40px;
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  box-shadow: var(--glass-shadow), var(--glass-inner-glow);
  position: relative;
  overflow: hidden;
}

.trust-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255, 255, 255, 0.12) 50%, transparent 90%);
}

.trust-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--red-primary), transparent);
  border-radius: 2px;
}

.trust-text h2 {
  margin-bottom: 24px;
}

.trust-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.trust-highlight {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(230, 0, 0, 0.1);
  border: 1px solid rgba(230, 0, 0, 0.2);
  border-radius: 6px;
  color: var(--red-primary);
  font-weight: 600;
}

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

.trust-circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.trust-circle::before {
  content: '';
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 1px dashed rgba(230, 0, 0, 0.2);
}

.trust-circle-inner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E60000 0%, #8A0000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 40px rgba(230, 0, 0, 0.45), inset 0 0 40px rgba(0,0,0,0.2);
  z-index: 2;
  animation: pulse-integration 4s ease-in-out infinite;
}

.trust-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 60px;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  z-index: 3;
}

.trust-tag:nth-child(2) { top: 4%; right: 0%; animation: float-anim 5s ease-in-out infinite; }
.trust-tag:nth-child(3) { bottom: 18%; left: 0%; animation: float-anim 6s ease-in-out infinite 0.8s; }
.trust-tag:nth-child(4) { top: 42%; left: 0%; animation: float-anim 7s ease-in-out infinite 1.6s; }
.trust-tag:nth-child(5) { bottom: 22%; right: 0%; animation: float-anim 5.5s ease-in-out infinite 2.4s; }

.trust-badge-mini {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(230, 0, 0, 0.1);
  border: 1px solid rgba(230, 0, 0, 0.2);
  border-radius: 6px;
  color: var(--red-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 2px;
}

.radar-container {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-circle {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: radar-pulse 4s linear infinite;
}

.radar-circle:nth-child(1) { width: 100%; height: 100%; animation-delay: 0s; }
.radar-circle:nth-child(2) { width: 70%; height: 70%; animation-delay: 1.3s; }
.radar-circle:nth-child(3) { width: 40%; height: 40%; animation-delay: 2.6s; }

@keyframes radar-pulse {
  0% { transform: scale(0.8); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: scale(1.2); opacity: 0; }
}

.radar-center {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #E60000 0%, #8A0000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 40px rgba(230, 0, 0, 0.6);
  z-index: 2;
  position: relative;
}

.radar-dot {
  position: absolute;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 60px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  box-shadow: var(--glass-shadow);
  z-index: 3;
}

.radar-dot::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--red-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red-primary);
}

.dot-1 { top: 10%; right: 5%; }
.dot-1::before { left: -12px; top: 18px; }

.dot-2 { top: 40%; left: -10%; }
.dot-2::before { right: -12px; top: 18px; }

.dot-3 { bottom: 15%; left: 0%; }
.dot-3::before { right: -12px; top: 18px; }

.dot-4 { bottom: 25%; right: -5%; }
.dot-4::before { left: -12px; top: 18px; }

/* ===== SCALE SECTION ===== */
.scale-section {
  padding: 100px 0;
}

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

.scale-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  backdrop-filter: blur(32px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.scale-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 0, 0, 0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(230,0,0,0.1);
}

.scale-value {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.scale-value span {
  color: var(--red-primary);
  font-size: 0.7em;
  margin-left: 4px;
}

.scale-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ===== INTEGRATION SECTION ===== */
.integration-section {
  padding: 100px 0;
}

.integration-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.integration-visual {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.integration-circle {
  width: 300px;
  height: 300px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.integration-tag {
  position: absolute;
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 3;
}

.integration-tag svg {
  color: var(--red-primary);
}

.float-1 { top: 0; left: 0; animation: float-anim 5s ease-in-out infinite; }
.float-2 { bottom: 20%; right: -20px; animation: float-anim 6s ease-in-out infinite 1s; }
.float-3 { bottom: 0; left: 20%; animation: float-anim 7s ease-in-out infinite 2s; }

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

/* ===== COMPARISON SECTION ===== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
}

.comp-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comp-card.grey {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-card.red {
  background: rgba(230, 0, 0, 0.03);
  border: 1px solid rgba(230, 0, 0, 0.15);
  box-shadow: 0 0 40px rgba(230, 0, 0, 0.05);
}

.comp-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comp-header span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

.comp-header h3 {
  font-size: 1.5rem;
}

.comp-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.comp-item .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.comp-card.grey .comp-item { color: rgba(255, 255, 255, 0.5); }
.comp-card.red .comp-item { color: var(--text-primary); }
.comp-card.red .comp-item .check { color: var(--red-primary); border-color: var(--red-primary); }

/* ===== STRATEGIC WARNING SECTION ===== */
.warning-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.warning-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.warning-card .icon {
  color: var(--red-primary);
  font-size: 1.2rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  position: relative;
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  height: 100%;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.testimonial-content strong {
  color: var(--white-accent);
}

.testimonial-author {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-info strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.author-info span {
  font-size: 0.9rem;
  color: var(--red-primary);
  font-weight: 500;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  position: relative;
  padding: 100px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  box-shadow: var(--glass-shadow), var(--glass-inner-glow);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--glass-border-hover);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none; /* Hide default arrow */
}

.faq-question::-webkit-details-marker {
  display: none; /* Chrome/Safari */
}

.faq-icon {
  color: var(--red-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 32px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
  padding: 0 32px 24px 32px;
}

.faq-answer-inner {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item[open] .faq-answer-inner {
  opacity: 1;
  transition-delay: 0.1s;
}

.faq-answer ul {
  list-style-type: none;
  padding-bottom: 8px;
}

.faq-answer li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.faq-answer li::before {
  content: '•';
  color: var(--red-primary);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -6px;
}

.faq-answer li:last-child {
  margin-bottom: 0;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow), var(--glass-inner-glow);
  color: var(--red-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s, border-color 0.25s, background 0.25s;
}

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

.scroll-top:hover {
  border-color: var(--glass-border-hover);
  background: rgba(230, 0, 0, 0.12);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0 120px;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(230, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 48px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  position: relative;
  z-index: 2;
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  box-shadow: var(--glass-shadow), var(--glass-inner-glow);
  overflow: hidden;
}

/* Top shimmer */
.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(255, 255, 255, 0.15) 50%, transparent 95%);
}

/* Left accent glow */
.cta-box::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  bottom: 20%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--red-primary), transparent);
  border-radius: 2px;
}

.cta-box h2 {
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1.1rem;
}

/* ===== SEO SECTION ===== */
.seo-section {
  padding: 80px 0 100px;
  background: rgba(8, 8, 8, 0.2);
}

.seo-content-box {
  max-width: 900px;
  margin: 0 auto;
}

.seo-content-box h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seo-content-box h3 {
  font-size: 1.5rem;
  margin: 40px 0 24px;
  color: var(--text-primary);
}

.seo-content-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.seo-content-box strong {
  color: var(--text-primary);
}

.seo-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.seo-list li {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  padding-left: 28px;
}

.seo-list li::before {
  content: '•';
  color: var(--red-primary);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -4px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

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

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--red-primary);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== MOBILE NAV — GLASS ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  z-index: 999;
  padding: 100px 40px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--glass-border);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 16px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav a:hover {
  color: var(--red-primary);
  padding-left: 12px;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}

.overlay.active {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root {
    --section-gap: 80px;
  }

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

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .trust-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 64px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

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

  .stat-card {
    padding: 36px 24px;
  }

  .glass-card.wide {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .trust-circle {
    width: 260px;
    height: 260px;
  }

  .trust-circle-inner {
    width: 140px;
    height: 140px;
    font-size: 3rem;
  }

  .trust-tag {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

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

  .comparison-card {
    padding: 36px 24px;
  }

  .integration-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .integration-visual {
    order: -1;
  }

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

  .faq-answer {
    padding: 0 24px;
    font-size: 0.95rem;
  }

  .faq-item[open] .faq-answer {
    padding: 0 24px 20px 24px;
  }
}

/* ===== BOTTOM CTA SECTION ===== */
.cta-bottom-section {
  padding: 120px 0;
  background: radial-gradient(circle at bottom, rgba(230, 0, 0, 0.05) 0%, transparent 70%);
}

.cta-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 80px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  backdrop-filter: blur(40px);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-box p {
  font-size: 1.1rem;
  opacity: 0.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .cta-box {
    padding: 60px 24px;
  }
  .cta-box h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
}
