/* =========================
   RESET & BASE
========================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #f7f8f4;
  color: #1c2318;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* =========================
   VARIABLES
========================= */
:root {
  --green:       #4a6640;
  --green-dark:  #354b2e;
  --green-mid:   #5e7d54;
  --green-light: #eef2ea;
  --green-soft:  #f4f7f2;

  --gold:        #c9a84c;
  --gold-light:  #fdf4dc;

  --text:        #1c2318;
  --text-soft:   #5a6655;
  --text-muted:  #8a9886;

  --white: #ffffff;
  --border: #e2e8dd;

  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.09);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

em {
  font-style: italic;
  color: var(--green-mid);
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: auto;
  padding: 0 24px;
}



/* =========================
   BUTTONS
========================= */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #1c1c1c;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
  transition: transform .2s, box-shadow .2s;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(201,168,76,.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.88);
  padding: 15px 26px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  background: rgba(255,255,255,.08);
  transition: background .2s;
}

.btn-ghost:hover { background: rgba(255,255,255,.16); }

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 24px 100px;
  background: linear-gradient(145deg, #354b2e 0%, #4a6640 40%, #6b8a5e 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 80px;
  background: #f7f8f4;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: auto;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  padding: 7px 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 58px);
  color: #fff;
  margin-bottom: 22px;
  font-weight: 900;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  max-width: 640px;
  margin: 0 auto 38px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Stats strip */
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  padding: 18px 32px;
  backdrop-filter: blur(8px);
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  font-family: 'Fraunces', serif;
}

.stat-item span {
  font-size: 12px;
  color: rgba(255,255,255,.65);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

/* =========================
   PROOF BAR
========================= */
.proof-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}

.proof-inner {
  max-width: 1120px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.proof-inner > span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}

.proof-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.proof-tags span {
  background: var(--green-soft);
  color: var(--green);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

/* =========================
   SECTION BASE
========================= */
.section { padding: 96px 0; }
.section-alt { background: var(--white); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  text-align: center;
}

.section-label.light { color: rgba(255,255,255,.6); }

.section-title {
  font-size: clamp(28px, 4.5vw, 44px);
  text-align: center;
  margin-bottom: 56px;
  color: var(--text);
}

.section-title.light { color: #fff; }
.section-title.light em { color: var(--gold); }

/* =========================
   STEPS
========================= */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 12px;
  max-width: 1000px;
  margin: auto;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--text);
}

.step-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  color: var(--text-muted);
  font-size: 18px;
}

/* =========================
   WHY GRID
========================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.why-card {
  background: var(--green-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform .25s;
}

.why-card:hover { transform: translateY(-4px); }

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--green);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.why-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-soft);
}

/* =========================
   BENEFIT
========================= */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: auto;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--green-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform .2s;
}

.benefit-card:hover { transform: translateY(-3px); }

.benefit-card > i {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: var(--radius-sm);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--green);
  box-shadow: var(--shadow-sm);
}

.benefit-card h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.benefit-card p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* =========================
   PROFIT SECTION
========================= */
.profit-section {
  background: linear-gradient(145deg, #354b2e 0%, #527348 60%, #6b8a5e 100%);
  position: relative;
  overflow: hidden;
}

.profit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.profit-note {
  text-align: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.profit-note strong { color: #fff; }

.profit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.profit-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform .25s;
}

.profit-card:hover { transform: translateY(-5px); }

.profit-card.featured {
  background: rgba(201,168,76,.14);
  border-color: rgba(201,168,76,.35);
  position: relative;
}

.profit-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1c1c1c;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.profit-klien {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  margin-bottom: 10px;
  font-weight: 500;
}

.profit-omzet {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.profit-bersih {
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

.profit-bersih strong {
  color: var(--gold);
}

.profit-disclaimer {
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: 12px;
  position: relative;
  z-index: 1;
}

/* =========================
   TESTIMONI
========================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: auto;
}

.testi-card {
  background: var(--green-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.testi-stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-card > p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.testi-author strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}

.testi-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* =========================
   PRICING
========================= */
.pricing-wrap {
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  max-width: 580px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.pricing-badge {
  display: inline-block;
  padding: 7px 18px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 58px;
  font-weight: 900;
  color: var(--green-dark);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 10px;
}

.pricing-sub {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 32px;
}

.pricing-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text);
}

.pricing-list i {
  color: var(--green);
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--green);
  color: #fff;
  padding: 17px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  transition: background .2s, transform .2s;
  margin-bottom: 16px;
}

.pricing-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-note strong { color: var(--green); }

/* =========================
   FAQ
========================= */
.faq-list {
  max-width: 760px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--green-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--green);
  font-weight: 300;
}

.faq-item[open] summary::after { content: '–'; }

.faq-item p {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--text-soft);
}

/* =========================
   CTA FINAL
========================= */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #2d4228 0%, #4a6640 60%, #617d56 100%);
  padding: 100px 24px;
  text-align: center;
}

.cta-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .3;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: auto;
}

.cta-inner h2 {
  font-size: clamp(32px, 5vw, 50px);
  color: #fff;
  margin-bottom: 18px;
}

.cta-inner h2 em { color: var(--gold); }

.cta-inner > p {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .step-arrow { display: none; }

  .why-grid,
  .benefit-grid,
  .profit-grid,
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero { padding: 90px 20px 80px; }
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-gold, .btn-ghost { width: 100%; justify-content: center; }

  .hero-stats {
    flex-direction: column;
    gap: 18px;
    padding: 20px 24px;
  }

  .stat-divider { width: 80px; height: 1px; }

  .why-grid,
  .benefit-grid,
  .profit-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card { padding: 36px 24px; }
  .pricing-price { font-size: 44px; }

  .cta-inner h2 { font-size: 30px; }
  .cta-section { padding: 70px 20px; }
}

@media (max-width: 480px) {
  .section { padding: 72px 0; }
  .section-title { font-size: 26px; }
  .profit-omzet { font-size: 30px; }
  .hero h1 { font-size: 30px; }
}
/* =========================
   FLOATING WA BUTTON
========================= */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #25D366;
  color: #fff;

  padding: 13px 20px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;

  box-shadow: 0 8px 28px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}

.wa-float i {
  font-size: 20px;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37,211,102,.5);
}

@media (max-width: 480px) {
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}

/* =========================
   HERO SPLIT LAYOUT
========================= */
.hero-inner--split {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: auto;
  text-align: left;
}

.hero-left {
  flex: 1;
}

.hero-left .hero-tag { display: inline-block; }

.hero-left .hero-actions {
  justify-content: flex-start;
}

/* GAMBAR KANAN */
.hero-right {
  position: relative;
  flex-shrink: 0;
  width: 340px;
  bottom:-40px;
}

.hero-img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
}

/* FLOATING CARDS */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.float-card strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1c2318;
  line-height: 1.3;
}

.float-card span {
  display: block;
  font-size: 11px;
  color: #888;
  line-height: 1.3;
}

.float-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  display: block;
}

.float-card--order {
  top: 40px;
  left: -60px;
  animation: floatY 3s ease-in-out infinite;
}

.float-card--profit {
  bottom: 100px;
  left: -70px;
  animation: floatY 3s ease-in-out infinite 1s;
}

.float-card--sent {
  top: 140px;
  right: -50px;
  animation: floatY 3s ease-in-out infinite 0.5s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* RESPONSIVE HERO SPLIT */
@media (max-width: 900px) {
  .hero-inner--split {
    flex-direction: column;
    text-align: center;
  }
  .hero-left .hero-actions {
    justify-content: center;
  }
  .hero-right {
    width: 260px;
  }
  .float-card--order { left: -30px; top: 20px; }
  .float-card--profit { left: -30px; bottom: 60px; }
  .float-card--sent { right: -30px; top: 100px; }
}

@media (max-width: 480px) {
  .hero-right { width: 200px; }
  .float-card { padding: 7px 10px; }
  .float-card strong { font-size: 11px; }
  .float-card span { font-size: 10px; }
  .float-card--order { left: -10px; }
  .float-card--profit { left: -10px; }
  .float-card--sent { right: -10px; }
}