/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #1a1a1a;
  background-color: #faf8f5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
  background-color: #e53e3e;
  padding: 10px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

/* ===== HERO SECTION ===== */
.hero {
  background-color: #fcfaf7;
  padding: 64px 24px;
}

.hero .container {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.hero h1 .highlight {
  background-color: #fef08a;
  padding: 0 8px;
  color: #111827;
}

.hero .subtitle {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 40px;
}

.hero .mockup-wrapper {
  max-width: 448px;
  margin: 0 auto 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

.hero .mockup-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.btn-primary {
  display: inline-block;
  width: 100%;
  max-width: 384px;
  background-color: #2e7d32;
  color: #fff;
  padding: 20px 32px;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  transition: background-color 0.2s, transform 0.15s;
  text-align: center;
}

.btn-primary:hover {
  background-color: #256d27;
  transform: translateY(-1px);
}

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

/* ===== CAROUSEL ===== */
.carousel-section {
  background-color: #f4ece1;
  padding: 64px 0;
}

.carousel-section .section-title {
  max-width: 1152px;
  margin: 0 auto 48px;
  padding: 0 24px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: scroll;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  padding-left: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track.grabbing {
  cursor: grabbing;
}

.carousel-track img {
  width: 256px;
  height: 256px;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  pointer-events: none;
}

.carousel-track.small img {
  width: 224px;
  height: 224px;
}

/* ===== BENEFITS ===== */
.benefits {
  background-color: #fff;
  padding: 64px 24px;
}

.benefits .container {
  max-width: 1024px;
  margin: 0 auto;
}

.benefits h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 64px;
}

.benefits-grid {
  display: grid;
  gap: 32px;
}

.benefit-card {
  background-color: #fcfaf7;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.benefit-card .icon {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #374151;
  line-height: 1.7;
}

/* ===== IDEAL FOR YOU ===== */
.ideal-section {
  background-color: #ebdfd3;
  padding: 64px 24px;
}

.ideal-card {
  max-width: 768px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.ideal-card h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 40px;
}

.ideal-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ideal-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1f2937;
}

.ideal-list li .emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background-color: #fcfaf7;
  padding: 64px 24px;
}

.testimonials .container {
  max-width: 1152px;
  margin: 0 auto;
}

.testimonials h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 64px;
}

.testimonials-grid {
  display: grid;
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card .quote {
  flex-grow: 1;
  font-style: italic;
  color: #374151;
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.testimonial-card .author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .author span {
  font-weight: 700;
  color: #111827;
}

/* ===== WHAT YOU RECEIVE ===== */
.receive-section {
  background-color: #fff;
  padding: 64px 0;
}

.receive-section .section-title {
  max-width: 1024px;
  margin: 0 auto 48px;
  padding: 0 24px;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
}

.receive-content {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 24px;
}

.receive-box {
  background-color: #fcfaf7;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.receive-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 16px;
}

.receive-box > p {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 24px;
}

.receive-box .subtitle-bold {
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.receive-box .disc-list {
  margin-left: 24px;
  list-style: disc;
  margin-bottom: 40px;
}

.receive-box .disc-list li {
  color: #374151;
  margin-bottom: 8px;
  list-style: disc;
}

.receive-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}

.included-grid {
  display: grid;
  gap: 16px;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.included-item .check-icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: #2e7d32;
  width: 20px;
  height: 20px;
}

.included-item span {
  color: #1f2937;
}

/* ===== BONUSES ===== */
.bonuses {
  background-color: #f4ece1;
  padding: 64px 24px;
}

.bonuses .container {
  max-width: 1024px;
  margin: 0 auto;
}

.bonuses h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 64px;
}

.bonuses-grid {
  display: grid;
  gap: 32px;
}

.bonus-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.bonus-card .bonus-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.bonus-card .bonus-content {
  padding: 24px;
}

.bonus-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.bonus-card p {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.6;
}

/* ===== OFFER / PRICING ===== */
.offer-section {
  background-color: #fcfaf7;
  padding: 64px 24px;
}

.offer-section .container {
  max-width: 1024px;
  margin: 0 auto;
}

.offer-section h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 64px;
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  flex: 1;
}

.pricing-card.basic {
  border: 2px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.pricing-card.complete {
  border: 4px solid #2e7d32;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  position: relative;
}

.pricing-card h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.pricing-card.basic h3 {
  color: #111827;
}

.pricing-card.complete h3 {
  color: #2e7d32;
}

.badge-popular {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #2e7d32;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 24px;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features div {
  padding: 8px 0;
  color: #374151;
}

.pricing-card.complete .pricing-features div:first-child {
  font-weight: 700;
  color: #111827;
}

.pricing-card.complete .pricing-features div {
  color: #1f2937;
}

.pricing-price {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-price .old-price {
  color: #6b7280;
  text-decoration: line-through;
}

.pricing-price .label {
  font-weight: 700;
  color: #374151;
}

.pricing-price .price {
  font-weight: 800;
  color: #2e7d32;
}

.pricing-card.basic .pricing-price .price {
  font-size: 3rem;
}

.pricing-card.complete .pricing-price .price {
  font-size: 3.75rem;
}

.btn-offer {
  display: block;
  width: 100%;
  background: #2e7d32;
  color: #fff;
  padding: 16px 24px;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 12px;
  text-align: center;
  transition: background-color 0.2s;
}

.btn-offer:hover {
  background: #256d27;
}

.pricing-card.complete .btn-offer {
  padding: 20px 24px;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.attention-text {
  margin-top: 24px;
  text-align: center;
}

.attention-text p {
  font-size: 0.875rem;
  font-weight: 700;
  color: #dc2626;
}

.attention-arrows {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.attention-arrows svg {
  width: 20px;
  height: 20px;
  color: #dc2626;
}

/* ===== GUARANTEE ===== */
.guarantee {
  background-color: #fff;
  padding: 64px 24px;
}

.guarantee .container {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.guarantee .guarantee-img {
  width: 160px;
  margin: 0 auto 32px;
}

.guarantee h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 32px;
}

.guarantee .text-block {
  font-size: 1.125rem;
  color: #374151;
}

.guarantee .text-block p {
  margin-bottom: 16px;
}

.guarantee .text-block .bold {
  font-weight: 700;
  color: #111827;
}

.guarantee .text-block .green-bold {
  font-weight: 700;
  color: #2e7d32;
}

/* ===== FAQ ===== */
.faq-section {
  background-color: #fcfaf7;
  padding: 64px 24px;
}

.faq-section .container {
  max-width: 768px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
  gap: 12px;
}

.faq-question .chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: #6b7280;
}

.faq-item.open .faq-question .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: #1a1a1a;
  padding: 48px 24px;
  text-align: center;
}

.site-footer .container {
  max-width: 896px;
  margin: 0 auto;
}

.site-footer p {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */

@media (min-width: 640px) {
  .bonus-card {
    flex-direction: row;
  }

  .bonus-card .bonus-img {
    width: 40%;
    height: 192px;
    object-fit: cover;
  }

  .bonus-card .bonus-content {
    width: 60%;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 96px 24px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero .subtitle {
    font-size: 1.5rem;
  }

  .benefits {
    padding: 96px 24px;
  }

  .benefits h2 {
    font-size: 2.25rem;
  }

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

  .ideal-section {
    padding: 96px 24px;
  }

  .ideal-card {
    padding: 48px;
  }

  .ideal-card h2 {
    font-size: 2.25rem;
  }

  .ideal-list li {
    font-size: 1.25rem;
  }

  .testimonials {
    padding: 96px 24px;
  }

  .testimonials h2 {
    font-size: 2.25rem;
  }

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

  .receive-section {
    padding: 96px 0;
  }

  .receive-section .section-title {
    font-size: 2.25rem;
  }

  .receive-box {
    padding: 48px;
  }

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

  .bonuses {
    padding: 96px 24px;
  }

  .bonuses h2 {
    font-size: 2.25rem;
  }

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

  .offer-section {
    padding: 96px 24px;
  }

  .offer-section h2 {
    font-size: 2.25rem;
  }

  .pricing-cards {
    flex-direction: row;
    align-items: stretch;
  }

  .pricing-card.complete {
    transform: scale(1.05);
    z-index: 10;
  }

  .guarantee {
    padding: 96px 24px;
  }

  .guarantee h2 {
    font-size: 2.25rem;
  }

  .guarantee .guarantee-img {
    width: 192px;
  }

  .guarantee .text-block {
    font-size: 1.25rem;
  }

  .faq-section {
    padding: 96px 24px;
  }

  .faq-section h2 {
    font-size: 2.25rem;
  }

  .carousel-section .section-title {
    font-size: 2.25rem;
  }

  .btn-primary {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
