/* ====================================
   Root Variables and Base Styles
   ==================================== */
/* Root Variables */
:root {
  --primary-color: #81b71a;
  --secondary-color: #4ebbf7;
  --tertiary-color: #6d6d6d;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --neo-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1),
    -10px -10px 20px rgba(255, 255, 255, 0.5);
  --primary-gradient: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

/* Base Styles */
body {
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: var(--tertiary-color);
}

.container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  overflow: hidden;
}

/* Buy Now Guarantee Template */
.buy-now-guarantee {
  padding: clamp(40px, 5vw, 100px) clamp(15px, 3vw, 40px);
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
}

.buy-now-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header Section */
.header-section {
  text-align: center;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: clamp(30px, 4vw, 40px);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.badge-icon {
  font-size: 1.2rem;
}

.program-title {
  margin: 25px 0;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  line-height: 1.2;
}

.highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}

.price-display {
  margin: 25px auto 0;
  padding: 20px;
  background: rgba(129, 183, 26, 0.1);
  border-radius: 15px;
  max-width: 300px;
}

.price-comparison {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.original {
  text-decoration: line-through;
  opacity: 0.7;
}

.savings {
  color: var(--primary-color);
  font-weight: 700;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Order Section */
.order-section {
  background: white;
  border-radius: 30px;
  padding: clamp(30px, 4vw, 40px);
  margin-bottom: 40px;
}

.secure-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary-gradient);
  color: white;
  padding: 12px 25px;
  border-radius: 100px;
  margin: 0 auto 30px;
  width: fit-content;
}

.lock-icon {
  font-size: 1.2rem;
}

/* Trust Features */
.trust-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(129, 183, 26, 0.1);
  padding: 15px;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-3px);
}

.trust-icon {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.trust-item p {
  margin: 0;
  font-size: 0.9rem;
}

/* Product Showcase */
.product-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
  max-width: 800px;
}

.digital-product,
.physical-product {
  flex: 1;
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s ease;
  max-width: 300px;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--neo-shadow);
}

.product-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--primary-gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.product-info {
  margin-top: 15px;
  text-align: center;
}

.product-info h4 {
  color: var(--primary-color);
  margin: 0 0 5px 0;
}

.product-info p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Buy Now Button */
.buy-now-button {
  display: block;
  text-decoration: none;
  margin: 40px auto;
  max-width: 400px;
  position: relative;
}

.button-content {
  background: var(--primary-gradient);
  padding: 20px 40px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.button-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(129, 183, 26, 0.2);
}

.button-text {
  color: white;
  text-align: left;
}

.main-text {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sub-text {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
}

.button-price {
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.secure-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: white;
  padding: 5px 15px;
  border-radius: 100px;
  font-size: 12px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Access Info */
.access-info {
  margin: 40px auto;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  max-width: 900px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.info-icon {
  font-size: 24px;
  color: var(--primary-color);
}

.info-text h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--primary-color);
}

.info-text p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Guarantee Banner */
.guarantee-banner {
  display: flex;
  align-items: center;
  gap: 30px;
  background: var(--primary-gradient);
  color: white;
  padding: clamp(30px, 4vw, 40px);
  border-radius: 30px;
  margin-bottom: 40px;
  text-align: left;
}

.shield-icon {
  font-size: 3rem;
  animation: float 3s ease-in-out infinite;
}

.guarantee-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 10px 0;
}

.guarantee-text p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 0;
  opacity: 0.9;
}

/* Guarantee Details */
.guarantee-details {
  margin-top: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.guarantee-item {
  padding: 20px;
  background: rgba(129, 183, 26, 0.1);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.guarantee-item:hover {
  transform: translateY(-5px);
}

.guarantee-item .guarantee-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.guarantee-item h4 {
  color: var(--primary-color);
  margin: 0 0 10px 0;
}

.guarantee-item p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .guarantee-banner {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 768px) {
  .product-showcase {
    flex-direction: column;
  }

  .plus-sign {
    transform: rotate(90deg);
  }

  .trust-features,
  .guarantee-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .button-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .button-price {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
  }

  .digital-product,
  .physical-product {
    max-width: 100%;
  }

  .secure-badge {
    position: relative;
    top: 10px;
    right: 0;
    justify-content: center;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .buy-now-guarantee {
    padding: 20px 10px;
  }

  .guarantee-banner,
  .header-section,
  .order-section {
    padding: 20px;
  }
}
