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

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100vw;
}

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

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

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

.hero-section {
  background: url("../A03FF4kOnXMK.online/wp-content/uploads/2025/10/114454-red-and-black-diagonal-stripes-background-vector-scaled-1.jpg")
    center / cover no-repeat;
  padding: 40px 5% 60px;
  text-align: center;
}

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

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.5;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-hero {
  margin-top: 30px;
  font-size: 22px;
  padding: 22px 50px;
  background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
  color: #000;
  box-shadow: 0 5px 20px rgba(255, 235, 59, 0.5);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.secure-badge {
  max-width: 400px;
  margin: 30px auto;
}

.info-section {
  padding: 60px 20px;
  background: #fff;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.phone-image {
  max-width: 400px;
  margin: 0 auto 30px;
}

.column h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.column p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 40px;
  border-radius: 50px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  width: 100%;
  max-width: 600px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.legal-section {
  padding: 60px 20px;
  background: #f5f5f5;
}

.legal-left {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  color: #fff;
  padding: 50px 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.legal-left h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 38px;
  line-height: 1.4;
}

.highlight-yellow {
  color: #ffff00;
  font-weight: 900;
}

.legal-left > p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.law-box {
  background: rgba(40, 40, 40, 0.6);
  padding: 30px;
  border-radius: 15px;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.law-image img {
  max-width: 200px;
  width: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

.law-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
}

.law-text strong {
  color: #ffff00;
  font-size: 18px;
}

.source-link {
  font-size: 14px;
  margin-top: 20px;
}

.source-link a {
  color: #4db8ff;
  text-decoration: underline;
}

.legal-right {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.causes-list {
  list-style: none;
  padding: 0;
}

.causes-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.causes-list svg {
  width: 20px;
  height: 20px;
  fill: #ff0000;
  flex-shrink: 0;
  margin-top: 3px;
}

.testimonials-section {
  padding: 60px 20px;
  background: #fff;
}

.testimonials-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-subtitle {
  font-size: 20px;
  color: #666;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-style: italic;
}

.highlight-method {
  color: #d32f2f;
  font-weight: 800;
}

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

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

.video-item {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-item iframe,
.video-item video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  background: #000;
}

.video-caption {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}

.testimonials-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.social-proof-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.screenshots-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.media-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.media-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #d32f2f;
  font-style: italic;
  text-transform: uppercase;
}

.subtitle {
  font-size: 20px;
  color: #333;
  margin-bottom: 60px;
  font-style: italic;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.media-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.media-column img {
  max-width: 280px;
  width: 100%;
}

.bonus-section {
  padding: 60px 20px;
  background: #f5f5f5;
}

.bonus-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.bonus-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.bonus-card img {
  max-width: 250px;
  margin: 0 auto 20px;
}

.pricing-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
}

.pricing-box {
  background: #fff;
  max-width: 500px;
  margin: 0 auto 40px;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pricing-box h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.price {
  font-size: 72px !important;
  color: #ff0000;
  margin: 20px 0 !important;
}

.currency {
  font-size: 32px;
  vertical-align: super;
}

.payment-methods {
  max-width: 400px;
  margin: 30px auto 0;
}

.guarantee-section {
  padding: 60px 20px;
  background: #fff;
}

.guarantee-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.footer {
  padding: 40px 20px;
  background: #1a1a1a;
  color: #999;
  text-align: center;
}

.footer-disclaimer {
  font-size: 14px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 20px;
}

.footer-copyright {
  font-size: 13px;
  color: #777;
}

.urgency-bar {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: #fff;
  padding: 12px 20px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  padding: 15px 20px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.fixed-cta.visible {
  transform: translateY(0);
}

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

  .two-column,
  .testimonials-grid,
  .guarantee-content {
    grid-template-columns: 1fr;
  }

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

  .media-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .cta-button {
    font-size: 16px;
    padding: 16px 25px;
  }

  .price {
    font-size: 52px !important;
  }

  .currency {
    font-size: 26px;
  }
}
