/* ============================================
   АНТИПИРАТ - Статический сайт
   Футуристичный дизайн в стиле Sci-Fi
   ============================================ */

/* CSS Variables */
:root {
  --bg-primary: #0a0c14;
  --bg-secondary: #0b0f1c;
  --accent-blue: #2a7de1;
  --accent-green: #00e5b0;
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #8b92a8;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Roboto", sans-serif;
  --font-mono: "Ubuntu Mono", monospace;
  --font-alt: "Open Sans", sans-serif;
  --transition: all 0.3s ease;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
}

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

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 20, 0.98) 0%,
    rgba(10, 12, 20, 0.85) 100%
  );
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42, 125, 225, 0.1);
}

.header.scrolled {
  background: rgba(10, 12, 20, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(42, 125, 225, 0.2);
  padding: 12px 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.header .logo-icon {
  width: 32px;
  height: 32px;
}

.header .logo-text {
  font-size: 1.25rem;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.logo-text span {
  color: var(--accent-blue);
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-btn:hover {
  color: var(--text-primary);
  background: rgba(42, 125, 225, 0.08);
}

.nav-dropdown-btn svg {
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.nav-dropdown:hover .nav-dropdown-btn svg {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: linear-gradient(
    180deg,
    rgba(15, 25, 45, 0.98) 0%,
    rgba(10, 15, 30, 0.98) 100%
  );
  border: 1px solid rgba(42, 125, 225, 0.2);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  margin-top: 8px;
  backdrop-filter: blur(20px);
}

.nav-dropdown-content::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: rgba(15, 25, 45, 0.98);
  border-left: 1px solid rgba(42, 125, 225, 0.2);
  border-top: 1px solid rgba(42, 125, 225, 0.2);
  transform: rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-content a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  border-radius: 8px;
  margin-bottom: 3px;
  text-decoration: none;
}

.nav-dropdown-content a:hover {
  background: linear-gradient(
    135deg,
    rgba(42, 125, 225, 0.12) 0%,
    rgba(0, 229, 176, 0.08) 100%
  );
  color: var(--text-primary);
  padding-left: 17px;
}

.nav-dropdown-content a:last-child {
  margin-bottom: 0;
}

.header .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(42, 125, 225, 0.4);
  background: linear-gradient(
    135deg,
    rgba(42, 125, 225, 0.15) 0%,
    rgba(0, 229, 176, 0.08) 100%
  );
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
}

.header .btn:hover {
  background: linear-gradient(
    135deg,
    rgba(42, 125, 225, 0.25) 0%,
    rgba(0, 229, 176, 0.15) 100%
  );
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(42, 125, 225, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: rgba(42, 125, 225, 0.08);
  border: 1px solid rgba(42, 125, 225, 0.15);
  color: var(--text-primary);
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(42, 125, 225, 0.15);
  border-color: rgba(42, 125, 225, 0.3);
  transform: scale(1.05);
}

.mobile-menu-btn svg {
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 20, 0.98) 0%,
    rgba(10, 15, 30, 0.98) 100%
  );
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(42, 125, 225, 0.2);
  padding: 20px 15px;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  z-index: 999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.mobile-menu-link {
  display: block;
  padding: 14px 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(42, 125, 225, 0.08);
  transition: all 0.3s ease;
  border-radius: 10px;
  margin-bottom: 6px;
}

.mobile-menu-link:hover {
  color: var(--text-primary);
  background: rgba(42, 125, 225, 0.08);
  padding-left: 18px;
}

.mobile-menu-link:last-child {
  border-bottom: none;
}

.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
}

/* Mobile Accordion */
.mobile-accordion {
  border-bottom: 1px solid rgba(42, 125, 225, 0.08);
}

.mobile-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
  margin-bottom: 6px;
}

.mobile-accordion-btn:hover {
  background: rgba(42, 125, 225, 0.08);
}

.mobile-accordion-icon {
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.mobile-accordion.active .mobile-accordion-icon {
  transform: rotate(180deg);
  color: var(--accent-blue);
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(42, 125, 225, 0.03);
  border-radius: 10px;
  margin-bottom: 6px;
}

.mobile-accordion.active .mobile-accordion-content {
  max-height: 350px;
}

.mobile-accordion-content a {
  display: block;
  padding: 12px 12px 12px 30px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(42, 125, 225, 0.05);
  transition: all 0.3s ease;
}

.mobile-accordion-content a:hover {
  color: var(--text-primary);
  background: rgba(42, 125, 225, 0.06);
  padding-left: 35px;
}

.mobile-accordion-content a:last-child {
  border-bottom: none;
}

.mobile-menu-cta {
  margin-top: 20px;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-gradient {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse at top,
      rgba(42, 125, 225, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(0, 229, 176, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(to bottom, #0a0c14 0%, #0b0f1c 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 12, 20, 0.7) 0%,
    rgba(10, 12, 20, 0.5) 50%,
    rgba(10, 12, 20, 1) 100%
  );
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 12, 20, 0.7) 0%,
    rgba(10, 12, 20, 0.5) 50%,
    rgba(10, 12, 20, 1) 100%
  );
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(42, 125, 225, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(42, 125, 225, 0.3);
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-30px) translateX(10px);
  }
  50% {
    transform: translateY(-10px) translateX(-10px);
  }
  75% {
    transform: translateY(-20px) translateX(5px);
  }
}

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(42, 125, 225, 0.1);
  border: 1px solid rgba(42, 125, 225, 0.3);
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.hero-badge .count {
  color: var(--accent-green);
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title .gradient {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

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

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-trust-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s infinite;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

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

/* ============================================
   SECTION STYLES
   ============================================ */
section {
  padding: 100px 0;
  position: relative;
}

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

.section-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(42, 125, 225, 0.1);
  color: var(--accent-blue);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 50px;
  margin-bottom: 15px;
}

.section-tag.green {
  background: rgba(0, 229, 176, 0.1);
  color: var(--accent-green);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 15px;
}

.section-title .gradient {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   ADVANTAGES SECTION
   ============================================ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.advantage-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.1);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-8px);
  border-color: rgba(42, 125, 225, 0.3);
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle at top right,
    rgba(42, 125, 225, 0.1),
    transparent
  );
}

.advantage-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.advantage-icon.blue {
  background: linear-gradient(
    135deg,
    rgba(42, 125, 225, 0.2),
    rgba(42, 125, 225, 0.1)
  );
  color: var(--accent-blue);
}

.advantage-icon.green {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 176, 0.2),
    rgba(0, 229, 176, 0.1)
  );
  color: var(--accent-green);
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1) rotate(5deg);
}

.advantage-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.advantage-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.advantage-stat {
  padding-top: 20px;
  border-top: 1px solid rgba(42, 125, 225, 0.1);
}

.advantage-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.advantage-stat-value.blue {
  color: var(--accent-blue);
}

.advantage-stat-value.green {
  color: var(--accent-green);
}

.advantage-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
  max-width: 800px;
  margin: 60px auto 0;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(42, 125, 225, 0.1),
    rgba(0, 229, 176, 0.1)
  );
  border: 1px solid rgba(42, 125, 225, 0.3);
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-banner-text h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.cta-banner-text p {
  color: var(--text-muted);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.feature-item:hover,
.feature-item.active {
  background: rgba(42, 125, 225, 0.1);
  border-color: rgba(42, 125, 225, 0.3);
}

.feature-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(42, 125, 225, 0.1);
  color: var(--accent-blue);
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-item.active .feature-icon {
  background: var(--accent-blue);
  color: white;
}

.feature-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.feature-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: none;
}

.feature-item.active .feature-info p {
  display: block;
}

.feature-arrow {
  color: var(--text-muted);
  margin-left: auto;
  transition: var(--transition);
}

.feature-item.active .feature-arrow {
  color: var(--accent-blue);
  transform: translateX(5px);
}

/* Demo Screen */
.demo-screen {
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--bg-primary);
  border-bottom: 1px solid rgba(42, 125, 225, 0.1);
}

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

.demo-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.demo-dots span:nth-child(1) {
  background: #ff5f57;
}
.demo-dots span:nth-child(2) {
  background: #febc2e;
}
.demo-dots span:nth-child(3) {
  background: #28c840;
}

.demo-title {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.demo-content {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.demo-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 20, 0.4), transparent);
  pointer-events: none;
}

.demo-screenshot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}

.demo-screenshot.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.demo-screen:hover .demo-screenshot.active {
  transform: scale(1.02);
}

.demo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: var(--bg-primary);
  border-top: 1px solid rgba(42, 125, 225, 0.1);
}

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

.demo-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s infinite;
}

.demo-desc {
  margin-top: 25px;
  padding: 20px;
  background: rgba(42, 125, 225, 0.05);
  border: 1px solid rgba(42, 125, 225, 0.2);
  border-radius: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 30px;
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  position: relative;
  border-top: 1px solid rgba(42, 125, 225, 0.15);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(42, 125, 225, 0.3),
    transparent
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 60px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: span 1;
  }
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-muted);
  margin: 20px 0;
  max-width: 350px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 125, 225, 0.08);
  border: 1px solid rgba(42, 125, 225, 0.15);
  border-radius: 12px;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(42, 125, 225, 0.15);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 125, 225, 0.2);
}

.footer-column h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), transparent);
  border-radius: 2px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 14px;
}

.footer-column a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.footer-column a:hover {
  color: var(--accent-blue);
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(42, 125, 225, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1024px) {
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 25px;
  }

  .footer-ecosystem {
    justify-content: center;
    display: flex;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

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

@media (max-width: 1024px) {
  .footer-copyright {
    text-align: center;
  }
}

.footer-copyright p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.8;
  margin: 0 0 8px 0;
}

.footer-copyright p:last-child {
  margin-bottom: 0;
}

.footer-developer {
  font-size: 0.85rem;
}

.footer-developer a {
  color: var(--text-primary);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-developer a:hover {
  color: var(--accent-blue);
}

/* Cookie Notice */
.cookie-notice {
  margin-top: 30px;
  padding: 20px;
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.1);
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.cookie-notice p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cookie-notice button {
  padding: 10px 20px;
  background: rgba(42, 125, 225, 0.1);
  color: var(--accent-blue);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-notice button:hover {
  background: rgba(42, 125, 225, 0.2);
}

/* ============================================
   HERO ANIMATIONS
   ============================================ */
.hero-shield-animation {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 240px;
  opacity: 0.3;
  z-index: 0;
}

.shield-svg {
  width: 100%;
  height: 100%;
}

.shield-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawShield 3s ease forwards;
}

@keyframes drawShield {
  to {
    stroke-dashoffset: 0;
  }
}

.shield-scan {
  opacity: 0;
  animation: scanMove 3s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes scanMove {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(50px);
    opacity: 0.5;
  }
}

.shield-dot {
  animation: dotPulse 2s ease-in-out infinite;
}

.shield-dot:nth-child(2) {
  animation-delay: 0.5s;
}
.shield-dot:nth-child(3) {
  animation-delay: 1s;
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

/* Radar Animation */
.hero-radar {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(42, 125, 225, 0.2);
  overflow: hidden;
  opacity: 0.4;
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-green), transparent);
  transform-origin: left center;
  animation: radarSweep 4s linear infinite;
}

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

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(42, 125, 225, 0.1);
}

.ring-1 {
  width: 60px;
  height: 60px;
}
.ring-2 {
  width: 100px;
  height: 100px;
  animation: ringPulse 3s ease-in-out infinite;
}
.ring-3 {
  width: 140px;
  height: 140px;
  animation: ringPulse 3s ease-in-out infinite 0.5s;
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

.radar-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: dotBlink 1.5s ease-in-out infinite;
}

.dot-1 {
  top: 30%;
  left: 60%;
  animation-delay: 0s;
}
.dot-2 {
  top: 60%;
  left: 30%;
  animation-delay: 0.5s;
}
.dot-3 {
  top: 70%;
  left: 70%;
  animation-delay: 1s;
}

@keyframes dotBlink {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Problem Section */
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.problem-stat {
  text-align: center;
  padding: 30px;
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.1);
  border-radius: 16px;
}

.problem-stat-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #ff5f57;
  margin-bottom: 10px;
}

.problem-stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.1);
  border-radius: 16px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: rgba(42, 125, 225, 0.3);
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(42, 125, 225, 0.1);
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(42, 125, 225, 0.2),
    rgba(0, 229, 176, 0.1)
  );
  border-radius: 50%;
  color: var(--accent-blue);
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

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

/* Page Hero */
.page-hero {
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(42, 125, 225, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.page-hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 125, 225, 0.1);
  border-radius: 20px;
  color: var(--accent-blue);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 15px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: linear-gradient(
    135deg,
    rgba(15, 30, 55, 0.6) 0%,
    rgba(5, 15, 30, 0.8) 100%
  );
  border: 1px solid rgba(42, 125, 225, 0.15);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  border-color: rgba(42, 125, 225, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(42, 125, 225, 0.15);
}

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

.news-card-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.news-card-date svg {
  width: 16px;
  height: 16px;
  color: var(--accent-blue);
}

.news-card-badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-card-badge.green {
  background: rgba(0, 229, 176, 0.15);
  color: #00e5b0;
  border: 1px solid rgba(0, 229, 176, 0.2);
}

.news-card-badge.blue {
  background: rgba(42, 125, 225, 0.15);
  color: #5b9ff0;
  border: 1px solid rgba(42, 125, 225, 0.2);
}

.news-card-badge.purple {
  background: rgba(147, 51, 234, 0.15);
  color: #a78bfa;
  border: 1px solid rgba(147, 51, 234, 0.2);
}

.news-card-badge.orange {
  background: rgba(255, 149, 0, 0.15);
  color: #ffb74d;
  border: 1px solid rgba(255, 149, 0, 0.2);
}

.news-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  line-height: 1.5;
}

.news-card-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.news-card-footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.news-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(42, 125, 225, 0.1);
  border: 1px solid rgba(42, 125, 225, 0.2);
  border-radius: 12px;
  color: var(--accent-blue);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-card-btn:hover {
  background: rgba(42, 125, 225, 0.2);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

.news-card-btn.primary {
  background: linear-gradient(135deg, var(--accent-blue), #5b9ff0);
  color: #fff;
  border: none;
  box-shadow: 0 5px 15px rgba(42, 125, 225, 0.3);
}

.news-card-btn.primary:hover {
  background: linear-gradient(135deg, #5b9ff0, var(--accent-blue));
  box-shadow: 0 8px 25px rgba(42, 125, 225, 0.4);
}

.news-card-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.news-card-btn:hover svg {
  transform: translateX(4px);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 50px 0;
  border-top: 1px solid rgba(42, 125, 225, 0.1);
  border-bottom: 1px solid rgba(42, 125, 225, 0.1);
}

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

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Content Section */
.content-section {
  padding: 80px 0;
}

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

.content-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.content-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.content-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.2);
  border-radius: 16px;
  padding: 40px;
}

.content-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.value-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 125, 225, 0.1);
  border-radius: 10px;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.value-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.value-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ Styles */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(42, 125, 225, 0.1);
}

.faq-cat-btn {
  padding: 8px 16px;
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.2);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: white;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.1);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

.faq-question:hover {
  background: rgba(42, 125, 225, 0.05);
}

.faq-question .tag {
  font-size: 0.7rem;
  padding: 4px 8px;
  background: rgba(42, 125, 225, 0.1);
  color: var(--accent-blue);
  border-radius: 4px;
  margin-right: 15px;
}

.faq-arrow {
  color: var(--text-muted);
  transition: var(--transition);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 20px 20px;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid rgba(42, 125, 225, 0.1);
  padding-top: 15px;
}

/* Privacy Page */
.privacy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 20px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(42, 125, 225, 0.1);
}

.privacy-nav a {
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border: 1px solid rgba(42, 125, 225, 0.2);
  border-radius: 50px;
  transition: var(--transition);
}

.privacy-nav a:hover {
  border-color: var(--accent-blue);
  color: var(--text-primary);
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 50px;
}

.privacy-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.privacy-section p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.privacy-section ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.privacy-section li {
  color: var(--text-muted);
  margin-bottom: 8px;
  list-style: disc;
}

.privacy-section strong {
  color: var(--text-primary);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  border-color: rgba(42, 125, 225, 0.3);
  transform: translateY(-5px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(42, 125, 225, 0.2),
    rgba(0, 229, 176, 0.1)
  );
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-blue);
}

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.team-card .position {
  color: var(--accent-blue);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.team-card .desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 125, 225, 0.1);
  border-radius: 8px;
  color: var(--accent-blue);
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--accent-blue);
  color: white;
}

/* Partners Grid */
.partners-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.partner-type {
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.1);
  border-radius: 16px;
  padding: 30px;
  transition: var(--transition);
}

.partner-type:hover {
  border-color: rgba(42, 125, 225, 0.3);
}

.partner-type-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 125, 225, 0.1);
  border-radius: 12px;
  color: var(--accent-blue);
  margin-bottom: 20px;
}

.partner-type h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.partner-type p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.partner-type ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.partner-type li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.partner-type li::before {
  content: "✓";
  color: var(--accent-green);
}

.partners-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.partner-logo {
  background: var(--bg-secondary);
  border: 1px solid rgba(42, 125, 225, 0.1);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
}

.partner-logo .letter {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 125, 225, 0.1);
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-blue);
}

.partner-logo h4 {
  font-size: 0.95rem;
}

.partner-logo span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero title animation */
.hero-title {
  animation: titleFadeIn 1s ease forwards;
  opacity: 0;
}

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

.hero-badge {
  animation: badgeSlideIn 0.8s ease forwards 0.3s;
  opacity: 0;
}

@keyframes badgeSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-subtitle {
  animation: fadeInUp 0.8s ease forwards 0.6s;
  opacity: 0;
}

.hero-buttons {
  animation: fadeInUp 0.8s ease forwards 0.9s;
  opacity: 0;
}

.hero-trust {
  animation: fadeInUp 0.8s ease forwards 1.2s;
  opacity: 0;
}

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

/* ============================================
   STEPS SECTION (HOW IT WORKS)
   ============================================ */
.steps-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.steps-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 40%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 176, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: linear-gradient(
    135deg,
    rgba(11, 26, 58, 0.7) 0%,
    rgba(2, 8, 23, 0.85) 100%
  );
  border: 1px solid rgba(0, 229, 176, 0.15);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  overflow: visible;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00e5b0, transparent);
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card:hover {
  border-color: rgba(0, 229, 176, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 229, 176, 0.15);
}

.step-number-wrapper {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00e5b0 0%, #00bfa5 100%);
  border-radius: 50%;
  font-family: var(--font-heading), sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0a0f1a;
  box-shadow: 0 5px 20px rgba(0, 229, 176, 0.4);
  border: 3px solid var(--bg-secondary);
}

.step-card:hover .step-number {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(0, 229, 176, 0.6);
}

.step-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 25px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 176, 0.15) 0%,
    rgba(0, 229, 176, 0.05) 100%
  );
  border-radius: 20px;
  color: #00e5b0;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 229, 176, 0.1);
}

.step-card:hover .step-icon-wrapper {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 176, 0.25) 0%,
    rgba(0, 229, 176, 0.1) 100%
  );
  transform: scale(1.08);
  box-shadow: 0 10px 40px rgba(0, 229, 176, 0.25);
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 700;
}

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

.step-connector {
  position: absolute;
  top: 50%;
  right: -15px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 229, 176, 0.3), transparent);
  transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .step-connector {
    display: none;
  }
}

/* ============================================
   ADVANTAGES SECTION
   ============================================ */
.advantages-section {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.advantages-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -15%;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(42, 125, 225, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

.advantage-card {
  background: linear-gradient(
    135deg,
    rgba(11, 26, 58, 0.6) 0%,
    rgba(2, 8, 23, 0.8) 100%
  );
  border: 1px solid rgba(42, 125, 225, 0.15);
  border-radius: 24px;
  padding: 35px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.advantage-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-blue),
    transparent
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.advantage-card:hover::after {
  transform: scaleX(1);
}

.advantage-card:hover {
  border-color: rgba(42, 125, 225, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(42, 125, 225, 0.15);
}

.advantage-icon-wrapper {
  width: 75px;
  height: 75px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #fff;
  transition: all 0.4s ease;
  position: relative;
}

.advantage-icon-wrapper.blue {
  background: linear-gradient(
    135deg,
    rgba(42, 125, 225, 0.2) 0%,
    rgba(42, 125, 225, 0.08) 100%
  );
  border: 1px solid rgba(42, 125, 225, 0.15);
}

.advantage-icon-wrapper.green {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 176, 0.2) 0%,
    rgba(0, 229, 176, 0.08) 100%
  );
  border: 1px solid rgba(0, 229, 176, 0.15);
}

.advantage-card:hover .advantage-icon-wrapper {
  transform: scale(1.08);
}

.advantage-icon-wrapper.blue:hover {
  background: linear-gradient(
    135deg,
    rgba(42, 125, 225, 0.3) 0%,
    rgba(42, 125, 225, 0.15) 100%
  );
  box-shadow: 0 10px 40px rgba(42, 125, 225, 0.3);
}

.advantage-icon-wrapper.green:hover {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 176, 0.3) 0%,
    rgba(0, 229, 176, 0.15) 100%
  );
  box-shadow: 0 10px 40px rgba(0, 229, 176, 0.3);
}

.advantage-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 700;
}

.advantage-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 25px;
  min-height: 80px;
}

.advantage-stat {
  padding-top: 20px;
  border-top: 1px solid rgba(42, 125, 225, 0.1);
}

.advantage-stat-value {
  font-family: var(--font-heading), sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.1;
}

.advantage-stat-value.blue {
  background: linear-gradient(135deg, #2a7de1, #5b9ff0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.advantage-stat-value.green {
  background: linear-gradient(135deg, #00e5b0, #00ffc3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.advantage-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-layout {
    grid-template-columns: 1fr;
  }

  .demo-screen {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }

  .nav {
    gap: 4px;
  }

  .nav-dropdown-btn {
    padding: 8px 10px;
    font-size: 0.85rem;
  }

  .nav-dropdown-content {
    min-width: 200px;
  }
}

@media (max-width: 992px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header .btn {
    display: none;
  }

  .header {
    padding: 14px 0;
  }

  .header.scrolled {
    padding: 10px 0;
  }

  main {
    padding-top: 60px !important;
  }

  .page-hero {
    padding: 80px 0 30px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .logo-text {
    font-size: 1.2rem;
  }
}

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

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

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }

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

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* SVG Icons fallback */
.icon {
  width: 24px;
  height: 24px;
}

.icon-sm {
  width: 20px;
  height: 20px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

/* ============================================
   PROMO CAROUSEL
   ============================================ */
.promo-carousel-section {
  padding: 40px 0;
  background: var(--bg-secondary);
  position: relative;
}

.promo-carousel-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
}

.promo-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.promo-carousel-slide {
  min-width: 100%;
}

.promo-banner-card {
  background: linear-gradient(135deg, #0b1a3a 0%, #020817 100%);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  color: #fff;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 640px) {
  .promo-banner-card {
    padding: 1.5rem;
    min-height: auto;
  }

  .promo-banner-content h3 {
    font-size: 1.4rem;
  }

  .promo-banner-content p {
    font-size: 0.85rem;
    max-width: 100%;
  }

  .promo-code {
    font-size: 1rem;
    word-break: break-word;
  }
}

.promo-banner-content h3 {
  font-family: var(--font-heading), sans-serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--accent-blue);
  line-height: 1.3;
  word-wrap: break-word;
}

.promo-code {
  font-family: var(--font-mono), monospace;
  background: rgba(59, 130, 246, 0.1);
  padding: 0.2rem 0.8rem;
  border-radius: 6px;
  font-size: 1.2rem;
  color: var(--accent-green);
  letter-spacing: 0.05em;
  display: inline-block;
  max-width: 100%;
  word-break: break-all;
}

.promo-banner-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.promo-banner-content > div:not(.promo-discount-list):not(.promo-code) {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.promo-discount-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.promo-discount-item {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
}

.promo-discount-item .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.promo-discount-item .value {
  font-family: var(--font-heading), sans-serif;
  font-size: 1.8rem;
  color: var(--accent-blue);
  line-height: 1.2;
}

.promo-banner-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 12px;
  background: var(--accent-blue);
  color: #0a0f1a !important;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 200ms ease;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  border: none;
  cursor: pointer;
}

.promo-banner-btn:hover {
  background: #fff;
  color: #0a0f1a;
  transform: translateY(-2px);
  box-shadow:
    0 0 30px rgba(59, 130, 246, 0.5),
    0 8px 24px rgba(59, 130, 246, 0.2);
}

.promo-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(10, 15, 26, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--accent-blue);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(10px);
  transition:
    background 0.3s,
    box-shadow 0.3s;
}

.promo-carousel-btn:hover {
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.promo-carousel-btn.prev {
  left: 1rem;
}
.promo-carousel-btn.next {
  right: 1rem;
}

@media (max-width: 768px) {
  .promo-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .promo-carousel-btn.prev {
    left: 0.5rem;
  }
  .promo-carousel-btn.next {
    right: 0.5rem;
  }
}

.promo-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

.promo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.promo-dot.active {
  background: var(--accent-blue);
  box-shadow: 0 0 8px var(--accent-blue);
}

/* ============================================
   NEWS CAROUSEL
   ============================================ */
.news-carousel-section {
  padding: 80px 0;
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

.particles-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(42, 125, 225, 0.3);
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) translateX(10px);
    opacity: 0.6;
  }
}

.news-carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
}

.news-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.news-carousel-slide {
  min-width: 100%;
}

.news-card {
  background: linear-gradient(
    135deg,
    rgba(15, 30, 55, 0.85) 0%,
    rgba(5, 15, 30, 0.9) 100%
  );
  border: 1px solid rgba(0, 229, 176, 0.2);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  color: #fff;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00e5b0, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.news-card:hover::before {
  transform: scaleX(1);
}

.news-card:hover {
  border-color: rgba(0, 229, 176, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 229, 176, 0.15);
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00e5b0, transparent);
}

@media (max-width: 768px) {
  .news-card {
    padding: 2rem 1.5rem;
    min-height: auto;
  }
}

.news-card-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 229, 176, 0.1);
  border: 1px solid rgba(0, 229, 176, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #00e5b0;
  margin-bottom: 1.5rem;
}

.news-card-date svg {
  width: 16px;
  height: 16px;
}

.news-card-title {
  font-family: var(--font-heading), sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .news-card-title {
    font-size: 1.4rem;
  }
}

.news-card-excerpt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.news-card-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.news-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 200ms ease;
  border: none;
  cursor: pointer;
}

.news-card-btn.primary {
  background: linear-gradient(135deg, #00e5b0, #00bfa5);
  color: #0a0f1a;
  box-shadow: 0 0 20px rgba(0, 229, 176, 0.3);
}

.news-card-btn.primary:hover {
  background: linear-gradient(135deg, #00ffc3, #00e5b0);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 229, 176, 0.5);
}

.news-card-btn.secondary {
  background: rgba(0, 229, 176, 0.1);
  color: #00e5b0;
  border: 1px solid rgba(0, 229, 176, 0.2);
}

.news-card-btn.secondary:hover {
  background: rgba(0, 229, 176, 0.15);
  border-color: rgba(0, 229, 176, 0.3);
  transform: translateY(-2px);
}

.news-card-btn.secondary:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.news-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 15, 26, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--accent-blue);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  opacity: 0.8;
}

.news-carousel-btn:hover {
  background: rgba(59, 130, 246, 0.15);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

.news-carousel-btn.prev {
  left: 20px;
}
.news-carousel-btn.next {
  right: 20px;
}

@media (max-width: 768px) {
  .news-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .news-carousel-btn.prev {
    left: 10px;
  }
  .news-carousel-btn.next {
    right: 10px;
  }
}

.news-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.news-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.news-carousel-dot.active {
  background: var(--accent-blue);
  box-shadow: 0 0 10px var(--accent-blue);
  transform: scale(1.2);
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
}

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

.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.video-controls-info {
  text-align: center;
  padding: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================
   PROBLEM SECTION REDESIGN
   ============================================ */
.problem-section {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.problem-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 95, 87, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

.problem-card {
  background: linear-gradient(
    135deg,
    rgba(11, 26, 58, 0.6) 0%,
    rgba(2, 8, 23, 0.8) 100%
  );
  border: 1px solid rgba(255, 95, 87, 0.15);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 95, 87, 0.5),
    transparent
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.problem-card:hover::before {
  transform: scaleX(1);
}

.problem-card:hover {
  border-color: rgba(255, 95, 87, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 95, 87, 0.15);
}

.problem-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 95, 87, 0.15) 0%,
    rgba(255, 95, 87, 0.05) 100%
  );
  border-radius: 16px;
  color: #ff5f57;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 95, 87, 0.1);
}

.problem-card:hover .problem-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 95, 87, 0.25) 0%,
    rgba(255, 95, 87, 0.1) 100%
  );
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(255, 95, 87, 0.2);
}

.problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 600;
}

.problem-stat {
  font-family: var(--font-heading), sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff5f57, #ff8a80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  line-height: 1.1;
}

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

.problem-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .problem-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .problem-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.problem-content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 95, 87, 0.2),
    transparent
  );
}

@media (max-width: 768px) {
  .problem-content::before {
    display: none;
  }
}

.problem-text h3,
.problem-solution h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--text-primary);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.problem-text h3::after,
.problem-solution h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff5f57, transparent);
  border-radius: 2px;
}

.problem-text p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1rem;
}

.problem-solution ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.problem-solution li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-secondary);
  font-size: 1rem;
  padding: 12px 16px;
  background: rgba(255, 95, 87, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 95, 87, 0.1);
  transition: all 0.3s ease;
}

.problem-solution li:hover {
  background: rgba(255, 95, 87, 0.1);
  border-color: rgba(255, 95, 87, 0.25);
  transform: translateX(5px);
}

.problem-solution svg {
  width: 22px;
  height: 22px;
  color: #ff5f57;
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(255, 95, 87, 0.3));
}

/* ============================================
   FOOTER ECOSYSTEM
   ============================================ */
.footer-ecosystem {
  margin-bottom: 30px;
  padding: 18px 24px;
  background: linear-gradient(
    135deg,
    rgba(42, 125, 225, 0.08) 0%,
    rgba(0, 229, 176, 0.05) 100%
  );
  border: 1px solid rgba(42, 125, 225, 0.15);
  border-radius: 16px;
  display: inline-block;
}

.footer-ecosystem a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-ecosystem a:hover {
  color: var(--accent-blue);
}

.footer-ecosystem a:hover img {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(42, 125, 225, 0.3);
}

.footer-ecosystem img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: flex-end;
  margin-top: 0;
}

@media (max-width: 768px) {
  .footer-legal {
    flex-direction: column;
    gap: 12px;
    justify-content: center;
  }
}

.footer-legal-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-legal-link:hover {
  color: var(--accent-blue);
}

.footer-legal-link:hover .dot {
  background: var(--accent-blue);
  box-shadow: 0 0 8px var(--accent-blue);
}

.footer-legal .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* Cookie Notice */
.cookie-notice {
  margin-top: 40px;
  padding: 25px 30px;
  background: linear-gradient(
    135deg,
    rgba(42, 125, 225, 0.08) 0%,
    rgba(0, 229, 176, 0.05) 100%
  );
  border: 1px solid rgba(42, 125, 225, 0.15);
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 768px) {
  .cookie-notice {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

.cookie-notice p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.cookie-notice button {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--accent-blue), #5b9ff0);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(42, 125, 225, 0.3);
}

.cookie-notice button:hover {
  background: linear-gradient(135deg, #5b9ff0, var(--accent-blue));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(42, 125, 225, 0.4);
}
