:root {
  --bg: #ffffff;
  --soft: #f8faf8;
  --soft-2: #f2f7f1;
  --text: #111111;
  --muted: #333333;
  --green: #13a306;
  --green-dark: #0b7602;
  --red: #ff0000;
  --line: #e8e8e8;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  --radius: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 18px;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

/* The original sample is a clean Elementor-style canvas, so the extra site chrome is hidden. */
.topbar,
footer { display: none; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.brand-badge { display: none; }

.nav-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  text-decoration: none;
  text-align: center;
  font-weight: 800;
  border-radius: 7px;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.nav-cta,
.primary-btn {
  padding: 16px 24px;
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(19, 163, 6, .22);
  text-transform: uppercase;
  letter-spacing: .01em;
}
.secondary-btn {
  padding: 15px 22px;
  background: #ffffff;
  border: 1px solid var(--green);
  color: var(--green);
}
.nav-cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-1px);
}
.nav-cta:hover,
.primary-btn:hover { background: var(--green-dark); }

.hero {
  padding: 42px 0 30px;
  overflow: hidden;
  background: #ffffff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 15px;
  padding: 0;
  color: var(--green);
  background: transparent;
  border: 0;
  font-weight: 800;
  font-size: 1rem;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.05rem, 5.1vw, 4.7rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 900;
  color: #000000;
}
.gradient-text {
  background: none;
  -webkit-background-clip: initial;
  color: var(--green);
}
.hero-subtitle {
  color: var(--green);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 800;
  margin: 18px 0 0;
  max-width: 720px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.trust-row,
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 24px;
}
.trust-pill,
.benefit {
  padding: 0;
  border: 0;
  background: transparent;
  color: #000000;
  font-size: 1.03rem;
  font-weight: 800;
  box-shadow: none;
}
.hero-card {
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}
.hero-card::before { display: none; }
.hero-card img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section { padding: 50px 0; background: #ffffff; }
.section-sm { padding: 22px 0 36px; background: #ffffff; }
.section:nth-of-type(even) { background: var(--soft); }
.section-header {
  max-width: 880px;
  margin: 0 auto 30px;
  text-align: center;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
}
h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.9vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 900;
  color: #000000;
}
h3 {
  color: #000000;
  font-weight: 900;
}
.section-header p {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 760px;
}

.card {
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.intro-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  padding: 24px;
  align-items: center;
}
.intro-card img {
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.intro-card h2 { margin-bottom: 16px; }
.intro-card p { color: var(--muted); margin: 0 0 13px; }
.no-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.no-list div {
  padding: 13px;
  border-radius: 8px;
  background: var(--soft-2);
  border: 1px solid #d8ecd5;
  color: var(--green-dark);
  font-weight: 800;
}

.benefit-grid { margin-top: 0; }
.benefit {
  min-height: 0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.benefit strong {
  display: inline;
  margin-top: 0;
  font-size: 1.05rem;
}
.icon {
  display: inline-grid;
  place-items: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.module {
  padding: 24px;
  background: #ffffff;
}
.module h3 {
  margin: 0 0 14px;
  font-size: 1.28rem;
  letter-spacing: -.01em;
}
.module ul, .plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.module li,
.plain-list li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  color: var(--muted);
}
.module li::before,
.plain-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}
.bonus {
  margin-top: 18px;
  padding: 24px;
  background: var(--soft-2);
  border-color: #d8ecd5;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-card {
  overflow: hidden;
  position: relative;
  min-height: 0;
  background: #ffffff;
}
.gallery-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-card:hover img { transform: scale(1.02); }
.gallery-card span {
  position: static;
  display: block;
  padding: 14px 16px;
  background: #ffffff;
  border-top: 1px solid var(--line);
  font-weight: 900;
  color: #000000;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: start;
}
.audience-card { padding: 28px; }
.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.audience-list div {
  padding: 13px 14px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 800;
  color: #000000;
}
.quote-box {
  padding: 28px;
  background: var(--soft-2);
  border-color: #d8ecd5;
}
.quote-box p { margin: 0; color: var(--muted); }
.big-question {
  display: block;
  margin: 16px 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.035em;
  color: #000000;
}

.price-wrap {
  background: #ffffff;
  border: 2px solid var(--green);
  border-radius: 14px;
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
}
.price-label {
  color: var(--green);
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
}
.price {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 1;
  margin: 12px 0;
  font-weight: 900;
  letter-spacing: -.06em;
  color: #000000;
}
.price-note { margin: 0 0 24px; color: var(--muted); }
.get-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 26px 0 0;
}
.get-item {
  padding: 14px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 800;
  color: #000000;
}

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px;
  margin-top: 22px;
}
.notice .icon { color: var(--red); }
.notice h3 { margin: 0 0 6px; color: var(--red); }
.notice p { margin: 0; color: var(--muted); }

.testimonials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.testimonial { padding: 22px; }
.testimonial::before {
  content: "★★★★★";
  display: block;
  color: #f5b400;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.testimonial p { color: var(--muted); margin: 0 0 16px; }
.testimonial strong { color: #000000; }

.final-cta {
  text-align: center;
  padding: 64px 0 90px;
  background: #ffffff;
}
.final-cta h2 { max-width: 830px; margin: 0 auto; }
.final-cta p { color: var(--muted); margin: 18px auto 28px; max-width: 640px; }

.sticky-mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  display: none;
}
.sticky-mobile-cta a {
  width: 100%;
  padding: 15px 18px;
  border-radius: 9px;
}

#scrollTop {
  position: fixed;
  right: 18px;
  bottom: 86px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d8ecd5;
  background: #ffffff;
  color: var(--green);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: var(--shadow);
}
#scrollTop.show {
  opacity: 1;
  pointer-events: auto;
}
#scrollTop:hover { transform: translateY(-2px); }

.reveal { opacity: 0; transform: translateY(12px); transition: opacity .45s ease, transform .45s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero-grid, .intro-card, .audience-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 620px; margin: 0 auto; }
  .modules { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .get-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container { width: min(100% - 24px, 1080px); }
  .hero { padding-top: 30px; }
  .hero h1 { font-size: clamp(2.15rem, 12vw, 3.6rem); }
  .hero-actions a { width: 100%; }
  .hero-card img { min-height: auto; }
  .section { padding: 42px 0; }
  .intro-card, .price-wrap, .audience-card, .quote-box { padding: 20px; }
  .no-list, .gallery, .audience-list, .get-grid, .testimonials { grid-template-columns: 1fr; }
  .sticky-mobile-cta { display: block; }
  .final-cta { padding-bottom: 108px; }
}
