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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9fafb;
}
.body-link {
  text-decoration: none;
  color: black;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility Classes */
.text-red {
  color: #dc2626;
}

.pulse {
  animation: pulse 2s infinite;
}

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

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #fecaca;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: #dc2626;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
}

.nav-desktop {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #dc2626;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn-ghost {
  background: none;
  border: none;
  color: #6b7280;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: color 0.3s;
}

.btn-ghost:hover {
  color: #111827;
}

.btn-primary {
  background: #dc2626;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background: #b91c1c;
}

.btn-danger {
  background: #dc2626;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.btn-danger:hover {
  background: #b91c1c;
}

.btn-secondary {
  background: #6b7280;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.btn-secondary:hover {
  background: #4b5563;
}

.btn-cta {
  background: white;
  color: #dc2626;
  border: none;
  padding: 1.5rem 3rem;
  border-radius: 0.375rem;
  font-weight: bold;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-cta:hover {
  background: #f3f4f6;
}

.mobile-menu-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: white;
  border-bottom: 1px solid #fecaca;
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  text-decoration: none;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-link:hover {
  color: #dc2626;
}

/* Hero Section */
.hero {
  padding: 0.5rem 0;
  background: white;
  height: 100vh;
  max-width: 95%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;

  .container {
    max-width: 100%;
  }
}

.browser-alert {
  margin: 0 auto 3rem;
}

.alert-header {
  background: #dc2626;
  padding: 0.5rem;
  border-radius: 0.5rem 0.5rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.alert-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.alert-content {
  background: white;
  border: 2px solid #dc2626;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 0.5rem;
}

.alert-icon-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.alert-icon {
  background: #fef2f2;
  padding: 0.5rem;
  border-radius: 50%;
  color: #dc2626;
}

.alert-headline h1 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #111827;
  line-height: 1.2;
}

.system-info {
  background: #f3f4f6;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
}

.protection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 1rem;
}

.protection-steps {
  background: #fefce8;
  border: 1px solid #fde047;
  padding: 1rem;
  border-radius: 0.5rem;
}

.protection-steps h3 {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #111827;
}

.step {
  background: #fde047;
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
}

.warning-text {
  font-size: 0.8rem;
  color: #374151;
  margin-top: 1rem;
}

.risk-list {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  padding: 1rem;
  border-radius: 0.5rem;
}

.risk-list h3 {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #dc2626;
}

.risk-list ul {
  list-style: none;
}

.risk-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.action-section {
  background: #000;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
}

.action-section h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Statistics */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 1rem auto;
}

.stat-card {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #dc2626;
  margin-bottom: 0.25rem;
}

.stat-label {
  color: #374151;
  font-size: 0.875rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: #f3f4f6;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.badge {
  background: #dc2626;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: white;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: #f87171;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.1);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #dc2626;
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #6b7280;
}

.warning-box {
  background: #fef2f2;
  border: 2px solid #f87171;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.warning-box h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #dc2626;
  margin-bottom: 1.5rem;
}

.warning-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.warning-number {
  font-size: 2rem;
  font-weight: bold;
  color: #dc2626;
  margin-bottom: 0.5rem;
}

.warning-label {
  color: #374151;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #f87171;
}

.testimonial-card blockquote {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}

.author-name {
  font-weight: 600;
  color: #111827;
}

.author-title {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Threats Section */
.threats {
  padding: 5rem 0;
  background: #fef2f2;
}

.threats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.threat-card {
  background: white;
  border: 2px solid #f87171;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.threat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.threat-header i {
  color: #dc2626;
  font-size: 1.5rem;
}

.threat-header h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #111827;
}

.threat-card p {
  color: #374151;
}

/* Final CTA Section */
.final-cta {
  padding: 5rem 0;
  background: #dc2626;
  color: white;
}

.cta-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.cta-header {
  margin-bottom: 2rem;
}

.cta-header .badge {
  background: white;
  color: #dc2626;
}

.cta-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cta-header p {
  font-size: 1.25rem;
  color: #fecaca;
}

.pricing-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.price-display {
  margin-bottom: 1.5rem;
}

.current-price {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.old-price {
  font-size: 1.125rem;
  color: #fecaca;
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.discount {
  color: #fde047;
  font-weight: 600;
}

.cta-buttons {
  margin-bottom: 1.5rem;
}

.guarantees {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: #fecaca;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.guarantee i {
  color: #10b981;
}

.urgency {
  margin-top: 2rem;
}

.countdown {
  color: #fde047;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.social-proof {
  font-size: 0.875rem;
  color: #fecaca;
}

/* Footer */
.footer {
  background: #111827;
  color: white;
  padding: 4rem 0;
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin: auto;
  a {
    color: #9ca3af;
    font-size: 1rem;
    transition: color 0.3s;
  }
}

/* Responsive Design */
@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .action-buttons {
    flex-direction: row;
  }

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

  .warning-stats {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

@media (min-width: 768px) {
  .alert-icon-section {
    flex-direction: row;
    text-align: left;
  }

  .alert-headline h1 {
    text-align: left;
    font-size: 2rem;
  }

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

  .threats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (max-width: 767px) {
  .hero {
    height: auto;
    max-width: 100%;
  }

  .footer {
    padding: 2rem;
    flex-direction: column;
  }
  .features {
    padding: 2rem 0;
  }

  .stats-grid {
    margin: 0 0 2rem auto;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .nav-desktop {
    display: none;
  }

  .alert-headline h1 {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .cta-header h2 {
    font-size: 2rem;
  }

  .guarantees {
    flex-direction: column;
    gap: 1rem;
  }
}
