/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  background-color: #e8eaf0;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background-color: #e8eaf0;
  padding: 36px 20px 0;
  text-align: center;
}

.hero-headline {
  font-size: 26px;
  font-weight: 400;
  color: #333333;
  line-height: 1.45;
  margin-bottom: 14px;
}

.headline-link {
  color: #cc0000;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: #cc0000;
}

.hero-subheadline {
  font-size: 22px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 16px;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  background-color: #e8eaf0;
  padding: 0 20px 0;
}

.video-wrapper {
  width: 100%;
}

/* ============================================================
   OFFER SECTION
   ============================================================ */
.offer-section {
  background-color: #e8eaf0;
  padding: 30px 20px;
}

/* --- Product grid (image + price/button) --- */
.offer-grid {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 24px;
}

.offer-image-col {
  flex: 0 0 200px;
}

.bundle-img {
  width: 200px;
}

.offer-content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

/* --- Price display --- */
.only-label {
  font-size: 22px;
  font-style: italic;
  color: #38a169;   /* green */
  font-weight: 700;
  margin: 0;
}

.price-value {
  font-size: 42px;
  font-weight: 900;
  color: #38a169;
  line-height: 1;
  margin: 0 0 10px;
}

/* --- CTA Button (orange) --- */
.btn-cta {
  display: block;
  width: 100%;
  background-color: #f0a500;
  color: #1a2340;
  text-align: center;
  border: none;
  border-radius: 4px;
  padding: 14px 20px 10px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
  line-height: 1.3;
}

.btn-cta:hover {
  background-color: #d99200;
  transform: translateY(-1px);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-main-text {
  display: block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.btn-sub-text {
  display: block;
  font-size: 13px;
  font-weight: 400;
  margin-top: 3px;
  color: #333;
}

/* --- Text link CTA (blue) --- */
.link-cta {
  display: block;
  font-size: 18px;
  color: #1a56d4;
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 2px;
  transition: color 0.15s;
}

.link-cta:hover {
  color: #0d3caa;
}

/* --- Guarantee (small, under button) --- */
.guarantee-small {
  margin-top: 10px;
}

.guarantee-img-small {
  width: 220px;
}

/* ============================================================
   GIFTS SECTION
   ============================================================ */
.gifts-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #ccc;
}

.gifts-headline {
  font-size: 22px;
  font-weight: 700;
  color: #222222;
  text-align: center;
  margin-bottom: 30px;
}

.gift-row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 36px;
}

.gift-img-col {
  flex: 0 0 170px;
}

.gift-img {
  width: 170px;
}

.gift-text-col {
  flex: 1;
}

.gift-title {
  font-size: 22px;
  font-weight: 800;
  color: #222222;
  margin-bottom: 10px;
  line-height: 1.3;
}

.gift-desc {
  font-size: 16px;
  color: #444444;
  line-height: 1.7;
}

/* ============================================================
   365-DAY GUARANTEE BADGE
   ============================================================ */
.guarantee-badge-section {
  text-align: center;
  padding: 30px 0 20px;
}

.guarantee-badge {
  width: 300px;
  margin: 0 auto;
}

/* ============================================================
   SECRET / PRODUCT MOCKUP SECTION
   ============================================================ */
.secret-section {
  text-align: center;
  padding: 10px 0 20px;
}

.secret-headline {
  font-size: 22px;
  font-weight: 800;
  color: #222222;
  margin-bottom: 22px;
  line-height: 1.4;
}

.mockup-container {
  max-width: 600px;
  margin: 0 auto;
}

.mockup-img {
  width: 100%;
}

/* ============================================================
   BOTTOM CTA SECTION
   ============================================================ */
.cta-section {
  text-align: center;
  padding: 30px 0;
}

.cta-headline {
  font-size: 24px;
  font-weight: 800;
  color: #222222;
  margin-bottom: 14px;
  line-height: 1.35;
}

.cta-section .btn-cta {
  max-width: 700px;
  margin: 0 auto 10px;
}

.cta-section .link-cta {
  display: block;
  text-align: center;
}

/* ============================================================
   BIO SECTION
   ============================================================ */
.bio-section {
  padding: 30px 0 40px;
}

.bio-grid {
  display: flex;
  align-items: center;
  gap: 28px;
}

.bio-img-col {
  flex: 0 0 160px;
}

.bio-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ccc;
}

.bio-text-col {
  flex: 1;
}

.bio-text {
  font-size: 16px;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 12px;
}

.bio-read {
  font-size: 16px;
  color: #333333;
}

.bio-link {
  color: #1a56d4;
  text-decoration: underline;
}

.bio-link:hover {
  color: #0d3caa;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: #111111;
  color: #999999;
  padding: 20px;
  text-align: center;
}

.footer-divider {
  border-top: 1px solid #333;
  margin-bottom: 16px;
}

.footer-links-line {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-link {
  color: #1a56d4;
  text-decoration: underline;
}

.footer-link:hover {
  color: #6699ff;
}

.footer-disclaimer {
  font-size: 13px;
  color: #666666;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   MODAL / POPUP
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 50, 0.75);
  z-index: 9999;
  overflow-y: auto;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #f5f5f5;
  border-radius: 6px;
  max-width: 780px;
  width: 100%;
  padding: 40px 36px 36px;
  position: relative;
  margin: auto;
  box-shadow: 0 10px 50px rgba(0,0,0,0.4);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: 2px solid #666;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 14px;
  cursor: pointer;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.modal-close:hover {
  background: #ddd;
}

.modal-title {
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  color: #111111;
  line-height: 1.35;
}

.modal-title-normal {
  font-weight: 400;
}

.modal-expire-bar {
  background: #3dada0;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.modal-product-img {
  text-align: center;
  margin-bottom: 24px;
}

.modal-bundle-img {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-email-input {
  width: 100%;
  padding: 16px 18px;
  font-size: 16px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  background: #ffffff;
  color: #555555;
  outline: none;
  transition: border-color 0.2s;
}

.modal-email-input:focus {
  border-color: #3dada0;
}

.modal-submit-btn {
  font-size: 22px;
  padding: 18px 20px 13px;
}

.modal-submit-btn .btn-main-text {
  font-size: 22px;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 20px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  .offer-grid {
    flex-direction: column;
    align-items: center;
  }

  .offer-image-col {
    flex: unset;
    width: 100%;
    text-align: center;
  }

  .bundle-img {
    margin: 0 auto;
    width: 220px;
  }

  .offer-content-col {
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .price-value {
    font-size: 36px;
  }

  .gift-row {
    flex-direction: column;
    align-items: center;
  }

  .gift-img-col {
    flex: unset;
    width: 100%;
    text-align: center;
  }

  .gift-img {
    margin: 0 auto;
  }

  .gift-text-col {
    text-align: center;
  }

  .bio-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bio-img-col {
    flex: unset;
  }

  .guarantee-img-small {
    margin: 0 auto;
  }

  .cta-headline {
    font-size: 20px;
  }

  .secret-headline {
    font-size: 20px;
  }

  .gifts-headline {
    font-size: 19px;
  }

  .gift-title {
    font-size: 19px;
  }

  .modal-box {
    padding: 28px 18px 24px;
  }

  .modal-title {
    font-size: 20px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 18px;
  }

  .hero-subheadline {
    font-size: 16px;
  }

  .price-value {
    font-size: 30px;
  }

  .btn-main-text {
    font-size: 17px;
  }

  .link-cta {
    font-size: 15px;
  }

  .gift-title {
    font-size: 17px;
  }

  .gift-desc {
    font-size: 15px;
  }

  .guarantee-badge {
    width: 220px;
  }

  .secret-headline {
    font-size: 18px;
  }

  .cta-headline {
    font-size: 18px;
  }

  .bio-avatar {
    width: 130px;
    height: 130px;
  }

  .footer-disclaimer {
    font-size: 12px;
  }
}
