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

:root {
    --biru-tua: #1e3a8a;
    --biru-gelap: #0f172a;
    --kuning-spot: #facc15;
    --nav-height: 64px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', sans-serif;
    color: #1e293b;
    background: #fff;
    overflow-x: hidden;
}

/* ─── UTILITY ─────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
@media (min-width: 640px)  { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* ─── FLOATING WA ─────────────────────────── */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: #22c55e;
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(34,197,94,.45);
    text-decoration: none;
    transition: transform .25s, background .25s;
}
.wa-float i { font-size: 24px; }
.wa-float:hover { background: #16a34a; transform: scale(1.1); }
.wa-tooltip {
    position: absolute;
    right: 62px;
    background: var(--biru-tua);
    color: #fff;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
    border: 1px solid #334155;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

@media (min-width: 640px) {
    .wa-float { width: 60px; height: 60px; bottom: 28px; right: 28px; }
    .wa-float i { font-size: 28px; }
}

/* ─── NAV ─────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #f1f5f9;
    height: var(--nav-height);
}
.nav-inner {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.nav-logo { height: 44px; width: auto; }
.nav-logo-fallback {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--biru-tua);
    border-radius: 8px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 900;
    color: var(--kuning-spot);
    font-style: italic;
    letter-spacing: .05em;
}
.nav-links {
    display: none;
    gap: 24px;
}
.nav-links a {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--biru-tua);
    text-decoration: none;
    transition: color .2s;
}
.nav-links a:hover { color: #d97706; }
.nav-cta {
    background: var(--kuning-spot);
    color: var(--biru-tua);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-decoration: none;
    border: 2px solid var(--kuning-spot);
    transition: background .2s, color .2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-cta:hover { background: var(--biru-tua); color: #fff; }

@media (min-width: 768px) {
    :root { --nav-height: 72px; }
    .nav-links { display: flex; }
    .nav-cta { font-size: 10px; padding: 10px 18px; }
    .nav-logo { height: 52px; }
}
@media (min-width: 1024px) {
    .nav-cta { font-size: 11px; padding: 11px 22px; }
}

/* ─── HERO ────────────────────────────────── */
#hero {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 48px;
    text-align: center;
    background: #fff;
    overflow: hidden;
    position: relative;
}
.hero-blob {
    position: absolute;
    top: 0; left: 0;
    width: 260px; height: 260px;
    background: #dbeafe;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5;
    pointer-events: none;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    color: var(--biru-tua);
    font-size: 9px;
    font-weight: 900;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 18px;
    border: 1px solid #dbeafe;
}
.hero-badge i { color: var(--kuning-spot); font-size: 10px; }
#hero h1 {
    font-size: clamp(28px, 6vw, 68px);
    font-weight: 900;
    color: var(--biru-tua);
    line-height: 1.1;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: -.03em;
    margin-bottom: 16px;
}
#hero h1 span { color: #f59e0b; }
#hero p {
    font-size: clamp(13px, 2vw, 18px);
    color: #64748b;
    font-weight: 500;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.hero-btns a {
    width: 100%;
    max-width: 340px;
    padding: 15px 20px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: .06em;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform .2s, opacity .2s;
}
.hero-btns a:hover { transform: translateY(-2px); opacity: .92; }
.btn-kuning { background: var(--kuning-spot); color: var(--biru-tua); box-shadow: 0 8px 24px rgba(250,204,21,.3); }
.btn-navy   { background: var(--biru-tua); color: #fff; }

@media (min-width: 480px) {
    #hero { padding-top: calc(var(--nav-height) + 56px); padding-bottom: 64px; }
    .hero-btns { flex-direction: row; justify-content: center; }
    .hero-btns a { width: auto; max-width: none; padding: 15px 28px; }
}
@media (min-width: 768px) {
    #hero { padding-top: calc(var(--nav-height) + 72px); padding-bottom: 80px; }
    #hero h1 { margin-bottom: 20px; }
    #hero p { margin-bottom: 36px; }
    .hero-btns a { padding: 16px 36px; font-size: 13px; }
}
@media (min-width: 1024px) {
    #hero { padding-top: calc(var(--nav-height) + 96px); padding-bottom: 112px; }
}

/* ─── PROBLEM ─────────────────────────────── */
#problem {
    padding: 52px 0;
    background: #f8fafc;
}
.problem-grid {
    display: grid;
    gap: 28px;
}
.problem-grid h2 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    color: var(--biru-tua);
    line-height: 1.15;
    margin-bottom: 20px;
}
.problem-grid h2 span { color: #dc2626; }
.pain-list { display: flex; flex-direction: column; gap: 10px; }
.pain-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 14px;
    border-left: 4px solid #ef4444;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.pain-item i { color: #ef4444; font-size: 18px; flex-shrink: 0; }
.pain-item span {
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    font-style: italic;
}
.solution-box {
    background: var(--biru-tua);
    border-radius: 28px;
    padding: 28px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.solution-box::after {
    content: '';
    position: absolute;
    bottom: -20px; right: -20px;
    width: 100px; height: 100px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
}
.solution-box i { font-size: 36px; color: var(--kuning-spot); margin-bottom: 14px; display: block; }
.solution-box h3 {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 10px;
}
.solution-box p { font-size: 12px; color: #bfdbfe; font-style: italic; font-weight: 500; line-height: 1.6; }

@media (min-width: 768px) {
    #problem { padding: 72px 0; }
    .problem-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
    .pain-item span { font-size: 12px; }
}
@media (min-width: 1024px) {
    #problem { padding: 96px 0; }
    .solution-box { padding: 40px; }
}

/* ─── FEATURES ────────────────────────────── */
#features {
    padding: 52px 0;
    background: #fff;
}
#features h2 {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    color: var(--biru-tua);
    text-align: center;
    margin-bottom: 28px;
}
.feat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.feat-card {
    padding: 24px 20px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: border-color .2s;
}
.feat-card:hover { border-color: var(--kuning-spot); }
.feat-card i { font-size: 28px; color: var(--biru-tua); margin-bottom: 12px; display: block; }
.feat-card h4 {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 6px;
    color: #1e293b;
}
.feat-card p { font-size: 11px; color: #64748b; line-height: 1.55; }

@media (min-width: 480px)  { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px)  { #features { padding: 72px 0; } .feat-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1024px) { #features { padding: 96px 0; } }

/* ─── PAKET ───────────────────────────────── */
#paket {
    padding: 52px 0;
    background: #f8fafc;
}
.section-head { text-align: center; margin-bottom: 28px; }
.section-head h2 {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    color: var(--biru-tua);
    margin-bottom: 6px;
}
.section-head p {
    font-size: 9px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-style: italic;
}
.paket-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.paket-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px 14px;
    border: 1px solid #e2e8f0;
    transition: box-shadow .2s;
    position: relative;
    overflow: hidden;
}
.paket-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.paket-card.featured { border: 2px solid var(--biru-tua); box-shadow: 0 4px 20px rgba(30,58,138,.12); }
.featured-tag {
    position: absolute;
    top: 0; right: 0;
    background: var(--biru-tua);
    color: #fff;
    font-size: 7px;
    font-weight: 900;
    padding: 4px 10px;
    text-transform: uppercase;
    font-style: italic;
    border-radius: 0 0 0 10px;
}
.paket-badge {
    display: inline-block;
    font-size: 8px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 10px;
}
.badge-green  { background: #dcfce7; color: #15803d; }
.badge-blue   { background: #dbeafe; color: #1e3a8a; }
.badge-amber  { background: #fef3c7; color: #92400e; }
.badge-red    { background: #fee2e2; color: #991b1b; }
.paket-price {
    font-size: clamp(16px, 3.5vw, 20px);
    font-weight: 900;
    color: var(--biru-tua);
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 6px;
    line-height: 1;
}
.paket-desc {
    font-size: 9px;
    color: #64748b;
    font-style: italic;
    line-height: 1.45;
    margin-bottom: 10px;
}
.paket-list {
    list-style: none;
    font-size: 9px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.paket-list li { display: flex; align-items: center; gap: 5px; }
.paket-btn {
    display: block;
    text-align: center;
    padding: 9px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    text-decoration: none;
    background: var(--biru-tua);
    color: #fff;
    transition: background .2s;
}
.paket-btn:hover { background: #0f172a; }
.paket-card.featured .paket-btn { background: var(--kuning-spot); color: var(--biru-tua); }
.paket-card.featured .paket-btn:hover { background: #fbbf24; }

.paket-includes {
    background: var(--biru-tua);
    border-radius: 18px;
    padding: 22px 20px;
    text-align: center;
}
.paket-includes h4 {
    font-size: 11px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 14px;
}
.includes-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
}
.inc-item {
    font-size: 9px;
    font-weight: 700;
    color: #bfdbfe;
    text-transform: uppercase;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 5px;
}
.inc-item i { color: var(--kuning-spot); font-size: 10px; }
.paket-note {
    margin-top: 12px;
    font-size: 9px;
    color: #93c5fd;
    font-style: italic;
    font-weight: 500;
}

@media (min-width: 768px) {
    #paket { padding: 72px 0; }
    .section-head { margin-bottom: 36px; }
    .paket-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .paket-badge { font-size: 9px; }
    .paket-desc  { font-size: 10px; }
    .paket-list  { font-size: 10px; }
    .paket-btn   { font-size: 10px; padding: 10px; }
}
@media (min-width: 1024px) {
    #paket { padding: 96px 0; }
    .paket-card { padding: 22px 18px; }
}

/* ─── FRANCHISE ───────────────────────────── */
#franchise {
    padding: 52px 0;
    background: #fff;
    overflow: hidden;
}
.franchise-grid {
    display: grid;
    gap: 28px;
}
.franchise-dark {
    background: #0f172a;
    border-radius: 28px;
    padding: 28px;
    color: #fff;
    position: relative;
    overflow: hidden;
    order: 2;
}
.franchise-dark::after {
    content: '';
    position: absolute;
    bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
}
.franchise-tag-abs {
    position: absolute;
    top: 0; right: 0;
    background: #dc2626;
    color: #fff;
    font-size: 8px;
    font-weight: 900;
    padding: 6px 14px;
    text-transform: uppercase;
    font-style: italic;
    border-radius: 0 0 0 12px;
}
.franchise-dark h3 {
    font-size: clamp(20px, 3.5vw, 30px);
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    color: var(--kuning-spot);
    line-height: 1.2;
    margin-bottom: 10px;
    margin-top: 16px;
}
.franchise-dark p {
    font-size: 11px;
    color: #94a3b8;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}
.franchise-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    color: #e2e8f0;
}
.ff-item { display: flex; align-items: center; gap: 6px; }
.ff-item i { color: var(--kuning-spot); font-size: 12px; }

.franchise-info { order: 1; }
.franchise-exclusive {
    font-size: 9px;
    font-weight: 900;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-style: italic;
    margin-bottom: 8px;
}
.franchise-info h2 {
    font-size: clamp(24px, 4.5vw, 40px);
    font-weight: 900;
    color: var(--biru-tua);
    text-transform: uppercase;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 10px;
}
.franchise-info > p {
    font-size: 11px;
    color: #64748b;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 18px;
}
.stat-rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--biru-tua);
}
.stat-label { font-size: 10px; font-weight: 900; text-transform: uppercase; font-style: italic; color: #475569; }
.stat-value { font-size: 13px; font-weight: 900; color: var(--biru-tua); font-style: italic; }
.franchise-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.btn-red  { background: #dc2626; color: #fff; padding: 13px; border-radius: 12px; font-size: 11px; font-weight: 900; text-transform: uppercase; font-style: italic; text-decoration: none; text-align: center; display: block; transition: background .2s; }
.btn-red:hover { background: #b91c1c; }
.btn-navy-sm { background: var(--biru-tua); color: #fff; padding: 13px; border-radius: 12px; font-size: 11px; font-weight: 900; text-transform: uppercase; font-style: italic; text-decoration: none; text-align: center; display: block; transition: background .2s; }
.btn-navy-sm:hover { background: #0f172a; }

@media (min-width: 480px) {
    .franchise-btns { flex-direction: row; }
    .btn-red, .btn-navy-sm { flex: 1; }
}
@media (min-width: 768px) {
    #franchise { padding: 72px 0; }
    .franchise-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
    .franchise-dark { order: 1; }
    .franchise-info { order: 2; }
}
@media (min-width: 1024px) {
    #franchise { padding: 96px 0; }
    .franchise-dark { padding: 40px; }
}

/* ─── SIMULASI ────────────────────────────── */
#simulasi {
    padding: 52px 0;
    background: var(--biru-tua);
}
#simulasi h2 {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
    text-align: center;
    letter-spacing: -.02em;
    margin-bottom: 24px;
}
.sim-box {
    background: rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 28px 20px;
    border: 1px solid rgba(255,255,255,.15);
    max-width: 640px;
    margin: 0 auto;
}
.sim-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 22px;
}
.sim-stat { text-align: center; }
.sim-label {
    font-size: 8px;
    font-weight: 700;
    color: #93c5fd;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 5px;
}
.sim-val {
    font-size: clamp(14px, 3vw, 22px);
    font-weight: 900;
    color: #fff;
    font-style: italic;
}
.sim-val.accent { color: var(--kuning-spot); }
.sim-divider { border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; text-align: center; }
.sim-result-label {
    font-size: 9px;
    font-weight: 700;
    color: #93c5fd;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 8px;
}
.sim-result {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 900;
    color: var(--kuning-spot);
    font-style: italic;
    letter-spacing: -.03em;
}
.sim-result span { font-size: clamp(14px, 2vw, 20px); }

@media (min-width: 768px) { #simulasi { padding: 72px 0; } }
@media (min-width: 1024px) { #simulasi { padding: 96px 0; } .sim-box { padding: 40px; } }

/* ─── FAQ ─────────────────────────────────── */
#faq {
    padding: 52px 0;
    background: #fff;
}
#faq h2 {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 900;
    color: var(--biru-tua);
    text-transform: uppercase;
    font-style: italic;
    text-align: center;
    margin-bottom: 24px;
}
.faq-list {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.faq-btn {
    width: 100%;
    padding: 14px 18px;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    text-align: left;
    transition: background .2s;
}
.faq-btn:hover { background: #f8fafc; }
.faq-btn span {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    color: var(--biru-tua);
    letter-spacing: -.01em;
}
.faq-btn i { color: var(--biru-tua); font-size: 12px; flex-shrink: 0; transition: transform .25s; }
.faq-answer {
    padding: 12px 18px 16px;
    font-size: 12px;
    color: #64748b;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    border-top: 1px solid #f8fafc;
    background: #f8fafc;
}

@media (min-width: 768px) { #faq { padding: 72px 0; } .faq-btn span { font-size: 12px; } .faq-answer { font-size: 13px; } }
@media (min-width: 1024px) { #faq { padding: 96px 0; } }

/* ─── CTA ─────────────────────────────────── */
#cta { padding: 52px 0; background: #f8fafc; }
.cta-box {
    background: var(--biru-tua);
    border-radius: 28px;
    padding: 36px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}
.cta-box h2 {
    font-size: clamp(24px, 5vw, 52px);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 12px;
    position: relative;
}
.cta-box h2 span { color: var(--kuning-spot); }
.cta-box p {
    font-size: 10px;
    font-weight: 700;
    color: #bfdbfe;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: .1em;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    position: relative;
}
.cta-btns a {
    width: 100%;
    max-width: 340px;
    padding: 15px 20px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform .2s, opacity .2s;
}
.cta-btns a:hover { transform: scale(1.03); opacity: .93; }

@media (min-width: 480px) {
    .cta-btns { flex-direction: row; justify-content: center; }
    .cta-btns a { width: auto; max-width: none; padding: 15px 28px; }
}
@media (min-width: 768px) {
    #cta { padding: 72px 0; }
    .cta-box { padding: 52px 48px; }
    .cta-btns a { padding: 16px 36px; font-size: 12px; }
}
@media (min-width: 1024px) { #cta { padding: 96px 0; } }

/* ─── FOOTER ──────────────────────────────── */
footer {
    padding: 28px 16px;
    border-top: 1px solid #f1f5f9;
    background: #fff;
    text-align: center;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 10px; }
.footer-logo-fallback {
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--biru-tua);
    border-radius: 8px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 900;
    color: var(--kuning-spot);
    font-style: italic;
    margin-bottom: 10px;
}
footer p {
    font-size: 9px;
    font-weight: 900;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .2em;
}

/* ─── ANIMATIONS ──────────────────────────── */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
.anim-float { animation: floating 3s ease-in-out infinite; }

/* ─── CHECK COLORS ────────────────────────── */
.ck-green  { color: #22c55e; }
.ck-blue   { color: #3b82f6; }
.ck-amber  { color: #f59e0b; }
.ck-red    { color: #ef4444; }

/* ─── TAMBAHAN PERLINDUNGAN MOBILE ────────── */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    /* Memastikan struktur form tetap aman */
    input, textarea, select {
        max-width: 100%;
    }
}