/* ============================================================
   main.css — asuransiperjalanan.co.id
   Design: Navy #003781 + Aviation Orange #FF6B00
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --navy:       #003781;
  --navy-d:     #002560;
  --navy-l:     #EEF4FF;
  --accent:     #FF6B00;
  --accent-l:   #FFF3EB;
  --green:      #1A7A4A;
  --white:      #FFFFFF;
  --gray-50:    #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-300:   #CBD5E1;
  --gray-500:   #64748B;
  --gray-700:   #334155;
  --gray-900:   #0F172A;
  --r-sm:       8px;
  --r-md:       14px;
  --r-lg:       24px;
  --sh-sm:      0 2px 8px rgba(0,55,129,.08);
  --sh-md:      0 8px 32px rgba(0,55,129,.13);
  --sh-lg:      0 20px 60px rgba(0,55,129,.18);
  --font-disp:  'Plus Jakarta Sans', sans-serif;
  --font-body:  'Inter', sans-serif;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── TOPBAR ──────────────────────────────────────────────────── */
.topbar {
  background: var(--navy-d);
  color: rgba(255,255,255,.8);
  font-size: 12.5px;
  padding: 7px 24px;
}
.topbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a {
  color: #FFAE70;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity .15s;
}
.topbar a:hover { opacity: .85; }

/* ── NAVBAR ──────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--sh-sm);
  transition: box-shadow .2s;
}
.navbar.scrolled { box-shadow: var(--sh-md); }
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.nav-logo img { height: 36px; object-fit: contain; }
.nav-logo-sep { width: 1px; height: 28px; background: var(--gray-300); }
.nav-logo-text {
  font-family: var(--font-disp);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.nav-logo-sub { font-size: 10.5px; color: var(--gray-500); margin-top: 1px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--navy); background: var(--navy-l); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(255,107,0,.3);
  margin-left: 8px;
  transition: transform .15s, box-shadow .15s !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,107,0,.4) !important;
  background: #e85e00 !important;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}
.lang-toggle {
  border: 1.5px solid var(--gray-300);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  background: var(--white);
  transition: border-color .15s, color .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.lang-toggle:hover { border-color: var(--navy); color: var(--navy); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform .2s;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  padding-bottom: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0055c8 55%, #0069d4 100%);
  z-index: -1;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255,107,0,.15) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255,255,255,.05) 0%, transparent 40%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,.15);
  border: 1px solid rgba(255,107,0,.4);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 20px;
  font-size: 12.5px;
  font-weight: 700;
  color: #FFAE70;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .7; }
}
.hero h1 {
  font-family: var(--font-disp);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -.5px;
  margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: #FFAE70; }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.htrust-item { display: flex; flex-direction: column; }
.htrust-item strong {
  font-family: var(--font-disp);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.htrust-item span { font-size: 12px; color: rgba(255,255,255,.65); }
.htrust-sep { width: 1px; height: 32px; background: rgba(255,255,255,.2); }

/* ── TRUST BAR ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 16px 24px;
}
.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.tb-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
}
.tb-sep { width: 1px; height: 20px; background: var(--gray-300); }

/* ── SECTION SHARED ──────────────────────────────────────────── */
.section { padding: 80px 24px; }
.section-alt { background: var(--gray-50); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-disp);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-desc {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}

/* ── BENEFITS ────────────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.benefit-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 24px 20px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), #0069d4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.benefit-card:hover::after { transform: scaleX(1); }
.bc-icon { font-size: 32px; margin-bottom: 14px; }
.bc-title {
  font-family: var(--font-disp);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.bc-desc { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; }
.bc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent-l);
  color: var(--accent);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 10px;
}

/* ── CALCULATOR SECTION ──────────────────────────────────────── */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}
.calc-info-col { padding-top: 8px; }
.calc-info-list {
  list-style: none;
  margin-top: 20px;
}
.calc-info-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  color: var(--gray-700);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.calc-info-list li:last-child { border: none; }
.wilayah-info-box {
  margin-top: 24px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.wib-title {
  font-family: var(--font-disp);
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.wib-list { font-size: 13px; line-height: 1.9; }
.wib-list dt { font-weight: 700; color: var(--gray-900); }
.wib-list dd { color: var(--gray-500); margin-left: 0; margin-bottom: 4px; }

/* ── PLANS ───────────────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan-card {
  border: 2px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  background: var(--white);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.plan-card.featured {
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: var(--sh-lg);
  transform: translateY(-8px);
}
.plan-card.featured:hover { transform: translateY(-12px); }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 11.5px;
  font-weight: 800;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-disp);
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.plan-card.featured .plan-name { color: var(--white); }
.plan-desc { font-size: 13px; color: var(--gray-500); margin-bottom: 18px; }
.plan-card.featured .plan-desc { color: rgba(255,255,255,.7); }
.plan-price-from { font-size: 11.5px; color: var(--gray-500); }
.plan-card.featured .plan-price-from { color: rgba(255,255,255,.6); }
.plan-price {
  font-family: var(--font-disp);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}
.plan-card.featured .plan-price { color: #FFAE70; }
.plan-price span { font-size: 13px; font-weight: 500; color: var(--gray-500); }
.plan-card.featured .plan-price span { color: rgba(255,255,255,.6); }
.plan-features {
  list-style: none;
  margin-top: 18px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.plan-features li.missing { text-decoration: line-through; opacity: .4; }
.plan-features li.missing::before { content: '✗'; color: var(--gray-500); }
.plan-card.featured .plan-features li { border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.85); }
.plan-card.featured .plan-features li::before { color: #FFAE70; }
.plan-cta {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  border-radius: 50px;
  font-family: var(--font-disp);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  transition: all .15s;
}
.plan-cta:hover { background: var(--navy); color: var(--white); }
.plan-card.featured .plan-cta {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.plan-card.featured .plan-cta:hover { background: #e85e00; border-color: #e85e00; }

/* ── STEPS ───────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--navy-l), var(--navy), var(--navy-l));
}
.step-card { text-align: center; position: relative; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-disp);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--sh-md);
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: var(--font-disp);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.step-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ── TESTIMONI ───────────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 24px 20px;
  transition: box-shadow .2s, transform .2s;
}
.testi-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.testi-stars { color: #F59E0B; font-size: 16px; margin-bottom: 12px; letter-spacing: 3px; }
.testi-text {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-l);
  color: var(--navy);
  font-family: var(--font-disp);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 13.5px; color: var(--gray-900); }
.testi-meta { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: var(--font-disp);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  gap: 16px;
  transition: color .15s;
}
.faq-q:hover { color: var(--navy); }
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy-l);
  color: var(--navy);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  transition: transform .25s, background .15s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--navy);
  color: var(--white);
}
.faq-a {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  padding-bottom: 18px;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy), #0055c8);
  padding: 64px 24px;
  text-align: center;
}
.cta-band-inner { max-width: 640px; margin: 0 auto; }
.cta-label {
  font-size: 12px;
  font-weight: 800;
  color: #FFAE70;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-title {
  font-family: var(--font-disp);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.cta-desc {
  color: rgba(255,255,255,.8);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-disp);
  font-size: 15px;
  font-weight: 700;
  border: none;
  box-shadow: 0 6px 24px rgba(255,107,0,.4);
  transition: transform .2s, box-shadow .2s, opacity .15s;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,107,0,.5);
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  font-family: var(--font-disp);
  font-size: 15px;
  font-weight: 700;
  border: none;
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.45); }

/* ── WA FLOAT ────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 500;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
  font-family: var(--font-disp);
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  animation: bounceIn .6s ease;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,.6); }
.wa-float span { white-space: nowrap; }
@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.7);
  padding: 64px 24px 32px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-ojk {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  margin-bottom: 40px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}
.footer-ojk strong { color: rgba(255,255,255,.9); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 36px; object-fit: contain; margin-bottom: 4px; }
.footer-brand-name {
  font-family: var(--font-disp);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 13.5px; line-height: 1.7; margin-bottom: 18px; }
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  transition: opacity .15s;
  text-decoration: none;
}
.footer-wa-btn:hover { opacity: .85; }
.footer-col h4 {
  font-family: var(--font-disp);
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a {
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  transition: color .15s;
}
.footer-bottom-links a:hover { color: var(--white); }
.footer-legal {
  margin-top: 18px;
  font-size: 11.5px;
  color: rgba(255,255,255,.32);
  line-height: 1.7;
}

/* ── SUCCESS OVERLAY ─────────────────────────────────────────── */
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.success-box {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  text-align: center;
  max-width: 440px;
  width: 100%;
}
.success-icon { font-size: 56px; margin-bottom: 16px; }
.success-box h2 {
  font-family: var(--font-disp);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.success-box p { font-size: 14px; color: var(--gray-500); margin-bottom: 8px; }
.btn-wa-success {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 16px;
  transition: opacity .15s;
}
.btn-wa-success:hover { opacity: .88; }
.btn-close-success {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: var(--gray-100);
  border: none;
  border-radius: 50px;
  font-size: 14px;
  color: var(--gray-500);
  transition: background .15s;
}
.btn-close-success:hover { background: var(--gray-300); }

/* ── TOAST ───────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9998;
  background: var(--gray-900);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  max-width: 320px;
  box-shadow: var(--sh-lg);
  transform: translateY(20px);
  opacity: 0;
  transition: transform .25s, opacity .25s;
  white-space: pre-line;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-error { background: #c0392b; }
.toast-info { background: var(--navy); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .calc-wrap { grid-template-columns: 1fr; }
  .wilayah-info-box { display: none; }
}
@media (max-width: 900px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan-card.featured { transform: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  /* Sembunyikan lang toggle dari navbar di mobile */
  .nav-right .lang-toggle { display: none; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px 20px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--sh-md);
    gap: 4px;
    z-index: 998;
  }
  /* Lang toggle muncul di dalam mobile menu */
  .nav-links.open .lang-toggle-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 14px;
    border: 1.5px solid var(--gray-300);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-500);
    background: none;
    cursor: pointer;
    width: fit-content;
  }
  .nav-hamburger { display: flex; }
}
@media (max-width: 600px) {
  .hero { clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%); min-height: 70vh; }
  .hero h1 { font-size: 28px; }
  .hero-desc { font-size: 15px; }
  .section { padding: 56px 16px; }
  .trust-bar-inner { gap: 14px; }
  .tb-sep { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 16px; }
}

/* ── LEGAL PAGES ─────────────────────────────────────────────── */
.legal-hero {
  background: linear-gradient(135deg, var(--navy), #0055c8);
  padding: 64px 24px 48px;
}
.legal-hero-inner { max-width: 860px; margin: 0 auto; color: var(--white); }
.legal-breadcrumb { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.legal-breadcrumb a { color: rgba(255,255,255,.65); text-decoration: underline; }
.legal-breadcrumb a:hover { color: var(--white); }
.legal-hero h1 { font-family: var(--font-disp); font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.legal-hero p { color: rgba(255,255,255,.7); font-size: 13.5px; }

.legal-wrap { padding: 48px 24px 80px; }
.legal-body {
  max-width: 860px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
}
.legal-body h2 {
  font-family: var(--font-disp);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--navy-l);
}
.legal-body p { margin-bottom: 14px; }
.legal-body ul { padding-left: 20px; margin-bottom: 14px; }
.legal-body ul li { margin-bottom: 7px; }
.legal-body a { color: var(--navy); text-decoration: underline; }
.legal-body a:hover { color: var(--accent); }
.legal-notice {
  background: var(--navy-l);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.6;
}
.legal-notice.warning {
  background: #FFF8E1;
  border-color: var(--accent);
  color: #7B3800;
}
.legal-contact {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin-top: 8px;
  line-height: 2;
}

/* =============================================
   HERO COMPACT — Mobile-First Conversion
   ============================================= */
.hero-compact {
  min-height: auto;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  padding-bottom: 48px;
}
.hero-glow {
  position: absolute;
  right: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,107,0,.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-compact-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px 8px;
}
.hero-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 14px;
}
.hero-compact h1 {
  font-family: var(--font-disp);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.hero-compact h1 em { font-style: normal; color: #FFAE70; }
.hero-sub-compact {
  font-size: 15px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 520px;
}
.hero-sub-compact strong { color: var(--white); }

/* Stats bar compact */
.hero-stats-bar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
}
.hsb-item {
  flex: 1;
  padding: 12px 8px;
  text-align: center;
}
.hsb-num {
  font-family: var(--font-disp);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hsb-lbl {
  font-size: 10.5px;
  color: rgba(255,255,255,.6);
  margin-top: 3px;
}
.hsb-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* Hero CTAs compact */
.hero-ctas-compact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-primary-lg {
  font-size: 15px !important;
  padding: 14px 28px !important;
}
.btn-wa-compact {
  padding: 14px 20px !important;
  font-size: 14px !important;
}

/* =============================================
   TRUST PILLS SCROLL
   ============================================= */
.trust-pills-scroll {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.tps-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tps-inner::-webkit-scrollbar { display: none; }
.tps-pill {
  flex-shrink: 0;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
}

/* =============================================
   BENEFITS SCROLL — horizontal mobile
   ============================================= */
.benefits-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.benefits-scroll::-webkit-scrollbar { display: none; }
.benefits-scroll .benefit-card {
  flex-shrink: 0;
  width: 190px;
  min-height: 0;
}
/* Desktop: kembali ke grid */
@media (min-width: 768px) {
  .benefits-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    overflow-x: visible;
    margin: 0;
    padding: 0;
  }
  .benefits-scroll .benefit-card { width: auto; }
}

/* =============================================
   STICKY CTA BAR — mobile only
   ============================================= */
.sticky-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 10px 16px 14px;
  display: flex;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  transition: transform .3s ease, opacity .3s ease;
  /* Sembunyikan di desktop */
}
.sticky-btn-hitung {
  flex: 1;
  padding: 13px;
  background: linear-gradient(135deg, var(--navy), #0055c8);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-disp);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,55,129,.25);
  transition: opacity .15s;
}
.sticky-btn-hitung:hover { opacity: .9; }
.sticky-btn-wa {
  padding: 13px 18px;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
  white-space: nowrap;
}

/* Desktop: sembunyikan sticky bar, WA float tetap ada */
@media (min-width: 900px) {
  .sticky-cta-bar { display: none; }
}

/* Mobile: tambah padding bawah supaya konten tidak tertutup sticky bar */
@media (max-width: 899px) {
  .footer { padding-bottom: 80px; }
  /* Sembunyikan WA float di mobile — diganti sticky bar */
  .wa-float { display: none; }
  /* Mode floating_wa: wa-float tetap tampil di mobile */
  .wa-float.wa-float-always { display: flex !important; }
  /* Hero min height lebih kecil di mobile */
  .hero-compact { padding-bottom: 32px; }
  .hero-compact-inner { padding: 20px 16px 8px; }
}


/* ── SUCCESS POPUP TAMBAHAN ─────────────────────────────────── */
.success-rekening {
  background: #FFF8E1;
  border: 1px solid #FFE082;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 12px 0;
  text-align: left;
  width: 100%;
}
.sr-label { font-size: 12.5px; color: #7B5800; margin-bottom: 4px; font-weight: 600; }
.sr-bank { font-size: 18px; font-weight: 800; color: #003781; font-family: 'Plus Jakarta Sans', sans-serif; }
.sr-atasnama { font-size: 13px; color: #64748B; margin-top: 2px; }
.sr-nominal { font-size: 14px; color: #334155; margin-top: 8px; }
.sr-nominal strong { color: #003781; font-size: 16px; }

.btn-upload-success {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  background: #003781;
  color: #fff;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: opacity .15s;
}
.btn-upload-success:hover { opacity: .88; }
