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

:root {
  --primary-red: #DB0036;
  --primary-green: #008C19;
  --primary-blue: #3185FC;
  --dark-bg: #2a2d2f;
  --dark-secondary: #2b3440;
  --light-gray: #dddddd;
  --white: #ffffff;
  --off-white: #f3f3f3;
  --accent-blue: #1e88e5;
  --accent-green: #00897b;
  --accent-orange: #ff6f00;
  --primary-dark: #1F2937;
  --secondary-dark: #111827;
  --text-light: #F9FAFB;
  --text-gray: #9CA3AF;
  --border-color: #374151;
  --gradient-start: #DB0036;
  --gradient-end: #7D070B;
  --neon-red: #FF0040;
  --neon-pink: #FF0080;
  --dark-void: #0A0A0A;
  --cyber-purple: #8B5CF6;
  --electric-blue: #0EA5E9;
  --matrix-green: #22C55E;
  --plasma-yellow: #FACC15;
  --bg-section-first: #191d26;
  --bg-section-second: #212834;
  --bg-section-third: #2c3441;
  --bg-section-fourth: #363e4a;
}

body {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  background: var(--dark-bg);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */

.cursor {
  width: 15px;
  height: 15px;
  border: 2px solid var(--primary-red);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.1s ease;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 25px;
  height: 25px;
  background: rgba(182, 23, 35, 0.1);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.2s ease;
  transform: translate(-50%, -50%);
  border: 2px solid var(--primary-dark);
}

.cursor-hover {
  transform: translate(-50%, -50%) scale(2);
  background: var(--primary-dark);
  border: 2px solid var(--primary-dark);
  mix-blend-mode: difference;
}

/* Features Section */

.features {
  background: var(--secondary-dark);
  padding: 100px 0;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-red), #B21318, #7D070B);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon .material-icons {
  font-size: 32px;
  color: white;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-gray);
}

.check-icon {
  color: var(--gradient-start);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Hero Section */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--secondary-dark);
}

.hero-background {
  position: absolute;
  inset: 0;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.2) 0%, transparent 50%);
}

.animated-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, .05) 35px, rgba(255, 255, 255, .05) 70px);
  animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
  from {
    transform: translate(-50px, -50px);
  }

  to {
    transform: translate(0, 0);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-gray);
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Video Section */

.video-section {
  background: var(--primary-dark);
  padding: 100px 0;
}

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

.video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #000;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-placeholder {
  color: var(--text-gray);
  font-size: 48px;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
}

.video-text {
  color: white;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
}

.btn-video {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 16px 32px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.btn-video:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Blog Section */

.blog-section {
  background: var(--secondary-dark);
  padding: 100px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-header .section-title {
  font-size: 2.5rem;
}

.view-all-link {
  color: var(--gradient-start);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.view-all-link:hover {
  gap: 12px;
}

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

.blog-card {
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
}

.blog-image:hover .blog-placeholder {
  transform: scale(1.05);
}

.blog-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 48px;
  transition: transform 0.3s ease;
}

.blog-tags {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
}

.tag {
  background: rgba(219, 0, 54, 0.9);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.blog-content {
  padding: 32px;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.4;
}

.blog-description {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.read-more {
  color: var(--gradient-start);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 12px;
}

.share-btn {
  background: transparent;
  border: none;
  color: var(--text-gray);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.share-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

/* Media Section */

.media-section {
  background: var(--primary-dark);
  padding: 80px 0;
  text-align: center;
  padding: 100px 20px;
  margin: 0 auto;
}

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

.media-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.media-logo {
  opacity: 0.6;
  transition: opacity 0.3s ease;
  font-size: 24px;
  color: var(--text-gray);
  font-weight: 600;
}

.media-logo:hover {
  opacity: 1;
}

/* Floating Navigation */

.nav-float {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(207, 207, 207, 0.2);
  border-radius: 100px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  transition: all 0.3s ease;
}

.nav-float:hover {
  border-color: rgba(254, 252, 252, 0.9);
  ;
  box-shadow: 0 0 30px rgba(207, 207, 207, 0.3);
  ;
}

.logo-3d {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary-red), #B21318, #7D070B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {

  0%,
  100% {
    filter: hue-rotate(0deg) brightness(1);
  }

  50% {
    filter: hue-rotate(10deg) brightness(1.2);
  }
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-link {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: width 0.3s ease;
}

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

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

.btn-neon {
  background: transparent;
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: none;
}

.btn-neon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-red);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-neon:hover {
  color: var(--white);
  box-shadow: 0 0 20px var(--primary-red);
}

.btn-neon:hover::before {
  left: 0;
}

.btn-neon.btn-green {
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-neon.btn-green::before {
  background: var(--primary-green);
}

.btn-neon.btn-green:hover {
  color: var(--white);
  box-shadow: 0 0 20px var(--primary-green);
}

.btn-neon.btn-blue {
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-neon.btn-blue::before {
  background: var(--primary-blue);
}

.btn-neon.btn-blue:hover {
  color: var(--white);
  box-shadow: 0 0 20px var(--primary-blue);
}


/* Hero Section - Geometric Pattern */

.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-bg);
}

.geometric-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.geometric-shape {
  position: absolute;
  background: linear-gradient(135deg, rgba(182, 23, 35, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-shape 20s infinite ease-in-out;
}

.shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -150px;
  animation-delay: 5s;
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, transparent 70%);
}

.shape-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
  background: linear-gradient(135deg, rgba(0, 137, 123, 0.1) 0%, transparent 70%);
}

@keyframes float-shape {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  25% {
    transform: translate(50px, -50px) rotate(90deg) scale(1.1);
  }

  50% {
    transform: translate(-30px, 30px) rotate(180deg) scale(0.95);
  }

  75% {
    transform: translate(-50px, -30px) rotate(270deg) scale(1.05);
  }
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(182, 23, 35, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(182, 23, 35, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 10s linear infinite;
}

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

  100% {
    transform: translate(50px, 50px);
  }
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 1000px;
  padding: 0 20px;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(182, 23, 35, 0.1);
  border: 1px solid rgba(182, 23, 35, 0.3);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 30px;
  animation: pulse-border 2s ease infinite;
}

@keyframes pulse-border {

  0%,
  100% {
    border-color: rgba(182, 23, 35, 0.3);
  }

  50% {
    border-color: rgba(182, 23, 35, 0.6);
  }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 30px;
  background: linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  animation: glitch-1 0.5s infinite;
  color: var(--primary-red);
  z-index: -1;
  opacity: 0.7;
}

.glitch::after {
  animation: glitch-2 0.5s infinite;
  color: var(--accent-blue);
  z-index: -2;
  opacity: 0.7;
}

@keyframes glitch-1 {

  0%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0);
  }

  20% {
    clip-path: inset(0 100% 0 0);
    transform: translate(-2px);
  }

  40% {
    clip-path: inset(0 0 0 100%);
    transform: translate(2px);
  }

  60% {
    clip-path: inset(100% 0 0 0);
    transform: translate(-1px);
  }

  80% {
    clip-path: inset(0 0 100% 0);
    transform: translate(1px);
  }
}

@keyframes glitch-2 {

  0%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0);
  }

  20% {
    clip-path: inset(100% 0 0 0);
    transform: translate(1px);
  }

  40% {
    clip-path: inset(0 0 100% 0);
    transform: translate(-1px);
  }

  60% {
    clip-path: inset(0 100% 0 0);
    transform: translate(2px);
  }

  80% {
    clip-path: inset(0 0 0 100%);
    transform: translate(-2px);
  }
}

/* Hero Section - Matrix Rain Effect */

.hero-matrix {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.matrix-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.1;
}

.matrix-column {
  position: absolute;
  top: -100%;
  font-family: monospace;
  font-size: 20px;
  color: var(--matrix-green);
  animation: matrix-fall linear infinite;
  text-shadow: 0 0 5px var(--matrix-green);
}

@keyframes matrix-fall {
  to {
    top: 100%;
  }
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 1000px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 0, 64, 0.1);
  border: 1px solid rgba(255, 0, 64, 0.3);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 30px;
  animation: pulse-border 2s ease infinite;
}

@keyframes pulse-border {

  0%,
  100% {
    border-color: rgba(255, 0, 64, 0.3);
  }

  50% {
    border-color: rgba(255, 0, 64, 0.6);
  }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 30px;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  animation: glitch-1 0.5s infinite;
  color: var(--neon-red);
  z-index: -1;
}

.glitch::after {
  animation: glitch-2 0.5s infinite;
  color: var(--electric-blue);
  z-index: -2;
}

@keyframes glitch-1 {

  0%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0);
  }

  20% {
    clip-path: inset(0 100% 0 0);
    transform: translate(-2px);
  }

  40% {
    clip-path: inset(0 0 0 100%);
    transform: translate(2px);
  }

  60% {
    clip-path: inset(100% 0 0 0);
    transform: translate(-1px);
  }

  80% {
    clip-path: inset(0 0 100% 0);
    transform: translate(1px);
  }
}

@keyframes glitch-2 {

  0%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0);
  }

  20% {
    clip-path: inset(100% 0 0 0);
    transform: translate(1px);
  }

  40% {
    clip-path: inset(0 0 100% 0);
    transform: translate(-1px);
  }

  60% {
    clip-path: inset(0 100% 0 0);
    transform: translate(2px);
  }

  80% {
    clip-path: inset(0 0 0 100%);
    transform: translate(-2px);
  }
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 50px;
  font-weight: 300;
}

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

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--neon-red), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

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

.btn-primary {
  background: linear-gradient(45deg, var(--neon-red), var(--neon-pink));
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: none;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 0, 64, 0.5) !important;
}

.btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 0, 64, 0.5) !important;
}

.btn-secondary {
  background: linear-gradient(45deg, #3185FC, #134d9f, #004DBA);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: none;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-secondary:hover::after {
  width: 300px;
  height: 300px;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 17, 255, 0.5) !important;
}

.btn-secondary:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 17, 255, 0.5) !important;
}

/* Video Section */

.video-showcase {
  margin: 50px auto;
  max-width: 800px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  background: var(--dark-secondary);
  animation: fadeInScale 1s ease-out 0.5s both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.video-container {
  position: relative;
  padding-bottom: 42.25%;
  height: 0;
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-secondary));
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(182, 23, 35, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(182, 23, 35, 0.4);
  animation: pulse-play 2s infinite;
  padding-left: 7px;
}

@keyframes pulse-play {
  0% {
    box-shadow: 0 0 0 0 rgba(182, 23, 35, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(182, 23, 35, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(182, 23, 35, 0);
  }
}

.video-placeholder:hover .play-button {
  transform: scale(1.1);
  background: var(--primary-red);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 50px;
  font-weight: 300;
}

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

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary-red), #B21318, #7D070B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--light-gray);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red), #B21318, #7D070B);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: none;
  border: none;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(182, 23, 35, 0.5);
}

/* Trust Indicators */

.trust-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.trust-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: linear-gradient(135deg, var(--primary-red), #B21318, #7D070B);
  padding: 2px;
  border-radius: 20px;
}

.trust-card {
  background: var(--dark-secondary);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  transition: all 0.3s ease;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: rotate-slow 10s linear infinite;
}

@keyframes rotate-slow {
  to {
    transform: rotate(360deg);
  }
}

.trust-card:hover::before {
  opacity: 0.05;
}

.trust-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
  animation: bounce-slow 3s ease-in-out infinite;
}

@keyframes bounce-slow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.trust-title {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--white);
}

.trust-desc {
  color: var(--light-gray);
  line-height: 1.6;
}

/* Bento Grid Section */

.bento-section {
  padding: 100px 20px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 50px;
  background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--light-gray);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
}

.bento-item {
  background: linear-gradient(135deg, rgba(43, 52, 64, 0.8) 0%, rgba(42, 45, 47, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: none;
}

.bento-item:hover {
  transform: translateY(-5px);
  border-color: rgba(182, 23, 35, 0.5);
  box-shadow: 0 20px 40px rgba(182, 23, 35, 0.2);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
}

.bento-tall {
  grid-row: span 2;
}

.bento-icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.bento-title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--white);
}

.bento-text {
  color: var(--light-gray);
  font-size: 14px;
  line-height: 1.5;
}

.bento-stat {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary-red), #B21318, #7D070B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Interactive Chart */

.chart-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary-red), #B21318, #7D070B);
  border-radius: 5px 5px 0 0;
  animation: grow-bar 1s ease forwards;
  opacity: 0.8;
}

@keyframes grow-bar {
  from {
    height: 0;
  }
}

/* CTA Section */

.cta-section {
  padding: 150px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--dark-bg);
}

.cta-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(182, 23, 35, 0.1) 0%, transparent 70%);
  animation: pulse-slow 4s ease-in-out infinite;
}

@keyframes pulse-slow {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--white);
}

.cta-subtitle {
  font-size: 1.3rem;
  color: var(--light-gray);
  margin-bottom: 50px;
}

.email-form {
  display: inline;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.email-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 25px;
  border-radius: 50px;
  color: var(--white);
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.email-input:focus {
  border-color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.08);
  color:white;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

:invalid~.email-input {
  box-shadow: 0 0 20px var(--primary-red);
}

:valid~.email-input {
  box-shadow: 0 0 20px var(--primary-green);
}

/* Footer */

.footer {
  padding: 80px 20px 40px;
  background: var(--dark-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--primary-red), #B21318, #7D070B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-desc {
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
  transform: translateY(-3px);
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-gray);
  font-size: 14px;
}

/* Mobile Responsive */

@media (max-width: 768px) {
  .nav-float {
    padding: 10px 15px;
    gap: 15px;
  }

  .nav-links {
    display: none;
  }

  .hero-stats {
    gap: 30px;
  }

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

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

  .bento-large,
  .bento-wide,
  .bento-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .email-form {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .cursor,
  .cursor-follower {
    display: none;
  }

  body {
    cursor: auto;
  }

  .btn-neon,
  .btn-primary,
  .bento-item {
    cursor: pointer;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .media-logos {
    gap: 30px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-overlay {
    padding: 24px;
  }

  section {
    padding: 50px 20px !important;
  }
}

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

/*Custom design*/

.bg-primary {
  background: var(--bg-section-second) !important;
}

.bg-secondary {
  background: var(--bg-section-third) !important;
}

.bg-terciary {
  background: var(--bg-section-fourth) !important;
}

.bg-banner,
.hero-section {
  background: var(--secondary-dark) !important;
}

.title-section {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: bold;
}

.subtitle-section {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: normal;
}

.content-section {
  font-family: 'Raleway', sans-serif;
  font-weight: normal;
}

.bg-gradient-green {
  background: linear-gradient(135deg, #008C19, #00B741, #87FF65);
}

.bg-gradient-red {
  background: linear-gradient(135deg, #DB0036, #B21318, #7D070B);
}

.bg-gradient-blue {
  background: linear-gradient(135deg, #3185FC, #066CF6, #004DBA);
}

.bg-green {
  background: #008C19;
}

.bg-red {
  background: #DB0036;
}

.bg-blue {
  background: #3185FC;
}

.media-logo img {
  min-height: 100px;
  max-height: 100px;
  filter: brightness(0) invert(1);
}

/* Animacion BG */
.block {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #1e293b;
  border: 2px solid #0a4057;
  border-radius: 6px;
  box-shadow: 0 0 8px #0a4057;
  animation: moveLeft linear infinite;
}

@keyframes moveLeft {
  from {
    transform: translateX(100vw);
    opacity: 1;
  }

  to {
    transform: translateX(-100vw);
    opacity: 0.2;
  }
}

.modal.show {
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background: var(--bg-section-third) !important;
  min-height: fit-content;
}

.hidden{
  display: none !important;
}


.accordion-item {
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-toggle {
  width: 100%;
  text-align: left;
  padding: 15px;
  background: #f1f1f1;
  border: none;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-toggle:hover {
  background: #e2e2e2;
}
.accordion-content {
  padding: 15px;
  background-color: #fff;
  animation: fadeIn 0.3s ease-in-out;
}
.arrow {
  transition: transform 0.3s ease;
}
.arrow.open {
  transform: rotate(180deg);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
