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

html {
  scroll-behavior: smooth;
}

/* ===== BASE ===== */
body {
  font-family: "Montserrat", sans-serif;
  background-color: #067bcc;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  background-color: #067bcc;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* ===== CONTENT WRAPPER ===== */
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== LOGO ===== */
.logo-wrapper {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.logo-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 20px 9px;
  text-align: center;
  box-shadow: 0 3px 16px rgba(0,0,0,0.18);
}

.logo-kit {
  font-size: 12px;
  font-weight: 700;
  color: #067bcc;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.logo-kit .de {
  font-size: 11px;
  font-weight: 500;
  color: #444;
  text-transform: lowercase;
  letter-spacing: 0;
}

.logo-title {
  font-size: 22px;
  font-weight: 900;
  color: #f5c400;
  line-height: 1.1;
  text-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.logo-subtitle {
  font-size: 9px;
  font-weight: 500;
  color: #666;
  margin-top: 4px;
  letter-spacing: 0.3px;
}

/* ===== HEADLINE ===== */
.headline {
  margin-top: 30px;
  text-align: center;
  max-width: 820px;
}

.headline h1 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
}

.headline h1 .highlight {
  color: #ffe202;
}

/* ===== BULLETS ===== */
.bullets {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-self: center;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bullet-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.bullet-icon svg {
  width: 28px;
  height: 28px;
}

.bullet-text {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

/* ===== SUBTEXT ===== */
.subtext {
  margin-top: 28px;
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.45;
}

/* ===== IMAGE AREA ===== */
.image-area {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 18px auto 0;
  height: 500px;
}

/* ===== PHOTO THUMBS ===== */
.photo-left,
.photo-right-top,
.photo-right-bottom {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-left {
  left: 142px;
  top: 18px;
  width: 200px;
  height: 210px;
  background: linear-gradient(135deg, #7fbfe0 0%, #4498c8 100%);
  transform: rotate(-2deg);
}

.photo-right-top {
  right: 120px;
  top: 18px;
  width: 200px;
  height: 175px;
  background: linear-gradient(135deg, #f8da90 0%, #f0b044 100%);
  transform: rotate(2deg);
}

.photo-right-bottom {
  right: 140px;
  top: 218px;
  width: 160px;
  height: 145px;
  background: linear-gradient(135deg, #c0e8a0 0%, #78c050 100%);
  transform: rotate(-1.5deg);
}

.photo-placeholder {
  font-size: 48px;
  opacity: 0.6;
}

.photo-left img,
.photo-right-top img,
.photo-right-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* ===== WOMAN ===== */
.woman-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 490px;
  z-index: 10;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.3));
}

/* ===== MUSIC NOTES ===== */
.music-note {
  position: absolute;
  color: #ffe202;
  z-index: 6;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  line-height: 1;
}

.note-1 {
  font-size: 38px;
  top: 65px;
  left: 185px;
  animation-delay: 0s;
}

.note-2 {
  font-size: 54px;
  top: 40px;
  right: 180px;
  animation-delay: 0.6s;
}

.treble-clef {
  position: absolute;
  top: 130px;
  right: 138px;
  font-size: 52px;
  color: #ffe202;
  z-index: 6;
  animation: float 3.5s ease-in-out infinite;
  animation-delay: 1.2s;
  line-height: 1;
}

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

/* ===== STARS ===== */
.stars-left,
.stars-right {
  position: absolute;
  bottom: 55px;
  display: flex;
  gap: 4px;
  z-index: 6;
}

.stars-left  { left: 195px; }
.stars-right { right: 175px; }

.star {
  color: #ffe202;
  animation: twinkle 2.2s ease-in-out infinite;
}

.s1 { font-size: 22px; animation-delay: 0s; }
.s2 { font-size: 14px; animation-delay: 0.35s; }
.s3 { font-size: 18px; animation-delay: 0.7s; }
.s4 { font-size: 18px; animation-delay: 0.2s; }
.s5 { font-size: 14px; animation-delay: 0.55s; }
.s6 { font-size: 22px; animation-delay: 0.9s; }

@keyframes twinkle {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ===== WAVE ===== */
.wave-bottom {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  opacity: 0.45;
  z-index: 5;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background-color: #ffffff;
  padding: 60px 0 80px;
  width: 100%;
}

.testimonials .section-title {
  font-size: 28px;
  font-weight: 700;
  color: #148ce1;
  text-align: center;
  line-height: 1.35;
  margin-bottom: 40px;
  padding: 0 10px;
}

.social-proof-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.proof-item {
  width: 100%;
  display: flex;
  justify-content: center;
}

.proof-item img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .testimonials {
    padding: 40px 0 60px;
  }
  .testimonials .section-title {
    font-size: 22px;
  }
  .social-proof-list {
    max-width: 100%;
    padding: 0 15px;
    gap: 16px;
  }
}

/* ===== PAIN POINTS ===== */
.pain-points {
  background-color: #067bcc;
  padding: 60px 0;
  width: 100%;
}

.pain-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  max-width: 820px;
}

.pain-title .highlight {
  color: #ffe202;
}

.pain-image-wrapper {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.pain-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 36px;
}

@media (max-width: 600px) {
  .pain-points {
    padding: 40px 0;
  }
  .pain-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .pain-image-wrapper {
    padding: 0 15px;
  }
  .pain-image-wrapper img {
    border-radius: 20px;
  }
}

/* ===== REASONS SECTION ===== */
.reasons-section {
  background-color: #ffffff;
  padding: 80px 0;
  width: 100%;
}

.reasons-section .content-wrapper {
  max-width: 960px;
}

.reasons-title {
  font-size: 30px;
  font-weight: 500;
  color: #148ce1;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 60px;
  max-width: 800px;
}

.reasons-title .bold-blue {
  font-weight: 800;
}

.reasons-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.reason-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 260px;
}

.reason-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  margin-bottom: 32px;
}

.reason-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.reason-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #148ce1;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(20, 140, 225, 0.3);
  z-index: 2;
  line-height: 1.1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.reason-caption {
  font-size: 17px;
  font-weight: 700;
  color: #148ce1;
  text-align: center;
  line-height: 1.35;
  padding: 0 5px;
}

@media (max-width: 800px) {
  .reasons-section {
    padding: 50px 0;
  }
  .reasons-title {
    font-size: 22px;
    margin-bottom: 40px;
    padding: 0 15px;
  }
  .reasons-grid {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .reason-card {
    max-width: 280px;
  }
}

/* ===== YELLOW ALERT BAR ===== */
.yellow-alert-bar {
  background-color: #ffe202;
  padding: 22px 10px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.yellow-alert-bar p {
  font-size: 19px;
  font-weight: 800;
  color: #067bcc;
  margin: 0;
  line-height: 1.3;
}

/* ===== STEPS SECTION ===== */
.steps-section {
  background-color: #067bcc;
  padding: 60px 0 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.steps-intro {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  line-height: 1.35;
  margin-top: 36px;
  margin-bottom: 24px;
  max-width: 500px;
}

.steps-intro .highlight {
  color: #ffe202;
}

.step-arrow {
  width: 48px;
  height: 32px;
  margin: 20px auto 30px;
  display: flex;
  justify-content: center;
}

.step-arrow svg {
  width: 100%;
  height: 100%;
}

.step-block {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 10px;
}

.step-heading {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.3;
}

.step-number {
  color: #ffe202;
}

.step-text {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 28px;
  max-width: 450px;
}

.step-text .bold {
  font-weight: 800;
}

.step-image-wrapper {
  width: 100%;
  max-width: 320px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
}

.step-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 600px) {
  .yellow-alert-bar p {
    font-size: 16px;
  }
  .steps-section {
    padding: 40px 0 60px;
  }
  .steps-intro {
    font-size: 20px;
    max-width: 90%;
    margin-top: 24px;
  }
  .step-heading {
    font-size: 19px;
  }
  .step-text {
    font-size: 15px;
    max-width: 100%;
  }
  .step-image-wrapper {
    max-width: 280px;
    border-radius: 20px;
  }
}

/* ===== YELLOW ALERT BAR SECONDARY ===== */
.yellow-alert-bar.secondary p {
  color: #148ce1;
}

.yellow-alert-bar.secondary p .bold {
  font-weight: 900;
}

/* ===== KIT CONTENT SECTION ===== */
.kit-content-section {
  background-color: #ffffff;
  padding: 60px 0 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kit-text-blocks {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 20px;
}

.kit-paragraph {
  font-size: 21px;
  font-weight: 500;
  color: #148ce1;
  text-align: center;
  line-height: 1.45;
}

.kit-paragraph .highlight-blue {
  font-weight: 800;
}

.kit-mockup-wrapper {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.kit-mockup-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 600px) {
  .kit-content-section {
    padding: 40px 0 60px;
  }
  .kit-text-blocks {
    gap: 18px;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  .kit-paragraph {
    font-size: 17px;
  }
  .kit-mockup-wrapper {
    padding: 0 15px;
  }
}

/* ===== DELIVERY SECTION ===== */
.delivery-section {
  background-color: #ebebeb; /* Light gray background matching the print */
  padding: 80px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.delivery-title {
  font-size: 28px;
  font-weight: 500;
  color: #148ce1;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 50px;
  max-width: 600px;
  padding: 0 20px;
}

.delivery-title .bold {
  font-weight: 800;
}

.delivery-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
}

.delivery-card {
  background-color: #ffffff;
  border-radius: 36px;
  padding: 45px 35px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.delivery-icon-wrapper {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.delivery-icon-wrapper svg {
  width: 100%;
  height: 100%;
}

.card-title {
  font-size: 19px;
  font-weight: 800;
  color: #148ce1;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.card-description {
  font-size: 16px;
  font-weight: 500;
  color: #148ce1;
  line-height: 1.45;
  max-width: 360px;
}

@media (max-width: 600px) {
  .delivery-section {
    padding: 50px 0;
  }
  .delivery-title {
    font-size: 22px;
    margin-bottom: 35px;
  }
  .delivery-cards {
    padding: 0 15px;
    gap: 20px;
  }
  .delivery-card {
    padding: 35px 20px;
    border-radius: 24px;
  }
  .card-title {
    font-size: 17px;
  }
  .card-description {
    font-size: 14.5px;
  }
}

/* ===== OFFER SECTION ===== */
.offer-section {
  background-color: #067bcc;
  padding: 70px 0 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  line-height: 1.35;
  margin-bottom: 40px;
  max-width: 720px;
  padding: 0 20px;
}

.offer-mockup {
  width: 100%;
  max-width: 450px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.offer-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

.price-box {
  text-align: center;
  margin-bottom: 30px;
}

.price-main {
  font-size: 74px;
  font-weight: 900;
  color: #ffe202;
  line-height: 1.1;
}

.price-installments {
  font-size: 22px;
  color: #ffffff;
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

.price-installments .bold {
  font-weight: 800;
}

.lifetime-box {
  text-align: center;
  margin-bottom: 28px;
}

.lifetime-title {
  font-size: 25px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.lifetime-sub {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background-color: #00b800;
  color: #ffffff;
  font-size: 23px;
  font-weight: 900;
  text-align: center;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 184, 0, 0.35);
  transition: transform 0.2s, background-color 0.2s;
  max-width: 380px;
  width: 90%;
  margin-bottom: 20px;
}

.cta-button:hover {
  background-color: #00cd00;
  transform: scale(1.03);
}

.offer-subtext {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 30px;
  text-align: center;
}

.payment-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.payment-item svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 600px) {
  .offer-section {
    padding: 50px 0 60px;
  }
  .offer-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .offer-mockup {
    max-width: 340px;
    margin-bottom: 30px;
  }
  .price-main {
    font-size: 56px;
  }
  .price-installments {
    font-size: 18px;
  }
  .lifetime-title {
    font-size: 21px;
  }
  .lifetime-sub {
    font-size: 14.5px;
  }
  .cta-button {
    font-size: 19px;
    padding: 15px 30px;
  }
  .offer-subtext {
    font-size: 14.5px;
  }
  .payment-methods {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background-color: #faf6ee; /* Cream background matching the image */
  padding: 80px 0;
  width: 100%;
}

.faq-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif;
}

.faq-title .blue-text {
  color: #067bcc;
}

.faq-title .orange-text {
  color: #d25420;
}

.faq-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 24px;
  cursor: pointer;
  outline: none;
}

.faq-question-text {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #067bcc;
  line-height: 1.35;
  padding-right: 15px;
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #067bcc;
  transition: transform 0.3s ease;
}

.faq-toggle-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
}

.faq-answer-content {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #148ce1; /* Medium blue to match other descriptions */
  line-height: 1.6;
  padding-bottom: 24px;
}

/* Active state for accordion */
.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg); /* Rotates the + to look like x */
}

@media (max-width: 600px) {
  .faq-section {
    padding: 50px 0;
  }
  .faq-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .faq-container {
    gap: 12px;
    padding: 0 15px;
  }
  .faq-question {
    padding: 18px;
  }
  .faq-question-text {
    font-size: 15px;
  }
  .faq-answer {
    padding: 0 18px;
  }
  .faq-answer-content {
    font-size: 13.5px;
    padding-bottom: 18px;
  }
}








