/* 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 */
.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;
}

.promo-badge {
  background: #ffff00;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 12px 40px;
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 5px;
  text-transform: uppercase;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 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 */
.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 */
.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);
}

.cta-button:active {
  transform: translateY(-1px);
}

.pulse {
  animation: pulse 2s infinite;
}

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

/* Updated Legal Section with exact colors from screenshots - dark background with yellow highlights */
/* Legal Section */
.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;
  text-align: center;
}

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

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

.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;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.law-text {
  width: 100%;
}

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

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

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

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

.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;
  align-items: flex-start;
}

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

.causes-list span {
  font-size: 16px;
  line-height: 1.6;
}

/* Testimonials Section */
.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-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 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.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;
}

.testimonial-author span {
  font-weight: 600;
  font-size: 14px;
}

/* Social Proof Section */
.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);
  transition: transform 0.3s ease;
}

.screenshots-grid img:hover {
  transform: scale(1.05);
}

/* Fixed media section to match original design with white background and colored logos */
/* Updated Media Section with exact colors from screenshots - white background, larger on mobile, better spacing */
/* Media Section */
.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;
  line-height: 1.3;
}

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

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

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

.media-column img {
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  filter: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.media-column img:hover {
  transform: scale(1.08);
}

/* Bonus Section */
.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;
  text-transform: uppercase;
}

.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;
  transition: transform 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-10px);
}

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

.bonus-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

/* Rating Section */
.rating-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rating-section::before,
.rating-section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  background: inherit;
}

.rating-section::before {
  top: -50px;
  transform: skewY(-2deg);
}

.rating-section::after {
  bottom: -50px;
  transform: skewY(-2deg);
}

.stars {
  max-width: 300px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.rating-section h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* Pricing Section */
.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;
}

.pricing-box h2 strike {
  color: #999;
}

.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;
}

.patent-seal {
  max-width: 250px;
  margin: 30px auto;
}

/* Guarantee Section */
.guarantee-section {
  padding: 60px 20px;
  background: #fff;
}

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

.guarantee-image img {
  max-width: 300px;
  margin: 0 auto;
}

.guarantee-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guarantee-info img {
  max-width: 100%;
}

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

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

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s ease-out forwards;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-down {
  opacity: 0;
  transform: translateY(-50px);
  animation: fadeInDown 1s ease-out forwards;
}

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

/* Improved responsive design for perfect mobile experience */
/* Enhanced mobile responsiveness for legal and media sections */
/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 36px;
  }

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

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

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .media-column img {
    max-width: 240px;
  }

  .legal-left {
    padding: 40px 30px;
  }

  .legal-left h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero-section {
    padding: 30px 20px 50px;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 25px;
    line-height: 1.4;
  }

  .promo-badge {
    font-size: 16px;
    padding: 10px 30px;
  }

  .column h2 {
    font-size: 26px;
    margin-bottom: 15px;
    text-align: center;
  }

  .column p {
    font-size: 15px;
    margin-bottom: 12px;
    text-align: left;
  }

  .phone-image {
    max-width: 300px;
  }

  .cta-button {
    font-size: 18px;
    padding: 18px 30px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

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

  .media-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .media-column {
    gap: 35px;
  }

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

  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

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

  .law-box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .legal-left,
  .legal-right {
    padding: 30px 20px;
  }

  .testimonials-section h2,
  .media-section h2,
  .bonus-section h2 {
    font-size: 30px;
    line-height: 1.3;
    padding: 0 10px;
  }

  .subtitle {
    font-size: 17px;
    padding: 0 15px;
  }

  .info-section,
  .legal-section,
  .testimonials-section,
  .social-proof-section,
  .media-section,
  .bonus-section,
  .rating-section,
  .pricing-section,
  .guarantee-section {
    padding: 50px 20px;
  }

  /* Larger media section on mobile as requested */
  .media-section {
    padding: 70px 20px;
  }

  .media-section h2 {
    font-size: 36px;
    line-height: 1.3;
    padding: 0 15px;
    margin-bottom: 25px;
  }

  .subtitle {
    font-size: 19px;
    padding: 0 20px;
    margin-bottom: 50px;
    line-height: 1.7;
  }

  .media-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .media-column {
    gap: 35px;
  }

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

  /* Better centered legal section on mobile */
  .legal-left {
    padding: 40px 25px;
  }

  .legal-left h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 25px;
  }

  .legal-left > p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .law-box {
    padding: 25px 20px;
    gap: 20px;
    margin: 30px 0;
  }

  .law-image img {
    max-width: 180px;
  }

  .law-text p {
    font-size: 15px;
    line-height: 1.7;
  }

  .law-text strong {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-section {
    padding: 25px 15px 40px;
  }

  .hero-title {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .promo-badge {
    font-size: 14px;
    padding: 10px 25px;
  }

  .column h2 {
    font-size: 22px;
    text-align: center;
  }

  .column p {
    font-size: 14px;
  }

  .phone-image {
    max-width: 250px;
  }

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

  .testimonials-section h2,
  .media-section h2,
  .bonus-section h2 {
    font-size: 26px;
    padding: 0 10px;
  }

  .subtitle {
    font-size: 16px;
    padding: 0 10px;
  }

  .rating-section h4 {
    font-size: 20px;
    padding: 0 15px;
  }

  .pricing-box {
    padding: 30px 20px;
  }

  .pricing-box h2 {
    font-size: 22px;
  }

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

  .currency {
    font-size: 26px;
  }

  .testimonial-card {
    padding: 20px 15px;
  }

  .testimonial-content {
    font-size: 15px;
  }

  .bonus-card {
    padding: 25px 15px;
  }

  .bonus-card h4 {
    font-size: 18px;
  }

  .causes-list li {
    gap: 12px;
  }

  .causes-list span {
    font-size: 15px;
  }

  .media-column img {
    max-width: 150px;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .info-section,
  .legal-section,
  .testimonials-section,
  .social-proof-section,
  .media-section,
  .bonus-section,
  .rating-section,
  .pricing-section,
  .guarantee-section {
    padding: 40px 15px;
  }

  .secure-badge {
    max-width: 300px;
  }

  .payment-methods {
    max-width: 100%;
  }

  /* Even larger and more visible media section on small mobile screens */
  .media-section {
    padding: 60px 15px;
  }

  .media-section h2 {
    font-size: 32px;
    padding: 0 10px;
    margin-bottom: 20px;
  }

  .subtitle {
    font-size: 18px;
    padding: 0 15px;
    margin-bottom: 45px;
  }

  .media-grid {
    gap: 45px;
  }

  .media-column {
    gap: 30px;
  }

  .media-column img {
    max-width: 260px;
  }

  /* Optimized legal section for small mobile screens */
  .legal-left {
    padding: 35px 20px;
  }

  .legal-left h2 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .legal-left > p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .law-box {
    padding: 20px 15px;
    gap: 18px;
    margin: 25px 0;
  }

  .law-image img {
    max-width: 160px;
  }

  .law-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .law-text strong {
    font-size: 15px;
  }

  .source-link {
    font-size: 13px;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
body.loading {
  overflow: hidden;
}

/* Intersection Observer Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced touch-friendly styles for mobile devices */
/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .cta-button {
    min-height: 56px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 0, 0, 0.2);
  }

  a,
  button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  }

  .video-container,
  .video-item {
    -webkit-tap-highlight-color: transparent;
  }
}
