/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #1a2540; overflow-x: hidden; background: #fff; }
ul { list-style: none; }
a { text-decoration: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* =====================================================
   VARIABLES
   ===================================================== */
:root {
    --red: #ff125d;
    --red-light: #ff6b8a;
    --navy: #0d1b2e;
    --navy-mid: #1a2540;
    --white: #ffffff;
    --bg-light: #f7f9fc;
    --green: #10b981;
    --orange: #f59e0b;
    --blue: #3b82f6;
    --text-muted: #5a6a7e;
    --border: #e8edf5;
    --radius-card: 18px;
    --shadow-card: 0 8px 32px rgba(26, 37, 64, 0.09);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
@keyframes boltFloat {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50%       { transform: translateY(-14px) rotate(4deg); }
}
@keyframes bellSwing {
    0%, 100% { transform: rotate(0deg); }
    25%       { transform: rotate(12deg); }
    75%       { transform: rotate(-12deg); }
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}
@keyframes pulseRed {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,18,93,0.4); }
    50%       { box-shadow: 0 0 0 12px rgba(255,18,93,0); }
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(26,37,64,0.1); }

.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-logo { height: 36px; object-fit: contain; flex-shrink: 0; }

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0 auto;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-mid);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }

.btn-nav {
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 22px;
    border-radius: 50px;
    white-space: nowrap;
    transition: transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 4px 14px rgba(255,18,93,0.35);
    flex-shrink: 0;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,18,93,0.45); }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy-mid);
    border-radius: 4px;
    transition: 0.3s;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    /* Hapus overflow:hidden agar floating cards tidak kepotong */
    overflow: visible;
}

.hero-bg {
    position: absolute; inset: 0;
    background: url('assets/hero-bg1.png') center center / cover no-repeat;
    z-index: 0;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,25,45,0.82) 0%, rgba(10,25,45,0.55) 50%, rgba(10,25,45,0.72) 100%);
    z-index: 1;
}

/* Floating deco */
.deco { position: absolute; pointer-events: none; z-index: 5; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.2)); }
.deco-bolt-l { width: 52px; top: 18%; left: 4%; animation: boltFloat 4s ease-in-out infinite; }
.deco-bell { width: 56px; bottom: 14%; left: 8%; animation: bellSwing 3.3s ease-in-out infinite; }

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 100px;
}

/* Hero Left */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeSlideUp 0.8s ease both;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy-mid);
    margin-bottom: 22px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.hero-hook {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-hook-accent {
    display: block;
    color: #ffd94a;
    -webkit-text-fill-color: #ffd94a;
}

.hero-sub {
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}
.hero-sub strong { color: #fff; }
.hero-sub-highlight {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    padding: 2px 12px;
    border-radius: 6px;
    font-size: 0.95em;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 28px rgba(255,18,93,0.45);
    transition: transform 0.18s, box-shadow 0.18s;
    margin-bottom: 18px;
    animation: pulseRed 2.5s ease infinite;
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(255,18,93,0.55); }
.btn-arrow { display: inline-block; transition: transform 0.2s; }
.btn-hero:hover .btn-arrow { transform: translateX(4px); }

.hero-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.68);
}
.trust-check { color: var(--green); width: 1em; height: 1em; }
.trust-alert { color: var(--orange); width: 1em; height: 1em; }
.trust-dot { color: rgba(255,255,255,0.3); }

/* Hero Right */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 580px;
    /* Padding biar hcard tidak kepotong di tepi */
    padding: 60px 52px;
    animation: fadeSlideUp 0.9s 0.1s ease both;
}

.hero-photo-placeholder {
    width: 320px;
    height: 420px;
    background: rgba(255,255,255,0.08);
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.6;
    backdrop-filter: blur(8px);
}
/* When user provides actual photo, add class .has-photo to .hero-right and use this: */
.hero-photo {
    width: 100%;
    max-width: 460px;
    height: auto;
    object-fit: contain;
    animation: floatY 4s ease-in-out infinite;
    filter: drop-shadow(0 28px 52px rgba(0,0,0,0.4));
    border-radius: 24px;
    position: relative;
    z-index: 2;
}

/* Floating stat cards */
.hcard {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 28px rgba(26,37,64,0.15);
    z-index: 20;
    min-width: 170px;
    animation: floatY 3.5s ease-in-out infinite;
}
.hcard-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.hcard-icon svg { width: 20px; height: 20px; }
.hcard-num { font-size: 1rem; font-weight: 800; color: var(--navy-mid); line-height: 1.1; }
.hcard-lbl { font-size: 0.72rem; color: var(--text-muted); }

/* hcard positions — dalam bounds agar tidak kepotong */
.hcard-gmv     { top: 2%;    left: 0;   animation-delay: 0s; }
.hcard-brand   { top: 25%;   right: 0;  animation-delay: 0.5s; }
.hcard-creator { bottom: 25%; left: 0;  animation-delay: 1s; }
.hcard-support { bottom: 2%;  right: 0; animation-delay: 1.5s; }

.hero-deco-heart-r { position: absolute; width: 44px; top: 12%; right: 8%; animation: floatY 3s ease-in-out infinite; }
.hero-deco-heart-b { position: absolute; width: 36px; bottom: 22%; left: 6%; animation: floatY 4s ease-in-out infinite reverse; }
.hero-deco-bolt { position: absolute; width: 38px; top: 55%; right: 4%; animation: boltFloat 3.5s ease-in-out infinite; }

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
    background: #fff;
    border-radius: 28px 28px 0 0;
    margin-top: -32px;
    position: relative;
    z-index: 20;
    padding: 40px 0;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.08);
}
.stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 12px;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 160px;
    justify-content: center;
}
.stat-img { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.stat-num { font-size: 1.25rem; font-weight: 800; color: var(--navy-mid); line-height: 1; }
.stat-lbl { font-size: 0.78rem; color: var(--text-muted); margin-top: 3px; }
.stat-divider { width: 1px; height: 52px; background: var(--border); flex-shrink: 0; }

/* =====================================================
   BENEFITS STRIP
   ===================================================== */
.benefits-strip {
    background: var(--bg-light);
    padding: 44px 0;
    border-top: 1px solid var(--border);
}
.benefits-grid {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}
.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    flex: 1;
    min-width: 130px;
}
.benefit-img { width: 80px; height: 80px; object-fit: contain; display: block; margin: 0 auto; }
.b-label { font-size: 0.82rem; font-weight: 600; color: var(--navy-mid); line-height: 1.4; }

/* =====================================================
   PAIN POINTS
   ===================================================== */
/* Pain Section — new bullet list layout */
.pain-section {
    background: var(--navy);
    overflow: hidden;
}

/* Top body — dark navy with heading + list */
.pain-body {
    background: var(--navy);
    padding: 80px 0 72px;
}

.pain-heading {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.pain-list {
    list-style: disc;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-left: 24px;
}

.pain-list li {
    font-size: clamp(0.98rem, 1.8vw, 1.1rem);
    color: rgba(255,255,255,0.88);
    line-height: 1.75;
    font-weight: 400;
}

.pain-list li::marker {
    color: #fff;
    font-size: 1.1em;
}

/* Highlighted keywords — kuning agar kontras & mudah dibaca */
.pain-hl {
    color: #ffd94a;
    font-weight: 700;
}

/* Bottom callout bar — vivid navy-blue, persis seperti screenshot */
.pain-callout {
    background: #1a3a8a;
    padding: 36px 0;
    text-align: center;
}

.pain-callout-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.pain-callout-text {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.pain-callout-pill {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 800;
    padding: 10px 36px;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(255,18,93,0.45);
    line-height: 1.3;
}

/* =====================================================
   ABOUT / SOLUTION SECTION
   ===================================================== */
.about-section {
    background: #fff;
    padding: 100px 0;
    border-top: 1px solid var(--border);
    overflow: hidden;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left */
.chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: #e6f4ff; color: #0076a8;
    font-size: 0.78rem; font-weight: 700;
    padding: 5px 16px; border-radius: 20px;
    margin-bottom: 18px;
}
.solution-chip { background: linear-gradient(135deg,#fff4e6,#ffecd2); color: #c05500; border: 1px solid #f5a623; }
.text-brand { color: var(--red); }

.about-left h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; color: var(--navy-mid); line-height: 1.2; margin-bottom: 20px; }
.about-left p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }

.about-checklist { margin: 20px 0 28px; }
.about-checklist li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.92rem; color: var(--navy-mid);
    padding: 8px 0; border-bottom: 1px solid var(--border);
    font-weight: 500;
}
.about-checklist li:last-child { border-bottom: none; }
.check-green { color: var(--green); flex-shrink: 0; }

.btn-about {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: #fff;
    font-weight: 700; font-size: 1rem;
    padding: 14px 36px; border-radius: 50px;
    box-shadow: 0 6px 20px rgba(255,18,93,0.38);
    transition: transform 0.18s, box-shadow 0.18s;
}
.btn-about:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,18,93,0.5); }

/* Right - Visual */
.about-right { display: flex; justify-content: center; align-items: center; }
.about-circle-wrap {
    position: relative;
    width: 100%;
    max-width: 460px;
    display: flex; align-items: center; justify-content: center;
}
.about-photo-placeholder {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #f7f9fc, #e8edf5);
    border: 3px dashed var(--border);
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--text-muted);
    font-size: 0.9rem; line-height: 1.7;
}
.about-photo {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 40px rgba(26,37,64,0.15));
    display: block;
}
.about-circle-badge {
    position: absolute;
    bottom: 24px; right: 10px;
    background: linear-gradient(135deg, var(--red), #c00048);
    color: #fff;
    border-radius: 50%;
    width: 110px; height: 110px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    box-shadow: 0 8px 24px rgba(255,18,93,0.4);
    animation: floatY 3s ease-in-out infinite;
}
.acb-logo { font-size: 1rem; font-weight: 900; letter-spacing: -1px; }
.acb-text { font-size: 0.6rem; font-weight: 700; line-height: 1.3; letter-spacing: 0.05em; }
.about-deco-heart { position: absolute; top: 10%; right: 5%; width: 44px; animation: floatY 3.5s ease-in-out infinite; }
.about-deco-bolt { position: absolute; bottom: 15%; left: 4%; width: 38px; animation: boltFloat 4s ease-in-out infinite; }

/* =====================================================
   CREATOR EVENT SECTION
   ===================================================== */
.event-section {
    background: #1a3a8a;
    padding: 80px 0 72px;
    text-align: center;
    overflow: hidden;
}

/* Judul OUR CREATOR Event */
.event-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 56px;
    line-height: 1.1;
}

/* "Event" dalam gaya script/kursif, warna kuning */
.event-title-script {
    font-family: 'Pacifico', 'Dancing Script', 'Caveat', cursive;
    font-style: normal;
    font-weight: 400;
    color: #ffd94a;
    text-transform: none;
    font-size: 1.15em;
    letter-spacing: 0;
}

/* Grid 4 kartu */
.event-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 52px;
}

/* Kartu event */
.event-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    transition: transform 0.25s;
}
.event-card:hover { transform: translateY(-6px); }

/* Area foto */
.event-card-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    background: rgba(255,255,255,0.12);
    border: 3px solid rgba(255,255,255,0.25);
    border-bottom: none;
}
.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder saat foto belum ada */
.event-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 2rem;
    line-height: 1.7;
    text-align: center;
    gap: 4px;
    border: 2px dashed rgba(255,255,255,0.25);
    border-radius: 18px 18px 0 0;
}
.event-img-placeholder small {
    font-size: 0.72rem;
    opacity: 0.75;
    line-height: 1.5;
}

/* Label merah di bawah foto */
.event-card-label {
    background: var(--red);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: 0 0 14px 14px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 14px rgba(255,18,93,0.35);
    letter-spacing: 0.01em;
}

/* Tagline bawah */
.event-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
}

/* ===== EVENT SLIDESHOW ===== */
.ev-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}
.ev-slides {
    width: 100%;
    height: 100%;
}
.ev-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 18px 18px 0 0;
}
.ev-slide.active {
    opacity: 1;
    position: relative;
}
/* Counter badge: "1/6" di pojok kanan atas */
.ev-counter {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 10;
    letter-spacing: 0.04em;
}
/* Dots di bawah */
.ev-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
}
.ev-dot {
    width: 7px;
    height: 7px;
    background: rgba(255,255,255,0.45);
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
}
.ev-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* Responsive event cards */
@media (max-width: 860px) {
    .event-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .event-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .event-title { font-size: 1.8rem; }
}

/* =====================================================
   BENEFIT ORBIT SECTION
   ===================================================== */
.benefit-section {
    background: var(--navy);
    padding: 80px 0 72px;
}

/* Heading */
.benefit-heading {
    text-align: center;
    margin-bottom: 52px;
}
.benefit-heading h2 {
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.text-brand-white {
    color: var(--red);
}

/* 3-column orbit grid */
.benefit-orbit {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 56px;
}

/* Pills column (kiri & kanan) */
.orbit-pills {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.orbit-left { align-items: flex-end; }
.orbit-right { align-items: flex-start; }

/* Tiap benefit pill */
.bpill {
    background: var(--red);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
    padding: 14px 22px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255,18,93,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    max-width: 230px;
    width: 100%;
}
.bpill:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 28px rgba(255,18,93,0.5);
}

/* Center photo */
.orbit-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.orbit-photo {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    animation: floatY 4s ease-in-out infinite;
}

/* CTA Strip bawah */
.benefit-cta-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 36px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    max-width: 560px;
    margin: 0 auto;
}
.benefit-cta-tag {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    letter-spacing: 0.02em;
}
.benefit-cta-gratis {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 16px;
    padding: 12px 48px;
    letter-spacing: 0.02em;
    width: 100%;
    text-align: center;
}
.benefit-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(255,18,93,0.4);
    transition: transform 0.18s, box-shadow 0.18s;
}
.benefit-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255,18,93,0.55);
}

/* Responsive orbit */
@media (max-width: 860px) {
    .benefit-orbit {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .orbit-center { order: -1; }
    .orbit-left, .orbit-right {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .bpill { max-width: 200px; font-size: 0.85rem; padding: 12px 16px; }
    .orbit-photo { max-width: 260px; }
}
@media (max-width: 480px) {
    .orbit-left, .orbit-right { flex-direction: column; align-items: center; }
    .bpill { max-width: 100%; }
}

/* =====================================================
   KONTEN CREATOR SECTION — CAROUSEL
   ===================================================== */
.creator-content-section {
    background: var(--bg-light);
    padding: 80px 0 72px;
    border-top: 1px solid var(--border);
}
.creator-content-header {
    text-align: center;
    margin-bottom: 48px;
}
.creator-content-title {
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    font-weight: 800;
    color: var(--navy-mid);
    line-height: 1.2;
    margin-bottom: 14px;
}
.creator-content-accent { color: var(--red); }
.creator-content-sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Carousel outer: arrow | viewport | arrow */
.ig-slider-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Arrow buttons */
.ig-arrow-btn {
    flex-shrink: 0;
    background: var(--red);
    color: #fff;
    border: none;
    width: 48px; height: 48px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(255,18,93,0.4);
    transition: transform 0.15s, box-shadow 0.15s;
    user-select: none;
}
.ig-arrow-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(255,18,93,0.55);
}

/* Clipping viewport */
.ig-viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

/* Track: 2-row grid that flows columns */
.ig-track {
    display: grid;
    grid-template-rows: repeat(2, auto);  /* 2 baris */
    grid-auto-flow: column;               /* item mengalir ke kolom */
    grid-auto-columns: var(--ig-col-w, 300px);
    gap: 16px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Each item */
.ig-item {
    width: 100%;
    min-width: 0;
}
/* Override Instagram blockquote sizing */
.ig-item .instagram-media {
    margin: 0 !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(26,37,64,0.1) !important;
}

/* Dot indicators */
.ig-dot-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.ig-dot-btn {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}
.ig-dot-btn.active {
    background: var(--red);
    transform: scale(1.4);
}

/* === MOBILE: single row, 1 item per slide === */
@media (max-width: 767px) {
    .ig-track {
        grid-template-rows: 1fr;   /* 1 baris saja */
        grid-auto-columns: var(--ig-col-w, 280px);
    }
    .ig-arrow-btn { width: 38px; height: 38px; font-size: 1.6rem; }
}

/* =====================================================
   FAQ SECTION
   ===================================================== */

.faq-section {
    background: #fff;
    padding: 90px 0;
    border-top: 1px solid var(--border);
}
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy-mid); margin-top: 14px; }

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-item.open { border-color: var(--red); }
.faq-q {
    width: 100%; text-align: left;
    background: #fff; border: none; cursor: pointer;
    padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-size: 0.96rem; font-weight: 600; color: var(--navy-mid);
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s;
}
.faq-q:hover { background: var(--bg-light); }
.faq-item.open .faq-q { background: #fff0f3; color: var(--red); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2f4a 100%);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}
.cta-bolt-l { position: absolute; left: 5%; top: 20%; width: 64px; animation: boltFloat 4s ease-in-out infinite; pointer-events: none; }
.cta-bolt-r { position: absolute; right: 5%; bottom: 20%; width: 72px; animation: boltFloat 3.5s ease-in-out infinite reverse; pointer-events: none; }
.cta-heart-l { position: absolute; left: 10%; bottom: 24%; width: 52px; animation: floatY 3.5s ease-in-out infinite; pointer-events: none; }
.cta-heart-r { position: absolute; right: 10%; top: 24%; width: 44px; animation: floatY 4s ease-in-out infinite reverse; pointer-events: none; }

.cta-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.cta-tag {
    display: inline-block;
    background: rgba(255,18,93,0.2);
    border: 1px solid rgba(255,18,93,0.35);
    color: var(--red-light);
    font-size: 0.82rem; font-weight: 600;
    padding: 6px 20px; border-radius: 50px;
    margin-bottom: 22px; letter-spacing: 0.04em;
}
.cta-headline { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 18px; }
.cta-yellow { color: #ffd94a; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 600px; margin-bottom: 36px; }

.btn-cta-big {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: #fff;
    font-weight: 700; font-size: 1.1rem;
    padding: 18px 52px; border-radius: 50px;
    box-shadow: 0 8px 30px rgba(255,18,93,0.45);
    transition: transform 0.18s, box-shadow 0.18s;
    margin-bottom: 20px;
    animation: pulseRed 2.5s ease infinite;
}
.btn-cta-big:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,18,93,0.6); }

.cta-notes { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.cta-notes span { display: flex; align-items: center; gap: 6px; font-size: 0.84rem; color: rgba(255,255,255,0.65); }
.cta-alert { color: var(--orange); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: #f2f5f9;
    padding: 60px 0 0;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.footer-logo { height: 32px; object-fit: contain; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.footer-col h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy-mid); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--text-muted); }
.icon-footer { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* =====================================================
   FLOATING CTA
   ===================================================== */
.float-cta {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
    z-index: 150; display: none;
}
.float-cta a {
    display: flex; align-items: center; gap: 8px;
    background: var(--red); color: #fff;
    font-weight: 700; font-size: 0.95rem;
    padding: 14px 36px; border-radius: 50px;
    box-shadow: 0 8px 24px rgba(255,18,93,0.45);
    animation: pulseRed 2.5s ease infinite;
}
@media (max-width: 768px) { .float-cta { display: block; } }
.float-cta.hidden { display: none !important; }

/* =====================================================
   ICON UTILITIES
   ===================================================== */
.icon-inline { width: 1.2em; height: 1.2em; vertical-align: middle; margin-right: 4px; }
.icon-spin { animation: spin 2s linear infinite; }
.icon-upload-large { width: 48px; height: 48px; color: #1e3a8a; margin: 0 auto; }
.icon-success-large { width: 64px; height: 64px; object-fit: contain; margin: 0 auto; }

/* =====================================================
   MODAL — REGISTRATION
   ===================================================== */
.modal-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(10,25,45,0.7); backdrop-filter: blur(6px);
    display: none; align-items: flex-start; justify-content: center;
    padding: 24px;
    overflow-y: auto;
}
.modal-overlay.show { display: flex; }
.modal-content {
    background: #fff; border-radius: 24px;
    max-width: 680px; width: 100%;
    box-shadow: 0 32px 80px rgba(10,25,45,0.3);
    transform: translateY(30px); opacity: 0;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), opacity 0.4s ease;
    margin: auto;
}
.modal-content.show { transform: translateY(0); opacity: 1; }
.modal-header {
    background: linear-gradient(135deg, var(--navy), #1a2f4a);
    color: #fff; padding: 28px 32px 24px;
    border-radius: 24px 24px 0 0; position: relative;
}
.modal-header h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
.modal-header p { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.btn-close {
    position: absolute; top: 18px; right: 22px;
    background: rgba(255,255,255,0.15); border: none; color: #fff;
    width: 32px; height: 32px; border-radius: 50%;
    font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.btn-close:hover { background: rgba(255,255,255,0.25); }

.modal-body { padding: 28px 32px; }
.form-section { margin-bottom: 28px; }
.section-title { font-size: 0.78rem; font-weight: 700; color: var(--red); letter-spacing: 0.12em; text-transform: uppercase; padding-bottom: 10px; border-bottom: 2px solid var(--red); margin-bottom: 20px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy-mid); margin-bottom: 8px; }
.required { color: var(--red); }
.input-wrapper input, .input-wrapper select, textarea, select {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid var(--border); border-radius: 10px;
    font-family: 'Poppins', sans-serif; font-size: 0.88rem; color: var(--navy-mid);
    background: #fff; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.input-wrapper input:focus, textarea:focus, select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(255,18,93,0.1); }

.prefix-wrapper { display: flex; align-items: stretch; }
.prefix { background: var(--bg-light); border: 1.5px solid var(--border); border-right: none; border-radius: 10px 0 0 10px; padding: 12px 14px; font-size: 0.88rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; display: flex; align-items: center; }
.prefix-wrapper input { border-radius: 0 10px 10px 0; }

.cascading-dropdown { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cascading-dropdown select { width: 100%; }

.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-group label { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 500; cursor: pointer; }
.radio-group input[type="radio"] { accent-color: var(--red); width: 16px; height: 16px; }
.radio-with-input { flex-direction: row; align-items: center; }
.radio-with-input input[type="text"] { flex: 1; border: 1.5px solid var(--border); border-radius: 8px; padding: 6px 12px; margin-left: 6px; font-family: 'Poppins', sans-serif; font-size: 0.85rem; }

.char-count { text-align: right; font-size: 0.78rem; color: var(--text-muted); margin-top: 6px; }

/* File upload */
.file-upload-wrapper {
    border: 2px dashed var(--border); border-radius: 12px; padding: 28px 20px;
    text-align: center; cursor: pointer; position: relative;
    transition: border-color 0.2s, background 0.2s;
}
.file-upload-wrapper:hover { border-color: var(--red); background: #fff8fa; }
.file-upload-wrapper.has-file { border-color: var(--green); background: #f0fff4; }
.file-upload-wrapper input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-top: 10px; }
.file-name-display { font-size: 0.82rem; color: var(--green); margin-top: 8px; font-weight: 600; }

/* Benefit packages */
.benefit-packages { display: flex; flex-direction: column; gap: 12px; }
.package-card { border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; }
.pkg-header { padding: 14px 18px; background: linear-gradient(135deg, var(--navy), #1a2f4a); }
.pkg-title { font-size: 0.9rem; font-weight: 700; color: #fff; }
.package-content { padding: 14px 18px; }
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pkg-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.84rem; color: var(--navy-mid); line-height: 1.5; }
.pkg-list .icon-inline { color: var(--green); flex-shrink: 0; margin-top: 1px; }

/* MCN link */
.mcn-guide-link { font-size: 0.85rem; color: #0076a8; font-weight: 600; }
.mcn-guide-link.disabled-link { color: #aaa; pointer-events: none; opacity: 0.5; }

/* Form footer */
.form-footer { padding: 20px 0 0; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.security-badge { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); }
.btn-submit {
    display: flex; align-items: center; gap: 8px;
    background: var(--red); color: #fff;
    font-weight: 700; font-size: 0.95rem;
    padding: 14px 32px; border-radius: 50px; border: none;
    cursor: pointer; box-shadow: 0 6px 20px rgba(255,18,93,0.38);
    transition: transform 0.18s, box-shadow 0.18s;
    font-family: 'Poppins', sans-serif;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,18,93,0.5); }
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; }

/* =====================================================
   STATUS / SUCCESS OVERLAY
   ===================================================== */
.status-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(10,25,45,0.75); backdrop-filter: blur(8px);
    display: none; align-items: center; justify-content: center;
}
.status-overlay.show { display: flex; }
.status-box { background: #fff; border-radius: 24px; padding: 48px 36px; max-width: 440px; width: 90%; text-align: center; }
.status-box.hidden { display: none; }
.spinner { width: 52px; height: 52px; border: 4px solid var(--border); border-top-color: var(--red); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 20px; }
.status-title { font-size: 1.1rem; font-weight: 700; color: var(--navy-mid); margin-bottom: 10px; }
.status-warning { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.status-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 22px; }
.success-icon { margin-bottom: 20px; }

.btn-wa-confirm {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25d366; color: #fff;
    font-weight: 700; font-size: 0.95rem;
    padding: 13px 28px; border-radius: 50px; width: 100%; justify-content: center;
    box-shadow: 0 6px 18px rgba(37,211,102,0.35);
    transition: transform 0.18s; margin-bottom: 12px;
}
.btn-wa-confirm:hover { transform: translateY(-2px); }
.btn-mcn-guide {
    display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
    background: var(--bg-light); color: var(--navy-mid); border: 1.5px solid var(--border);
    font-size: 0.88rem; font-weight: 600; padding: 11px 24px; border-radius: 50px;
    cursor: pointer; font-family: 'Poppins', sans-serif; margin-bottom: 12px;
    transition: background 0.2s;
}
.btn-mcn-guide:hover { background: #e8edf5; }
.btn-status-close {
    background: none; border: none; cursor: pointer;
    font-size: 0.85rem; color: var(--text-muted); font-family: 'Poppins', sans-serif;
    text-decoration: underline; padding: 4px;
}

/* =====================================================
   MCN GUIDE MODAL
   ===================================================== */
.mcn-body { }
.mcn-tabs-container { padding: 16px 24px 0; }
.mcn-tabs-label { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; font-weight: 500; }
.mcn-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.mcn-tab {
    background: var(--bg-light); border: 1.5px solid var(--border);
    border-radius: 8px; padding: 8px 16px;
    font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
    cursor: pointer; font-family: 'Poppins', sans-serif; transition: all 0.2s;
}
.mcn-tab.active { background: var(--red); border-color: var(--red); color: #fff; }
.mcn-carousel { position: relative; overflow: hidden; padding: 20px 24px; }
.mcn-carousel-track { display: flex; transition: transform 0.4s ease; }
.mcn-slide { min-width: 100%; padding: 0 8px; }
.mcn-slide h4 { font-size: 1rem; font-weight: 700; color: var(--navy-mid); margin-bottom: 8px; }
.mcn-slide p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.mcn-img { width: 100%; max-height: 340px; object-fit: contain; border-radius: 12px; border: 1px solid var(--border); }
.mcn-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.9); border: 1.5px solid var(--border);
    width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
    font-size: 1rem; color: var(--navy-mid);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.mcn-nav-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.mcn-nav-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.prev-btn { left: 8px; }
.next-btn { right: 8px; }
.mcn-dots { text-align: center; margin-top: 14px; display: flex; gap: 6px; justify-content: center; }
.dot { width: 8px; height: 8px; background: var(--border); border-radius: 50%; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.dot.active { background: var(--red); transform: scale(1.3); }
.mcn-footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.btn-mcn-close-action {
    width: 100%; background: var(--red); color: #fff;
    border: none; border-radius: 50px; padding: 13px 24px;
    font-weight: 700; font-size: 0.95rem; cursor: pointer;
    font-family: 'Poppins', sans-serif; transition: transform 0.18s;
}
.btn-mcn-close-action:hover { transform: translateY(-2px); }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; padding-top: 20px; padding-bottom: 40px; }
    .hero-right { display: none; }
    .hero-left { align-items: center; text-align: center; }
    .hero-sub { text-align: center; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-right { display: none; }
    .pain-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fff; padding: 16px 28px 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 12px; }
    .nav-links.open { display: flex; }
    .nav-hamburger { display: flex; }
    .btn-nav { display: none; }
}

@media (max-width: 640px) {
    .pain-grid { grid-template-columns: 1fr; }
    .benefit-grid { grid-template-columns: 1fr; }
    .stats-grid { flex-wrap: wrap; }
    .stat-divider { display: none; }
    .stat-item { min-width: 45%; }
    .cgb-items { flex-direction: column; align-items: flex-start; }
    .cgb-divider { display: none; }
    .cascading-dropdown { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-footer { flex-direction: column; }
    .btn-submit { width: 100%; justify-content: center; }
    .cta-notes { flex-direction: column; align-items: center; gap: 10px; }
    .hero-hook { font-size: 2rem; }
}