/** @format */

:root {
  --primary: #667eea;
  --secondary: #764ba2;
  --accent: #ff6b6b;
  --light-bg: #f8f9fa;
  --dark: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Questrial", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="pattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M30 0L60 30L30 60L0 30Z" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="1200" height="600" fill="url(%23pattern)"/></svg>');
  opacity: 0.1;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: slideInDown 0.8s ease-out;
}

.hero .subtitle {
  font-size: 1.5rem;
  margin-bottom: 15px;
  opacity: 0.95;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  margin: 20px 0;
  font-size: 14px;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.8s ease-out;
}

.rating {
  margin: 30px 0;
  font-size: 18px;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.star {
  color: #ffd700;
  font-size: 20px;
}

.pricing-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 15px;
  display: block;
  margin-top: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  animation: slideInUp 0.8s ease-out 0.6s both;
  max-width: 500px;
  width: 100%;
  margin: 10px auto;
}

.pricing-section h3 {
  font-size: 16px;
  color: #999;
  margin-bottom: 10px;
}

.price-display {
  font-size: 24px;
  color: var(--dark);
}

.price-display .old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
  font-size: 18px;
}

.price-display .new-price {
  color: var(--accent);
  font-weight: bold;
  font-size: 42px;
}

.cta-button {
  background: var(--accent);
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  margin: 20px 10px;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.cta-button:hover::before {
  left: 100%;
}

/* Modules Section */
.modules-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--light-bg) 0%, white 100%);
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  color: var(--dark);
  position: relative;
  font-weight: 900;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.module-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.module-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.module-card:hover::before {
  transform: scaleX(1);
}

.module-card .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 35px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.module-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 18px;
  font-weight: 700;
}

.module-card .value {
  color: var(--accent);
  font-weight: bold;
  margin-top: 15px;
  font-size: 14px;
}

/* Modern Stepper */
.stepper-section {
  padding: 100px 0;
  background: white;
}

.stepper-container {
  max-width: 900px;
  margin: 0 auto;
}

.vertical-stepper {
  position: relative;
  padding: 20px 0;
}

.vertical-stepper::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.stepper-item {
  display: flex;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  position: relative;
}

.stepper-item:nth-child(1) {
  animation-delay: 0.1s;
}
.stepper-item:nth-child(2) {
  animation-delay: 0.2s;
}
.stepper-item:nth-child(3) {
  animation-delay: 0.3s;
}
.stepper-item:nth-child(4) {
  animation-delay: 0.4s;
}
.stepper-item:nth-child(5) {
  animation-delay: 0.5s;
}

.stepper-number {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.stepper-item:hover .stepper-number {
  transform: scale(1.1);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.6);
}

.stepper-content {
  margin-left: 40px;
  background: var(--light-bg);
  padding: 25px 30px;
  border-radius: 15px;
  flex: 1;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.stepper-item:hover .stepper-content {
  background: white;
  border-left-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stepper-content h3 {
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 20px;
  font-weight: 700;
}

.stepper-content p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Bonus Section */
.bonus-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.bonus-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(102, 126, 234, 0.5);
}

.bonus-card:hover::before {
  opacity: 1;
}

.bonus-number {
  font-size: 50px;
  font-weight: bold;
  opacity: 0.25;
  margin-bottom: 15px;
}

.bonus-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

.bonus-card p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.95;
}

/* Guarantee Section */
.guarantee-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guarantee-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -200px;
  right: -200px;
}

.guarantee-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
}

.guarantee-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.guarantee-icon {
  font-size: 80px;
  margin-bottom: 20px;
  display: inline-block;
  animation: bounce 2s infinite;
  position: relative;
  z-index: 1;
}

.guarantee-content {
  background: rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 15px;
  margin: 30px auto;
  max-width: 600px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

/* Module Details */
.module-details {
  padding: 100px 0;
  background: white;
}

.module-detail-card {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.module-detail-card:nth-child(odd) {
  animation-delay: 0.1s;
}

.module-detail-card:nth-child(even) {
  animation-delay: 0.2s;
}

.module-detail-card.alt {
  direction: rtl;
}

.module-detail-card.alt > * {
  direction: ltr;
}

.module-detail-card h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--dark);
  font-weight: 900;
}

.module-detail-card .module-image {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  height: 400px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
  overflow: hidden;
  position: relative;
}

.module-detail-card .module-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="20" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></svg>');
  background-size: 30px 30px;
}

.module-detail-card ul {
  list-style: none;
  margin-top: 20px;
}

.module-detail-card li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

.module-detail-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 20px;
}

/* Summary & Pricing */
.summary-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--light-bg) 0%, white 100%);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  align-items: center;
  transition: all 0.3s;
}

.summary-item:hover {
  background: var(--light-bg);
  padding: 15px 15px;
  border-radius: 8px;
}

.summary-item .label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.summary-item .price {
  color: var(--accent);
  font-weight: bold;
  font-size: 16px;
}

.summary-total {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(118, 75, 162, 0.05) 100%
  );
  padding: 40px;
  border-radius: 15px;
  margin-top: 40px;
  border: 2px solid var(--light-bg);
}

.total-item {
  text-align: center;
  padding: 20px;
}

.total-item .label {
  color: #666;
  margin-bottom: 10px;
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.total-item .amount {
  font-size: 36px;
  font-weight: 900;
}

.total-item .amount.original {
  color: #999;
  text-decoration: line-through;
}

.total-item .amount.discount {
  color: var(--accent);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.3s;
  user-select: none;
}

.faq-question:hover {
  background: var(--light-bg);
}

.faq-question .icon {
  font-size: 18px;
  transition: transform 0.3s;
  color: var(--primary);
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
  color: white;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #555;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
  background: var(--light-bg);
}

/* Footer */
/* Trust Section */
.trust-section {
  padding: 100px 0;
  background: linear-gradient(135deg, white 0%, var(--light-bg) 100%);
}

.trust-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trust-content h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--dark);
  line-height: 1.2;
}

.trust-highlight {
  color: var(--accent);
  font-weight: bold;
}

.trust-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.trust-image {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(102, 126, 234, 0.3);
  overflow: hidden;
  position: relative;
}

.trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.trust-stat {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.trust-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.trust-stat-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

.trust-stat-label {
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

/* Sticky Strip */
.sticky-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 12px 0;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  animation: slideInDown 0.5s ease-out;
}

.sticky-strip-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.sticky-strip-text {
  font-size: 16px;
  font-weight: 600;
  flex: 1;
}

.sticky-strip-text .offer {
  color: #fff8dc;
  font-weight: 900;
}

.sticky-strip-cta {
  background: var(--accent);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.sticky-strip-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.sticky-strip-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  margin-left: 20px;
  transition: all 0.3s;
}

.sticky-strip-close:hover {
  transform: rotate(90deg);
}

/* Sticky WhatsApp Icon */
.sticky-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #20ba5d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  z-index: 998;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: slideInUp 0.6s ease-out 0.3s both;
}

.sticky-whatsapp:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.sticky-whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: white;
  color: var(--dark);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sticky-whatsapp:hover .sticky-whatsapp-tooltip {
  opacity: 1;
}

/* Adjust body margin for sticky strip */
body.with-stick {
  padding-top: 56px;
}

footer {
  display: none;
}

/* Animations */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .module-detail-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .module-detail-card.alt {
    direction: ltr;
  }

  .summary-grid {
    grid-template-columns: 1fr;
  }

  .summary-total {
    grid-template-columns: 1fr;
  }

  .stepper-item {
    margin-bottom: 30px;
  }

  .stepper-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 24px;
  }

  .stepper-content {
    margin-left: 20px;
  }

  .vertical-stepper::before {
    left: 25px;
  }
}
