/* =====================================================
   Pandaibergpt Salespage — style.css
   Mobile-first. Modular. Mudah diedit.
   Terakhir diperbarui: draft awal implementasi
   ===================================================== */

/* =====================================================
   1. CSS VARIABLES (Design Tokens)
   ===================================================== */
:root {
  /* Warna utama */
  --bg:           #F9F5EF;
  --bg-alt:       #EFE8DC;
  --bg-white:     #FFFFFF;
  --primary:      #0E3D32;
  --primary-dark: #092B22;
  --primary-mid:  #1A6B58;
  --primary-light: #E4F0EB;

  /* CTA */
  --cta:          #C95A15;
  --cta-hover:    #A84A10;
  --cta-text:     #FFFFFF;

  /* Teks */
  --text:         #1C1C1A;
  --text-secondary: #4A4A46;
  --text-muted:   #888880;

  /* Border dan divider */
  --border:       #DDD5C4;
  --border-light: #EDE8E0;

  /* Highlight / tag */
  --tag-bg:       #DCF0E8;
  --tag-color:    #0A3328;

  /* Tipografi */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Radius */
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  /* Shadow */
  --shadow-sm:    0 2px 8px rgba(14, 61, 50, 0.07);
  --shadow-md:    0 6px 24px rgba(14, 61, 50, 0.10);
  --shadow-lg:    0 16px 48px rgba(14, 61, 50, 0.13);

  /* Transition */
  --transition:   0.22s ease;

  /* Spacing */
  --section-gap-mobile: 32px;
  --section-gap-desktop: 48px;
  --container-max: 680px;
  --container-narrow-max: 520px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

s {
  opacity: 0.55;
}


/* =====================================================
   3. LAYOUT UTILITIES
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-narrow {
  max-width: var(--container-narrow-max);
}

/* Section base styles */
[class^="section-"] {
  padding-top: var(--section-gap-mobile);
  padding-bottom: var(--section-gap-mobile);
}

.section-hero    { background: var(--bg);      padding-top: 40px; padding-bottom: 0; }
.section-alt     { background: var(--bg-alt);  }
.section-white   { background: var(--bg-white);}
.section-primary { background: var(--primary); }


/* =====================================================
   4. TIPOGRAFI
   ===================================================== */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary-mid);
  margin-bottom: 12px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.65);
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 6vw, 34px);
  font-weight: 800;
  line-height: 1.22;
  color: var(--text);
  margin-bottom: 14px;
}

.headline-light {
  color: #FFFFFF;
}

.section-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.body-light {
  color: rgba(255, 255, 255, 0.75);
}


/* =====================================================
   5. TOMBOL (BUTTONS)
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.97);
}

/* Ukuran */
.btn-lg  { padding: 14px 28px; font-size: 15px; }
.btn-xl  { padding: 16px 32px; font-size: 16px; }

/* Varian */
.btn-cta {
  background: var(--cta);
  color: var(--cta-text);
  box-shadow: 0 4px 16px rgba(201, 90, 21, 0.30);
  width: 100%;
  max-width: 400px;
}

.btn-cta:hover {
  background: var(--cta-hover);
  box-shadow: 0 6px 24px rgba(201, 90, 21, 0.38);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 320px;
}

.btn-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  width: 100%;
  max-width: 320px;
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.55);
}


/* =====================================================
   6. TAG / LABEL
   ===================================================== */
.tag {
  display: inline-block;
  background: var(--tag-bg);
  color: var(--tag-color);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
}


/* =====================================================
   7. SECTION HERO
   ===================================================== */
.section-hero {
  text-align: center;
  overflow: hidden;
}

.hero-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.brand-name-fallback {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.hero-tag {
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

/* Sembunyikan line break ekstra di mobile */
.br-desktop { display: none; }

.hero-visual-wrap {
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background: var(--bg-alt);
  max-height: 360px;
}

.hero-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero-visual-placeholder {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  font-size: 13px;
  color: var(--text-muted);
  border: 2px dashed var(--border);
}


/* =====================================================
   8. SECTION PAIN
   ===================================================== */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 16px;
}

.pain-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pain-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.pain-footer-note {
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  padding-top: 4px;
}


/* =====================================================
   9. SECTION MENGAPA RANDOM TIDAK CUKUP
   ===================================================== */
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary);
}

.reason-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}

.reason-content {}

.reason-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.reason-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}


/* =====================================================
   10. SECTION SOLUSI (STEPS)
   ===================================================== */
.steps-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
  position: relative;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  opacity: 0.65;
}

.step-item.step-active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.30);
  opacity: 1;
}

/* Animasi masuk dari bawah */
.step-item.animate-in {
  animation: stepFadeIn 0.45s ease both;
}

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-badge {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.40);
  background: rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  padding: 6px 10px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  transition: color var(--transition), background var(--transition);
}

.step-item.step-active .step-badge {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.92);
}

.step-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.70);
}

.step-connector {
  width: 2px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  margin-left: 30px;
}

.section-cta-wrap {
  display: flex;
  justify-content: center;
}


/* =====================================================
   11. SECTION BUNDLE ISI
   ===================================================== */
.bundle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.bundle-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.bundle-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.bundle-cover-wrap {
  width: 100%;
  background: var(--bg-alt);
  overflow: hidden;
}

.bundle-cover {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.bundle-cover-placeholder {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px dashed var(--border);
}

.bundle-card-body {
  padding: 20px 18px;
}

.bundle-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-mid);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.bundle-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}

.bundle-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.bundle-price-row {
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}

.bundle-price-satuan {
  font-size: 13px;
  color: var(--text-muted);
}

/* Bonus block */
.bonus-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--primary-light);
  border: 1.5px solid rgba(14, 61, 50, 0.12);
  border-radius: var(--radius-md);
  padding: 20px 18px;
}

.bonus-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.bonus-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary-mid);
  margin-bottom: 5px;
}

.bonus-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}


/* =====================================================
   12. SECTION HASIL / USE CASES
   ===================================================== */
.usecase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.usecase-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
}

.usecase-icon {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
}

.usecase-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.usecase-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}


/* =====================================================
   13. SECTION PREVIEW (CAROUSEL)
   ===================================================== */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  /* Touch events dihandle di JS */
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}

.carousel-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  display: block;
  pointer-events: none;
}

.carousel-placeholder {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  font-size: 13px;
  color: var(--text-muted);
}

/* Tombol navigasi */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  z-index: 2;
  transition: background var(--transition), box-shadow var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.carousel-btn:hover {
  background: #FFFFFF;
  box-shadow: var(--shadow-md);
}

.carousel-btn-prev { left: 10px; }
.carousel-btn-next { right: 10px; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-alt);
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.carousel-dot.dot-active {
  background: var(--primary);
  transform: scale(1.25);
}

.preview-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}


/* =====================================================
   14. SECTION UNTUK SIAPA
   ===================================================== */
.fit-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.fit-block {
  border-radius: var(--radius-lg);
  padding: 20px 20px;
  max-width: 560px;
  width: 100%;
}

.fit-yes {
  background: var(--primary-light);
  border: 1.5px solid rgba(14, 61, 50, 0.12);
}

.fit-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fit-icon {
  font-size: 16px;
}

.fit-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fit-list li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}

.fit-yes .fit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-mid);
}

#untuk-siapa .section-headline {
  text-align: center;
}

/* =====================================================
   15. SECTION FAQ
   ===================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
  line-height: 1.45;
  -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
  background: var(--bg);
}

.faq-question[aria-expanded="true"] {
  color: var(--primary);
  background: var(--primary-light);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 20px 18px;
  background: var(--primary-light);
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}


/* =====================================================
   16. SECTION HARGA / OFFER
   ===================================================== */

/* Value Ladder */
.value-ladder {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  margin-bottom: 28px;
}

.value-ladder-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}

.value-ladder-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.value-ladder-item:last-of-type {
  border-bottom: none;
}

.vl-bonus {
  margin-top: 4px;
}

.vl-name {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.80);
  flex: 1;
}

.vl-price {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.60);
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}

.vl-price-free {
  color: #8CCFBB;
  font-weight: 600;
}

.value-ladder-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 16px 0;
}

.value-ladder-total {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vlt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.vlt-label {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
}

.vlt-val {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
}

.vlt-coret {
  text-decoration: line-through;
}

.vlt-bundle {
  margin-top: 4px;
}

.vlt-bundle-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
}

.vlt-bundle-price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

/* Perks list */
.offer-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.offer-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.5;
}

.perk-icon {
  font-size: 15px;
  color: #8CCFBB;
  flex-shrink: 0;
  margin-top: 1px;
}

/* CTA area */
.offer-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.offer-cta-note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}


/* =====================================================
   17. SECTION CTA PENUTUP
   ===================================================== */
.closing-headline {
  text-align: center;
  margin-bottom: 14px;
}

.closing-body {
  text-align: center;
  margin-bottom: 32px;
  font-size: 15px;
  color: var(--text-secondary);
}

.closing-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.closing-price-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}


/* =====================================================
   18. FOOTER
   ===================================================== */
.site-footer {
  background: var(--primary-dark);
  padding-top: 48px;
  padding-bottom: 36px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}

.footer-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: brightness(10); /* logo terang di atas background gelap */
  margin-bottom: 10px;
}

.footer-brand-name-fallback {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
  display: block;
}

.footer-tagline {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.6;
  max-width: 260px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-link {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.90);
}

.footer-link-cta {
  color: #8CCFBB;
  font-weight: 600;
}

.footer-link-cta:hover {
  color: #A8DDD0;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-contact {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-contact-link {
  color: rgba(255, 255, 255, 0.60);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  transition: color var(--transition);
}

.footer-contact-link:hover {
  color: #FFFFFF;
}


/* =====================================================
   19. TOAST (Social Proof - Default OFF)
   ===================================================== */
.toast-container {
  position: fixed;
  bottom: 20px;
  left: 16px;
  z-index: 9999;
  max-width: 280px;
  pointer-events: none;
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
}

.toast {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateX(-16px) scale(0.96);
  transition: opacity 0.30s ease, transform 0.30s ease;
  pointer-events: auto;
}

.toast.toast-show {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.toast-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.toast-body {}

.toast-msg {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  display: block;
}

.toast-time {
  font-size: 11.5px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}


/* =====================================================
   20. ANIMASI UMUM (Intersection Observer)
   ===================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.50s ease, transform 0.50s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =====================================================
   21. RESPONSIVE - TABLET (480px+)
   ===================================================== */
@media (min-width: 480px) {

  .pain-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bundle-grid {
    grid-template-columns: 1fr 1fr;
  }

  .carousel-img {
    height: 300px;
  }

  .carousel-placeholder {
    height: 300px;
  }

  .hero-visual-wrap {
    max-height: 420px;
  }

}


/* =====================================================
   22. RESPONSIVE - DESKTOP (768px+)
   ===================================================== */
@media (min-width: 768px) {

  [class^="section-"] {
    padding-top: var(--section-gap-desktop);
    padding-bottom: var(--section-gap-desktop);
  }

  .section-hero {
    padding-top: 60px;
  }

  /* Hero */
  .br-desktop { display: block; }

  .hero-visual-wrap {
    max-height: 500px;
  }

  .hero-visual {
    height: auto;
  }

  /* Reason list: jadi row */
  .reason-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .reason-item {
    flex-direction: column;
    border-left: none;
    border-top: 3px solid var(--primary);
  }

  /* Steps: tampilan grid di desktop */
  .steps-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .step-connector {
    display: none;
  }

  /* Carousel */
  .carousel-img {
    height: 380px;
  }

  .carousel-placeholder {
    height: 380px;
  }

  /* Footer */
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* Bundle grid desktop tetap 2 kolom, nyaman */
  .bundle-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .usecase-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  /* Offer: teks lebih besar */
  .vlt-bundle-price {
    font-size: 32px;
  }

  /* Toast: posisi yang lebih baik */
  .toast-container {
    bottom: 24px;
    left: 24px;
    max-width: 300px;
  }
}


/* =====================================================
   23. FOCUS STATES (Accessibility)
   ===================================================== */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.section-primary a:focus-visible,
.section-primary button:focus-visible {
  outline-color: rgba(255, 255, 255, 0.80);
}


/* -------------------------------------------------
   ANIMASI VALUE LADDER
   Elemen-elemen harga dan keuntungan bundle akan memudar
   dan naik sedikit saat masuk viewport untuk memperjelas
   urutan nilai. Kelas .vl-visible ditambahkan lewat
   JavaScript saat elemen terlihat.
   ------------------------------------------------- */
.value-ladder-item,
.value-ladder-total .vlt-row,
.offer-perks li {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
}

.vl-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* =====================================================
   24. PRINT (minimal reset)
   ===================================================== */
@media print {
  .btn-cta,
  .carousel-btn,
  .toast-container {
    display: none !important;
  }
}
