/* ============================================================
   CAMEL® QuickBond Campaign — BMI Malaysia
   Design system: white / azure / navy / ice
   ============================================================ */

:root {
  --navy: #062a45;
  --navy-deep: #04182b;
  --ink: #0b1e30;
  --blue: #00a0e3;
  --blue-dark: #0e7ab5;
  --muted: #5e86a8;
  --ice: #e9f5fc;
  --grey: #f4f7fa;
  --white: #ffffff;
  --wa: #25d366;
  --wa-dark: #1da851;
  --radius: 20px;
  --header-h: 76px;
  --font-display: "Raleway", sans-serif;
  --font-body: "Inter", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; }

.container { width: min(1200px, 92vw); margin-inline: auto; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 18px; border-radius: 10px;
  transition: top 0.25s var(--ease-out);
}
.skip-link:focus { top: 12px; }

.icon { width: 1.1em; height: 1.1em; flex: none; }
.brand-icon { width: 18px; height: 18px; flex: none; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.02em; padding: 14px 26px; border-radius: 999px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background-color 0.25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.98); }

.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(0, 160, 227, 0.35); }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 16px 32px rgba(0, 160, 227, 0.4); }

.btn-light { background: #fff; color: var(--navy); box-shadow: 0 10px 24px rgba(2, 20, 36, 0.25); }
.btn-light:hover { background: var(--ice); }

.btn-whatsapp { background: var(--wa); color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35); }
.btn-whatsapp:hover { background: var(--wa-dark); box-shadow: 0 16px 32px rgba(37, 211, 102, 0.42); }

.btn-tiktok { background: var(--ink); color: #fff; box-shadow: 0 10px 24px rgba(4, 24, 43, 0.4); }
.btn-tiktok:hover { background: #000; }

.btn-xl { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ============ Header ============ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled { border-bottom-color: #e2ecf3; box-shadow: 0 8px 30px rgba(6, 42, 69, 0.08); }

.header-inner {
  height: var(--header-h);
  width: min(1320px, 94vw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.brand-mark { display: inline-flex; align-items: center; }
.brand-logo-img { display: block; object-fit: contain; }
.brand-logo-bmi { height: 42px; width: auto; border-radius: 8px; }
.brand-logo-camel { height: 40px; width: auto; }
.brand-word { font-family: var(--font-display); font-weight: 900; letter-spacing: 0.01em; }

.main-nav { display: flex; gap: 6px; }
.nav-link {
  position: relative; padding: 10px 16px; font-weight: 600; font-size: 0.92rem;
  color: var(--ink); border-radius: 999px; transition: color 0.25s ease, background-color 0.25s ease;
}
.nav-link::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease-out);
}
.nav-link:hover { color: var(--blue-dark); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--blue-dark); }

.header-right { display: flex; align-items: center; gap: 18px; }
.btn-header { padding: 11px 22px; font-size: 0.88rem; }

.nav-toggle { display: none; flex-direction: column; gap: 6px; padding: 10px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform 0.3s var(--ease-out), opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.2px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.2px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 4vw 20px; background: #fff; border-bottom: 1px solid #e2ecf3;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: 14px 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  border-radius: 12px; transition: background-color 0.2s ease, color 0.2s ease;
}
.mobile-nav-link:hover { background: var(--ice); color: var(--blue-dark); }

/* ============ Hero ============ */
.hero {
  position: relative; padding: calc(var(--header-h) + 44px) 0 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--grey) 100%);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-ring {
  position: absolute; border-radius: 50%; border: 1.5px solid rgba(0, 160, 227, 0.16);
}
.hero-ring-1 { width: 560px; height: 560px; top: -180px; right: -120px; }
.hero-ring-2 { width: 340px; height: 340px; top: -60px; right: 40px; border-color: rgba(0, 160, 227, 0.1); }
.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(6, 42, 69, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, black 0%, transparent 60%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 60%);
}

.hero-intro { position: relative; text-align: left; max-width: 860px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue-dark); background: var(--ice); border: 1px solid #d3e9f6;
  padding: 9px 18px; border-radius: 999px; margin-bottom: 28px;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 160, 227, 0.45); }
  50% { box-shadow: 0 0 0 7px rgba(0, 160, 227, 0); }
}

.hero-title {
  font-family: var(--font-display); font-stretch: 118%; font-weight: 900;
  font-size: clamp(2.9rem, 8vw, 6.2rem);
  line-height: 0.98; letter-spacing: -0.015em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 26px;
}
.line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line-inner { display: inline-block; will-change: transform; }
.line-accent { color: var(--blue); }
.hero-title sup, .final-title sup, .panel-title sup, .chapter-title sup {
  font-size: 0.3em; font-weight: 700; vertical-align: super; letter-spacing: 0;
}

.hero-copy { font-size: 1.13rem; color: #3d556c; max-width: 560px; margin-bottom: 26px; }

.hero-period {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--navy); color: #cfe8f7; font-size: 0.95rem;
  padding: 13px 22px; border-radius: 14px;
}
.hero-period strong { color: #fff; font-weight: 700; }
.hero-period .icon { color: var(--blue); width: 20px; height: 20px; }

/* ---- Hero panels ---- */
.hero-panels {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
}
.panel {
  position: relative; padding: 56px 5vw;
  min-height: calc(100vh - var(--header-h));
  display: flex; flex-direction: column; gap: 30px;
  justify-content: center; align-items: center; overflow: hidden;
}
.panel > * { width: min(100%, 640px); }

.panel-jadi {
  background: var(--ice);
}
.panel-viral {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.028) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #0a3453 0%, var(--navy-deep) 90%);
  color: #eaf4fb;
}

.panel-head { display: flex; flex-direction: column; }

.panel-tag {
  align-self: flex-start;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue-dark); background: #fff; border: 1px solid #cfe7f5;
  padding: 7px 14px; border-radius: 999px;
}
.panel-tag-light { color: #9fd9f5; background: rgba(255, 255, 255, 0.07); border-color: rgba(159, 217, 245, 0.25); }

.panel-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 1.08; text-transform: uppercase;
  letter-spacing: -0.01em; margin: 18px 0 14px;
}
.panel-jadi .panel-title { color: var(--navy); }

.panel-tagline {
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  color: var(--blue); letter-spacing: 0.02em; margin-bottom: 12px;
}
.panel-viral .panel-tagline { color: #6fd0f7; }

.panel-desc { color: #3d556c; font-size: 0.98rem; }
.panel-viral .panel-desc { color: #b8d4e6; }
.panel-desc strong { color: inherit; }

/* ---- Before / After ---- */
.before-after { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ba-item {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3.4;
  box-shadow: 0 12px 28px rgba(6, 42, 69, 0.14);
}
.ba-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.ba-item:first-child img { filter: saturate(0.55) contrast(0.95); }
.before-after:hover .ba-item img { transform: scale(1.06); }

.ba-label {
  position: absolute; left: 10px; bottom: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.ba-label-before { background: rgba(6, 42, 69, 0.85); color: #fff; }
.ba-label-after { background: var(--blue); color: #fff; }

.ba-arrow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--blue-dark);
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(6, 42, 69, 0.22);
  z-index: 2;
}
.ba-arrow svg { width: 20px; height: 20px; }

/* ---- Phone scene ---- */
.phone-scene { position: relative; display: grid; place-items: center; padding: 6px 0 2px; }
.hero-phone-img {
  width: min(320px, 86%); border-radius: 26px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: rotate(-2.5deg);
  transition: transform 0.6s var(--ease-out);
}
.panel-viral:hover .hero-phone-img { transform: rotate(0deg) translateY(-4px); }

/* ---- Panel prize / actions ---- */
.panel-prize {
  display: flex; flex-direction: column; gap: 2px;
  border-top: 1px dashed #bcd9ea; padding-top: 22px;
}
.panel-prize-light { border-top-color: rgba(159, 217, 245, 0.25); }
.prize-amount {
  font-family: var(--font-display); font-stretch: 116%; font-weight: 900;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem); color: var(--navy); line-height: 1;
}
.panel-prize-light .prize-amount { color: #fff; }
.prize-amount small {
  font-size: 0.42em; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-dark); margin-left: 4px;
}
.panel-prize-light .prize-amount small { color: #6fd0f7; }
.prize-note { font-size: 0.88rem; font-weight: 600; color: var(--muted); }
.panel-prize-light .prize-note { color: #9fc2d9; }

.panel-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.scroll-cue { display: none; }

/* ============ Marquee ============ */
.marquee {
  background: var(--blue); color: #fff; overflow: hidden;
  padding: 18px 0; border-block: 1px solid rgba(255, 255, 255, 0.2);
}
.marquee-track {
  display: flex; align-items: center; gap: 34px; width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-display); font-stretch: 114%; font-weight: 800;
  font-size: 1.05rem; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
}
.marquee-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.55); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Chapters ============ */
.chapter { position: relative; padding: 130px 0; overflow: hidden; }
.chapter-jadi { background: var(--white); }
.chapter-viral {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.022) 0 2px, transparent 2px 16px),
    linear-gradient(170deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #eaf4fb;
}

.chapter-ghost {
  position: absolute; top: 40px; right: -1%;
  font-family: var(--font-display); font-stretch: 120%; font-weight: 900;
  font-size: clamp(11rem, 26vw, 24rem); line-height: 0.8;
  color: transparent; -webkit-text-stroke: 1.5px rgba(0, 160, 227, 0.14);
  pointer-events: none; user-select: none;
}
.chapter-ghost-dark { -webkit-text-stroke-color: rgba(111, 208, 247, 0.12); }

.chapter-head { max-width: 640px; margin-bottom: 64px; }
.chapter-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue-dark); margin-bottom: 20px;
}
.chapter-eyebrow::after { content: ""; height: 1.5px; width: 64px; background: currentColor; opacity: 0.5; }
.chapter-eyebrow-dark { color: #6fd0f7; }
.chapter-num {
  background: var(--blue); color: #fff; padding: 5px 12px; border-radius: 999px;
  letter-spacing: 0.12em; font-size: 0.7rem;
}

.chapter-title {
  font-family: var(--font-display); font-stretch: 116%; font-weight: 900;
  font-size: clamp(2.3rem, 5vw, 3.9rem); line-height: 1.06; text-transform: uppercase;
  letter-spacing: -0.01em; color: var(--navy); margin-bottom: 18px;
}
.chapter-viral .chapter-title { color: #fff; }

.chapter-sub { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--blue-dark); margin-bottom: 16px; }
.chapter-sub-accent { color: #6fd0f7; }
.chapter-desc { color: #3d556c; max-width: 540px; }
.chapter-desc-dark { color: #b8d4e6; }

/* ---- Prize ticket (Kasi Jadi) ---- */
.prize-ticket {
  position: relative; display: grid; grid-template-columns: 1fr auto;
  background: var(--ice); border: 1px solid #d6eaf7; border-radius: 24px;
  margin-bottom: 90px; overflow: hidden;
  box-shadow: 0 24px 50px rgba(6, 42, 69, 0.08);
}
.ticket-main { padding: 44px 48px; display: flex; flex-direction: column; gap: 4px; }
.ticket-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.ticket-amount {
  font-family: var(--font-display); font-stretch: 120%; font-weight: 900;
  font-size: clamp(3rem, 7vw, 5rem); line-height: 0.95; color: var(--navy);
}
.ticket-prize-name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-dark);
}
.ticket-note { margin-top: 12px; color: #3d556c; font-size: 0.95rem; }

.ticket-stub {
  display: grid; place-items: center; padding: 44px 40px;
  border-left: 2px dashed #b4d6ea; position: relative;
}
.ticket-stub::before, .ticket-stub::after {
  content: ""; position: absolute; left: -13px; width: 24px; height: 24px;
  border-radius: 50%; background: var(--white); border: 1px solid #d6eaf7;
}
.ticket-stub::before { top: -13px; }
.ticket-stub::after { bottom: -13px; }

.ticket-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy);
  background: #fff; border: 1px solid #cfe7f5; padding: 14px 22px; border-radius: 16px;
  box-shadow: 0 10px 24px rgba(6, 42, 69, 0.08);
}
.ticket-badge .icon { color: var(--blue); width: 22px; height: 22px; }

/* ---- Prize stage (Kasi Viral) ---- */
.prize-stage {
  position: relative; margin-bottom: 90px; border-radius: 28px; overflow: hidden;
  background: linear-gradient(140deg, rgba(0, 160, 227, 0.2), rgba(0, 160, 227, 0.04)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(111, 208, 247, 0.22);
}
.prize-stage-inner {
  position: relative; z-index: 2; padding: 70px 48px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
}
.ticket-label-dark { color: #8fb9d2; }
.stage-amount {
  font-family: var(--font-display); font-stretch: 122%; font-weight: 900;
  font-size: clamp(3.6rem, 10vw, 8.2rem); line-height: 0.95; color: #fff;
  text-shadow: 0 0 60px rgba(0, 160, 227, 0.45);
}
.stage-prize-name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: #6fd0f7;
}
.stage-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.stage-pill {
  font-family: var(--font-display); font-weight: 800; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--blue); color: #fff; padding: 11px 20px; border-radius: 999px;
}
.stage-pill-outline { background: transparent; border: 1.5px solid rgba(111, 208, 247, 0.45); color: #9fd9f5; }

.stage-ring {
  position: absolute; right: -90px; top: 50%; transform: translateY(-50%);
  width: 380px; height: 380px; border-radius: 50%;
  border: 1.5px solid rgba(111, 208, 247, 0.2);
}
.stage-ring-2 { width: 240px; height: 240px; right: -20px; border-color: rgba(111, 208, 247, 0.12); }

/* ---- Steps ---- */
.how-title {
  font-family: var(--font-display); font-stretch: 114%; font-weight: 900;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); text-transform: uppercase;
  color: var(--navy); margin-bottom: 34px;
}
.how-title-dark { color: #fff; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 64px; }
.step-card {
  position: relative; background: var(--grey); border: 1px solid #e6edf3;
  border-radius: var(--radius); padding: 30px 26px 28px; overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.3s ease;
}
.step-card::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 4px;
  background: var(--blue); transform: scaleY(0); transform-origin: top;
  transition: transform 0.45s var(--ease-out);
}
.step-card:hover { transform: translateY(-7px); box-shadow: 0 22px 44px rgba(6, 42, 69, 0.1); border-color: #d3e9f6; }
.step-card:hover::before { transform: scaleY(1); }

.steps-grid-dark .step-card { background: rgba(255, 255, 255, 0.05); border-color: rgba(111, 208, 247, 0.16); }
.steps-grid-dark .step-card:hover { box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35); border-color: rgba(111, 208, 247, 0.35); }

.step-num {
  font-family: var(--font-display); font-stretch: 120%; font-weight: 900;
  font-size: 3rem; line-height: 1; color: transparent;
  -webkit-text-stroke: 1.4px rgba(0, 160, 227, 0.5); margin-bottom: 18px; display: block;
}
.step-icon {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: var(--ice); color: var(--blue-dark); margin-bottom: 18px;
  border: 1px solid #d3e9f6;
}
.steps-grid-dark .step-icon { background: rgba(0, 160, 227, 0.14); color: #6fd0f7; border-color: rgba(111, 208, 247, 0.25); }
.step-icon .icon { width: 22px; height: 22px; }

.step-title {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  color: var(--navy); margin-bottom: 8px; line-height: 1.3;
}
.steps-grid-dark .step-title { color: #fff; }
.step-text { font-size: 0.9rem; color: #4b657d; }
.steps-grid-dark .step-text { color: #a9c6da; }
.step-text strong { color: inherit; }

.step-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.step-chip {
  font-size: 0.78rem; font-weight: 700; padding: 6px 12px; border-radius: 999px;
  background: rgba(0, 160, 227, 0.12); color: var(--blue-dark); border: 1px solid rgba(0, 160, 227, 0.25);
}
.steps-grid-dark .step-chip { background: rgba(0, 160, 227, 0.16); color: #8fd8f8; border-color: rgba(111, 208, 247, 0.3); }

.step-list { margin-top: 12px; display: flex; flex-direction: column; gap: 7px; }
.step-list li {
  position: relative; padding-left: 20px; font-size: 0.88rem; color: #4b657d;
}
.steps-grid-dark .step-list li { color: #a9c6da; }
.step-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue);
}

/* ---- Chapter CTA ---- */
.chapter-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 90px; }
.cta-hint { font-size: 0.9rem; color: var(--muted); max-width: 420px; }
.cta-hint-dark { color: #8fb9d2; }

/* ---- FAQ ---- */
.faq-block { max-width: 780px; }
.faq-title {
  font-family: var(--font-display); font-stretch: 112%; font-weight: 900;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem); text-transform: uppercase;
  color: var(--navy); margin-bottom: 26px;
}
.faq-block-dark .faq-title { color: #fff; }

.faq-item { border-bottom: 1px solid #e2ecf3; }
.faq-block-dark .faq-item { border-bottom-color: rgba(111, 208, 247, 0.16); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  text-align: left; padding: 22px 4px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--navy);
  transition: color 0.25s ease;
}
.faq-block-dark .faq-q { color: #eaf4fb; }
.faq-q:hover { color: var(--blue-dark); }
.faq-block-dark .faq-q:hover { color: #6fd0f7; }

.faq-indicator {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ice); color: var(--blue-dark);
  transition: transform 0.4s var(--ease-out), background-color 0.3s ease, color 0.3s ease;
}
.faq-block-dark .faq-indicator { background: rgba(0, 160, 227, 0.14); color: #6fd0f7; }
.faq-indicator svg { width: 16px; height: 16px; }
.faq-item.open .faq-indicator { transform: rotate(45deg); background: var(--blue); color: #fff; }

.faq-a { height: 0; overflow: hidden; transition: height 0.45s var(--ease-out); }
.faq-a-inner { padding: 2px 44px 24px 4px; color: #4b657d; font-size: 0.95rem; }
.faq-block-dark .faq-a-inner { color: #a9c6da; }
.faq-a-inner ul { margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.faq-a-inner ul li { position: relative; padding-left: 20px; }
.faq-a-inner ul li::before {
  content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--blue);
}

.terms-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 26px;
  font-weight: 700; font-size: 0.9rem; color: var(--blue-dark);
  border-bottom: 1.5px solid transparent; padding-bottom: 2px;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.terms-link:hover { border-color: currentColor; }
.terms-link-dark { color: #6fd0f7; }

/* ============ Final CTA ============ */
.final-cta {
  position: relative; padding: 130px 0 140px; overflow: hidden;
  background: linear-gradient(180deg, var(--grey), var(--ice));
}
.final-head { max-width: 720px; margin-bottom: 60px; }
.final-title {
  font-family: var(--font-display); font-stretch: 118%; font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1; text-transform: uppercase;
  letter-spacing: -0.01em; color: var(--navy); margin-bottom: 18px;
}
.final-sub { font-size: 1.1rem; color: #3d556c; }

.final-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.final-card {
  border-radius: 26px; padding: 46px 42px; display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.final-card:hover { transform: translateY(-7px); }
.final-card h3 {
  font-family: var(--font-display); font-stretch: 114%; font-weight: 900;
  font-size: 1.7rem; text-transform: uppercase; line-height: 1.1; margin: 8px 0 4px;
}
.final-card-jadi { background: #fff; border: 1px solid #d6eaf7; box-shadow: 0 24px 54px rgba(6, 42, 69, 0.09); color: var(--ink); }
.final-card-jadi h3 { color: var(--navy); }
.final-card-viral {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #0a3453, var(--navy-deep));
  color: #eaf4fb; box-shadow: 0 24px 54px rgba(4, 24, 43, 0.35);
}
.final-card-lead { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--blue-dark); }
.final-card-viral .final-card-lead { color: #6fd0f7; }
.final-card-copy { color: #4b657d; font-size: 0.96rem; margin-bottom: 22px; }
.final-card-viral .final-card-copy { color: #a9c6da; }
.final-card .btn { margin-top: auto; }

/* ============ Footer ============ */
.site-footer { background: var(--navy-deep); color: #9fc2d9; padding: 56px 0 40px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.footer-logo { font-size: 1.9rem; }
.footer-brand p { font-size: 0.9rem; margin-top: 6px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a, .footer-terms {
  font-size: 0.9rem; font-weight: 600; color: #cfe8f7;
  border-bottom: 1.5px solid transparent; transition: color 0.25s ease, border-color 0.25s ease;
}
.footer-links a:hover, .footer-terms:hover { color: var(--blue); border-color: var(--blue); }
.footer-copy { font-size: 0.8rem; color: #6d93ad; }

/* ============ Sticky mobile CTA ============ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 10px; padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(14px);
  border-top: 1px solid #e2ecf3;
  transform: translateY(0); transition: transform 0.45s var(--ease-out);
}
.sticky-cta.hidden-cta { transform: translateY(110%); }
.sticky-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800; font-size: 0.95rem;
  padding: 14px 10px; border-radius: 14px; color: #fff;
}
.sticky-whatsapp { background: var(--wa); }
.sticky-tiktok { background: var(--ink); }

/* ============ Modal ============ */
.modal { position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-overlay { position: absolute; inset: 0; background: rgba(4, 24, 43, 0.6); backdrop-filter: blur(6px); }
.modal-card {
  position: relative; width: min(760px, 100%); max-height: 84vh;
  display: flex; flex-direction: column;
  background: #fff; border-radius: 24px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(4, 24, 43, 0.4);
  animation: modal-in 0.45s var(--ease-out);
}
@keyframes modal-in { from { opacity: 0; transform: translateY(30px) scale(0.97); } to { opacity: 1; transform: none; } }
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px 16px;
}
.modal-head h3 {
  font-family: var(--font-display); font-stretch: 112%; font-weight: 900;
  font-size: 1.35rem; text-transform: uppercase; color: var(--navy);
}
.modal-close {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grey); color: var(--navy); transition: background-color 0.25s ease, transform 0.3s var(--ease-out);
}
.modal-close:hover { background: var(--ice); transform: rotate(90deg); }

.modal-tabs { display: flex; gap: 8px; padding: 0 28px 14px; border-bottom: 1px solid #e6edf3; }
.modal-tab {
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  padding: 9px 18px; border-radius: 999px; color: var(--muted);
  transition: background-color 0.25s ease, color 0.25s ease;
}
.modal-tab.active { background: var(--navy); color: #fff; }

.modal-body { padding: 24px 28px 32px; overflow-y: auto; color: #3d556c; font-size: 0.93rem; }
.modal-body h4 {
  font-family: var(--font-display); font-weight: 800; font-size: 1.02rem;
  color: var(--navy); margin: 22px 0 10px;
}
.modal-body h4:first-child { margin-top: 0; }
.modal-body ol { list-style: decimal; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.modal-body ul { list-style: disc; padding-left: 22px; display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.modal-body p + h4 { margin-top: 26px; }
.modal-body strong { color: var(--navy); }

/* ============ Responsive ============ */
@media (max-width: 1080px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .main-nav { display: none; }
  .btn-header { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding-top: calc(var(--header-h) + 32px); }
  .hero-panels { grid-template-columns: 1fr; }
  .panel { padding: 48px 24px; min-height: auto; }
  .panel > * { width: 100%; }
  .prize-ticket { grid-template-columns: 1fr; }
  .ticket-stub { border-left: none; border-top: 2px dashed #b4d6ea; padding: 30px; }
  .ticket-stub::before, .ticket-stub::after { display: none; }
  .final-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 0; }
  .chapter { padding: 96px 0; }
  .chapter-ghost { font-size: 11rem; top: 20px; }
}

@media (max-width: 640px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.5rem, 11.5vw, 3.4rem); }
  .hero-copy { font-size: 1rem; }
  .hero-period { flex-direction: row; font-size: 0.85rem; padding: 12px 16px; }
  .panel-actions .btn { width: 100%; }
  .chapter-head { margin-bottom: 44px; }
  .prize-stage-inner { padding: 48px 26px; }
  .ticket-main { padding: 34px 28px; }
  .chapter-cta .btn-xl { width: 100%; }
  .final-card { padding: 34px 26px; }
  .chip-views { right: 6px; }
  .chip-like { right: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
imation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
