/* ============================================================
   ASTRONET.ID — Main Stylesheet
   PT. Media Balai Nusa
   ============================================================ */

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

:root {
    --bg:        #050d1a;
    --bg2:       #080f1f;
    --surface:   rgba(255,255,255,0.04);
    --border:    rgba(255,255,255,0.08);
    --cyan:      #00d4ff;
    --cyan2:     #0099cc;
    --blue:      #1a4fff;
    --white:     #ffffff;
    --muted:     rgba(255,255,255,0.5);
    --muted2:    rgba(255,255,255,0.25);
    --grad:      linear-gradient(135deg, #00d4ff 0%, #1a4fff 100%);
    --green:     #00dc82;
    --yellow:    #ffb400;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    line-height: 1.15;
}

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

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ─── GRID BACKGROUND ─── */
.grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

/* ─── GLOW ORBS ─── */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
.orb-1 { width: 600px; height: 600px; background: rgba(0,212,255,0.12); top: -200px; left: -100px; }
.orb-2 { width: 500px; height: 500px; background: rgba(26,79,255,0.12); top: 100px; right: -100px; }

/* ─── HEADER ─── */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}
#header.scrolled {
    background: rgba(5,13,26,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
}
.logo-img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}
.logo span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
nav a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    margin: 0 18px;
    transition: color 0.2s;
    letter-spacing: 0.3px;
}
nav a:hover { color: var(--white); }
.btn-primary {
    background: var(--grad);
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-ghost {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(0,212,255,0.3); transform: translateY(-1px); }

/* ─── MOBILE MENU ─── */
#mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 20px; cursor: pointer; }
#mobile-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(5,13,26,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    padding: 16px 0;
}
#mobile-menu a { display: block; padding: 12px 24px; color: var(--muted); font-size: 15px; }
#mobile-menu a:hover { color: var(--white); }
#mobile-menu .p-4 { padding: 12px 24px; }

/* ─── SECTION BASE ─── */
section { position: relative; overflow: hidden; }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 12px;
}
.section-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}
.text-center { text-align: center; }

/* ─── HERO ─── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
}
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,212,255,0.06);
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 24px;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}
.hero-title .accent {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-desc {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}
.hero-stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat-label { font-size: 12px; color: var(--muted); letter-spacing: 0.5px; }

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.speed-ring-wrap {
    position: relative;
    width: 360px;
    height: 360px;
}
.speed-ring-wrap svg { position: absolute; top: 0; left: 0; }
.speed-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.speed-num {
    font-family: 'Syne', sans-serif;
    font-size: 64px;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.speed-unit { font-size: 14px; color: var(--muted); letter-spacing: 2px; margin-top: 4px; }
.speed-label { font-size: 12px; color: var(--muted2); margin-top: 4px; }
.ring-rotate { animation: spinRing 10s linear infinite; transform-origin: center; }
.ring-rotate-r { animation: spinRing 7s linear infinite reverse; transform-origin: center; }
@keyframes spinRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.floating-card {
    position: absolute;
    background: rgba(8,15,31,0.9);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.floating-card .icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
}
.floating-card .label { font-size: 10px; color: var(--muted); }
.floating-card .value { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; }
.fc-1 { top: 30px; left: -20px; animation: float1 4s ease-in-out infinite; }
.fc-2 { bottom: 40px; right: -30px; animation: float2 5s ease-in-out infinite; }
.fc-3 { bottom: 120px; left: -30px; animation: float1 6s ease-in-out 1s infinite; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }

/* ─── KEUNGGULAN ─── */
#keunggulan { padding: 120px 0; background: var(--bg2); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
    border-radius: 20px;
    overflow: hidden;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 36px 32px;
    position: relative;
    transition: background 0.3s;
    cursor: default;
}
.feature-card:hover { background: rgba(0,212,255,0.04); }
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--grad);
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--cyan);
    margin-bottom: 20px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─── PROSES ─── */
#proses { padding: 120px 0; }
.steps-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px;
    position: relative;
}
.steps-wrap::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 17%;
    right: 17%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,212,255,0.3), transparent);
}
.step {
    text-align: center;
    padding: 36px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: transform 0.3s, border-color 0.3s;
}
.step:hover { transform: translateY(-6px); border-color: rgba(0,212,255,0.3); }
.step-num {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(0,212,255,0.06);
    border: 1px solid rgba(0,212,255,0.2);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    color: var(--cyan);
    position: relative;
}
.step-num .step-icon { font-size: 24px; }
.step h3 { font-size: 18px; margin-bottom: 12px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─── PAKET ─── */
#paket { padding: 120px 0; background: var(--bg2); }

/* Pricing Period Toggle */
.pricing-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 8px;
}
.pricing-toggle {
    display: inline-flex;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 5px;
    gap: 4px;
}
.period-btn {
    padding: 9px 22px;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, transform 0.2s;
    color: var(--muted);
    border: none;
    background: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.period-btn.active {
    background: var(--grad);
    color: white;
    transform: none;
}
.period-btn:not(.active):hover { color: var(--white); }
.save-badge {
    background: rgba(0,220,130,0.15);
    border: 1px solid rgba(0,220,130,0.3);
    color: var(--green);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 7px;
    border-radius: 50px;
    text-transform: uppercase;
}
.period-btn.active .save-badge {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    color: white;
}
.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin-top: 12px;
    margin-bottom: 48px;
    min-height: 20px;
    transition: opacity 0.3s;
}
.pricing-note span { color: var(--green); font-weight: 600; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
}
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
}
.pricing-card:hover { transform: translateY(-6px); border-color: rgba(0,212,255,0.3); }
.pricing-card.popular {
    background: linear-gradient(145deg, rgba(0,212,255,0.07) 0%, rgba(26,79,255,0.07) 100%);
    border-color: rgba(0,212,255,0.35);
    transform: scale(1.04);
}
.pricing-card.popular:hover { transform: scale(1.04) translateY(-6px); }
.popular-badge {
    position: absolute;
    top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--grad);
    color: white;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    white-space: nowrap;
}
.pricing-name {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 6px;
}
.pricing-desc { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.pricing-speed {
    font-family: 'Syne', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pricing-speed span { font-size: 18px; color: var(--muted); -webkit-text-fill-color: var(--muted); }

/* Price display area */
.pricing-price-block { margin: 16px 0 28px; min-height: 72px; }
.pricing-price-main {
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    transition: all 0.25s;
}
.pricing-price-main small { font-size: 14px; font-weight: 400; color: var(--muted); }
.pricing-price-total {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
    min-height: 18px;
    transition: opacity 0.25s;
}
.pricing-price-total strong { color: var(--cyan); }
.pricing-price-original {
    font-size: 13px;
    color: var(--muted2);
    text-decoration: line-through;
    min-height: 18px;
}
.pricing-savings-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,220,130,0.1);
    border: 1px solid rgba(0,220,130,0.25);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 50px;
    margin-top: 6px;
}

.pricing-divider { height: 1px; background: var(--border); margin: 24px 0; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
    padding: 6px 0;
}
.pricing-features li i { color: var(--cyan); font-size: 12px; }
.btn-plan {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s, transform 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-plan:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-plan.solid { background: var(--grad); color: white; }
.btn-plan.outline { background: transparent; border: 1px solid var(--border); color: var(--white); }
.btn-plan.outline:hover { border-color: rgba(0,212,255,0.4); }

/* ─── COVERAGE ─── */
#coverage { padding: 120px 0; }
.coverage-tabs {
    display: inline-flex;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px;
    margin: 48px auto 0;
    display: flex;
    width: fit-content;
    gap: 4px;
}
.cov-tab {
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    color: var(--muted);
    border: none;
    background: none;
}
.cov-tab.active {
    background: var(--grad);
    color: white;
}
.coverage-box {
    margin-top: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.coverage-map-side {
    background: rgba(0,212,255,0.03);
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border);
}
.coverage-map-side img { width: 100%; border-radius: 14px; object-fit: cover; }
.coverage-info-side { padding: 60px 48px; }
.cov-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.cov-status.available { background: rgba(0,220,130,0.1); border: 1px solid rgba(0,220,130,0.3); color: #00dc82; }
.cov-status.partial { background: rgba(255,180,0,0.1); border: 1px solid rgba(255,180,0,0.3); color: #ffb400; }
.cov-status .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: pulse 2s infinite; }
.coverage-info-side h3 { font-size: 26px; font-weight: 800; margin-bottom: 14px; }
.coverage-info-side p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }
.coverage-areas { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.area-chip {
    padding: 6px 14px;
    background: rgba(0,212,255,0.06);
    border: 1px solid rgba(0,212,255,0.15);
    border-radius: 50px;
    font-size: 13px;
    color: var(--cyan);
}

/* ─── TESTIMONIAL ─── */
#testimonial { padding: 120px 0; background: var(--bg2); }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}
.testi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform 0.3s, border-color 0.3s;
}
.testi-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.25); }
.testi-stars { color: #ffb400; font-size: 13px; margin-bottom: 16px; }
.testi-quote { color: var(--muted); font-size: 14px; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--grad);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
}
.testi-name { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; }
.testi-role { font-size: 12px; color: var(--muted); }

/* ─── FAQ ─── */
#faq { padding: 120px 0; }
.faq-list { margin-top: 64px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(0,212,255,0.3); }
.faq-toggle {
    width: 100%;
    background: var(--surface);
    border: none;
    padding: 22px 28px;
    text-align: left;
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-toggle:hover { background: rgba(255,255,255,0.04); }
.faq-icon {
    min-width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    color: var(--cyan);
    transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(0,212,255,0.15); }
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-content { max-height: 300px; }
.faq-content-inner { padding: 0 28px 24px; font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ─── CTA ─── */
#cta {
    padding: 100px 0;
    position: relative;
    text-align: center;
}
.cta-inner {
    background: linear-gradient(135deg, rgba(0,212,255,0.07) 0%, rgba(26,79,255,0.07) 100%);
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 32px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}
.cta-inner::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 32px;
    background: var(--grad);
    opacity: 0.07;
    filter: blur(40px);
}
.cta-inner h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; }
.cta-inner p { color: var(--muted); font-size: 16px; max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 80px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-top: 14px; max-width: 300px; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted2); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 14px; color: var(--muted); }
.footer-contact-item i { color: var(--cyan); width: 16px; margin-top: 2px; flex-shrink: 0; }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
    font-size: 15px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-link:hover { background: rgba(0,212,255,0.1); border-color: rgba(0,212,255,0.3); color: var(--cyan); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--muted2);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 48px; }
    .hero-desc { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-6px); }
    .coverage-box { grid-template-columns: 1fr; }
    .coverage-map-side { border-right: none; border-bottom: 1px solid var(--border); padding: 40px 32px; }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .speed-ring-wrap { width: 280px; height: 280px; }
    .hero-visual { display: none; }
}

@media (max-width: 768px) {
    /* Layout dasar */
    .container { padding: 0 18px; }
    nav, .header-cta { display: none; }
    #mobile-menu-btn { display: block; }
    #header { padding: 0 18px; }

    /* ── Hero fix utama ── */
    .hero-content {
        padding: 48px 18px 60px;
        text-align: left;
        gap: 32px;
    }
    .hero-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 16px;
    }
    .hero-title {
        font-size: clamp(28px, 8vw, 40px);
        letter-spacing: -0.5px;
        line-height: 1.15;
        margin-bottom: 16px;
    }
    .hero-desc {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 28px;
        max-width: 100%;
        color: rgba(255,255,255,0.6);
    }
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
        justify-content: center;
        width: 100%;
        padding: 13px 20px;
        font-size: 15px;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px 28px;
        margin-top: 32px;
        padding-top: 28px;
    }
    .hero-stat-num { font-size: 22px; }
    .hero-stat-label { font-size: 11px; }

    /* Sections padding */
    #keunggulan .container,
    #proses .container { padding-top: 72px; padding-bottom: 72px; }
    #paket,
    #coverage,
    #testimonial,
    #faq { padding-top: 72px; padding-bottom: 72px; }

    /* Section text */
    .section-title { font-size: clamp(22px, 6vw, 32px); }
    .section-sub { font-size: 14px; }
    .section-label { font-size: 11px; }

    /* Features */
    .features-grid { grid-template-columns: 1fr; margin-top: 36px; }
    .feature-card { padding: 28px 22px; }

    /* Steps */
    .steps-wrap { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
    .steps-wrap::before { display: none; }
    .step { padding: 28px 22px; }

    /* Pricing */
    .pricing-grid { max-width: 100%; margin-top: 0; }
    .pricing-card { padding: 32px 24px; }
    .pricing-speed { font-size: 44px; }
    .pricing-price-main { font-size: 22px; }
    .pricing-toggle { flex-direction: column; border-radius: 20px; width: 100%; max-width: 320px; margin: 0 auto; }
    .period-btn { justify-content: center; padding: 10px 16px; }

    /* Coverage */
    .coverage-info-side { padding: 32px 22px; }
    .coverage-map-side { padding: 24px 22px; }
    .coverage-info-side h3 { font-size: 20px; }
    .coverage-areas { gap: 8px; }

    /* Testimonial */
    .testi-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }

    /* FAQ */
    .faq-list { margin-top: 36px; }
    .faq-toggle { font-size: 14px; padding: 18px 20px; }
    .faq-content-inner { padding: 0 20px 20px; }

    /* CTA */
    .cta-inner { padding: 48px 22px; border-radius: 20px; }
    .cta-inner h2 { font-size: clamp(22px, 6vw, 32px); }
    .cta-inner p { font-size: 14px; }
    .cta-actions { flex-direction: column; align-items: center; gap: 10px; }
    .cta-actions a { width: 100%; justify-content: center; text-align: center; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    footer { padding: 56px 0 28px; }
}

/* Layar sangat kecil (< 380px) */
@media (max-width: 380px) {
    .hero-title { font-size: 26px; letter-spacing: -0.3px; }
    .hero-desc { font-size: 14px; }
    .btn-primary, .btn-ghost { font-size: 13px; padding: 11px 16px; }
}