/* =============================================
   CSS Variables — GELIS.Net Green Theme
   ============================================= */
:root {
    --bg:           #050d0a;
    --bg-2:         #071210;
    --bg-card:      rgba(255,255,255,0.03);
    --border:       rgba(255,255,255,0.07);
    --green:        #22c55e;
    --green-dark:   #16a34a;
    --green-light:  #4ade80;
    --green-dim:    rgba(34,197,94,0.15);
    --green-glow:   rgba(34,197,94,0.08);
    --text:         #f0fdf4;
    --text-2:       #86efac;
    --text-muted:   #4b7a5a;
}

/* =============================================
   Reset & Base
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
img, svg { display: block; }
strong { color: var(--green-light); }

/* =============================================
   HEADER
   ============================================= */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: padding 0.3s, background 0.3s, border-color 0.3s;
}
#header.scrolled {
    padding: 12px 0;
    background: rgba(5,13,10,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(34,197,94,0.15);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-decoration: none;
    color: var(--text);
}
.logo span {
    color: var(--green);
    font-weight: 700;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}
nav ul a {
    color: var(--text-2);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
nav ul a:hover {
    color: var(--text);
    background: rgba(34,197,94,0.08);
}
.btn-nav {
    background: var(--green) !important;
    color: #052e0f !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
}
.btn-nav:hover { background: var(--green-light) !important; }

/* =============================================
   HAMBURGER
   ============================================= */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 130px 0 90px;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34,197,94,0.06) 0%, transparent 70%);
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero-orb-1 {
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(34,197,94,0.10) 0%, transparent 65%);
    top: -200px; right: -200px;
}
.hero-orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(74,222,128,0.07) 0%, transparent 65%);
    bottom: -100px; left: -120px;
}
.hero-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(22,163,74,0.12) 0%, transparent 65%);
    top: 40%; left: 50%;
}
.hero-inner { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.25);
    color: var(--green);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 32px;
}
.badge-dot {
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(1.6); }
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #e8fdf0;
}
.text-gradient {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 50%, #86efac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.1rem;
    color: #a3cfb4;
    max-width: 560px;
    margin-bottom: 44px;
    line-height: 1.75;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 72px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #052e0f;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(34,197,94,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(34,197,94,0.45);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(34,197,94,0.3);
    color: var(--green-light);
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    background: rgba(34,197,94,0.05);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-ghost:hover {
    border-color: rgba(34,197,94,0.6);
    background: rgba(34,197,94,0.1);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    color: #e8fdf0;
}
.stat-plus { font-size: 1.5rem; font-weight: 800; color: var(--green); }
.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(34,197,94,0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
}
.scroll-dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: bounce-dot 2s ease-in-out infinite;
}
@keyframes bounce-dot {
    0%, 100% { transform: translateY(0); opacity: 0.8; }
    50%       { transform: translateY(12px); opacity: 0.2; }
}

/* =============================================
   SECTIONS COMMON
   ============================================= */
.section { padding: 110px 0; }

.section-head {
    text-align: center;
    margin-bottom: 70px;
}
.section-tag {
    display: inline-block;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.25);
    color: var(--green);
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: #e8fdf0;
}
.section-desc {
    color: #a3cfb4;
    max-width: 520px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   PACKAGES
   ============================================= */
.packages {
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}
.packages::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34,197,94,0.4), transparent);
}

/* PSB Banner */
.psb-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(22,163,74,0.06));
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: 16px;
    padding: 20px 28px;
    margin-bottom: 48px;
}
.psb-icon { font-size: 2rem; flex-shrink: 0; }
.psb-text { flex: 1; }
.psb-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-light);
    margin-bottom: 4px;
}
.psb-text span { color: #a3cfb4; font-size: 0.875rem; }
.psb-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--green);
    white-space: nowrap;
}

/* Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, background 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.package-card:hover {
    border-color: rgba(34,197,94,0.4);
    transform: translateY(-6px);
    background: rgba(34,197,94,0.04);
    box-shadow: 0 12px 40px rgba(34,197,94,0.12);
}
.package-card.featured {
    border-color: rgba(34,197,94,0.4);
    background: linear-gradient(145deg, rgba(34,197,94,0.08), rgba(22,163,74,0.04));
    box-shadow: 0 8px 32px rgba(34,197,94,0.15);
}
.package-card.featured:hover {
    box-shadow: 0 16px 48px rgba(34,197,94,0.25);
}
.card-glow {
    position: absolute;
    top: -30px; right: -30px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(34,197,94,0.2), transparent 65%);
    pointer-events: none;
}
.package-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #052e0f;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.package-name {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--green-light);
    margin-bottom: 12px;
    text-transform: uppercase;
}
.package-speed {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: #e8fdf0;
    margin-bottom: 4px;
    letter-spacing: -2px;
}
.package-speed span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0;
}
.package-type {
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.package-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #e8fdf0;
    margin-bottom: 20px;
    line-height: 1;
}
.price-rp {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    vertical-align: middle;
}
.price-per {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}
.package-features {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}
.package-features li {
    font-size: 0.855rem;
    color: #a3cfb4;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    line-height: 1.5;
}
.package-features li:last-child { border-bottom: none; }
.btn-package {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid rgba(34,197,94,0.35);
    color: var(--green-light);
    background: rgba(34,197,94,0.06);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-package:hover {
    background: rgba(34,197,94,0.15);
    border-color: rgba(34,197,94,0.6);
    transform: translateY(-2px);
}
.btn-package-featured {
    background: linear-gradient(135deg, var(--green), var(--green-dark)) !important;
    border-color: transparent !important;
    color: #052e0f !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(34,197,94,0.3);
}
.btn-package-featured:hover {
    box-shadow: 0 6px 24px rgba(34,197,94,0.45) !important;
}

/* =============================================
   FEATURES / WHY US
   ============================================= */
.features { background: var(--bg); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.feature-card:hover {
    border-color: rgba(34,197,94,0.3);
    transform: translateY(-4px);
    background: rgba(34,197,94,0.03);
}
.feature-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 18px;
    width: 56px; height: 56px;
    background: rgba(34,197,94,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #e8fdf0;
}
.feature-card p {
    color: #a3cfb4;
    font-size: 0.875rem;
    line-height: 1.65;
}

/* =============================================
   AREA COVERAGE
   ============================================= */
.area {
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}
.area::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34,197,94,0.3), transparent);
}

.area-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.area-map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 320px;
    background: linear-gradient(135deg, rgba(34,197,94,0.06), rgba(22,163,74,0.03));
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.map-pulse {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.map-dot {
    width: 16px; height: 16px;
    background: var(--green);
    border-radius: 50%;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 12px rgba(34,197,94,0.6);
}
.map-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(34,197,94,0.4);
    animation: ring-expand 3s ease-out infinite;
}
.map-ring-1 { width: 60px; height: 60px; animation-delay: 0s; }
.map-ring-2 { width: 110px; height: 110px; animation-delay: 0.8s; }
.map-ring-3 { width: 160px; height: 160px; animation-delay: 1.6s; }
@keyframes ring-expand {
    0%   { opacity: 0.8; transform: scale(0.8); }
    100% { opacity: 0; transform: scale(1.2); }
}
.map-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.04em;
    text-align: center;
}

.area-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.area-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.area-icon {
    font-size: 1.4rem;
    width: 44px; height: 44px;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.area-item h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #e8fdf0;
    margin-bottom: 4px;
}
.area-item p {
    color: #a3cfb4;
    font-size: 0.855rem;
    line-height: 1.6;
}
.area-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}
.area-link:hover { color: var(--green-light); text-decoration: underline; }

/* =============================================
   PROCESS / CARA DAFTAR
   ============================================= */
.process { background: var(--bg); }

.process-steps {
    display: flex;
    align-items: flex-start;
}
.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}
.process-connector {
    flex: 0 0 48px;
    height: 2px;
    background: linear-gradient(90deg, rgba(34,197,94,0.6), rgba(34,197,94,0.15));
    margin-top: 29px;
}
.step-num {
    width: 60px; height: 60px;
    background: rgba(34,197,94,0.08);
    border: 2px solid rgba(34,197,94,0.35);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--green);
    flex-shrink: 0;
}
.step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #e8fdf0;
}
.step-content p {
    color: #a3cfb4;
    font-size: 0.855rem;
    line-height: 1.65;
}

/* =============================================
   CTA
   ============================================= */
.cta-section {
    padding: 120px 0;
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(34,197,94,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta-badge {
    display: inline-block;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    color: var(--green);
    padding: 5px 18px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.cta-section h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: #e8fdf0;
}
.cta-section p {
    color: #a3cfb4;
    font-size: 1.05rem;
    margin-bottom: 32px;
}
.cta-contact-info {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(34,197,94,0.06);
    border: 1px solid rgba(34,197,94,0.2);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.95rem;
    color: var(--green-light);
    font-weight: 600;
}
.cta-contact-icon { font-size: 1.1rem; }
.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-large { padding: 16px 34px !important; font-size: 1rem !important; }
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(34,197,94,0.35);
    color: var(--green-light);
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(34,197,94,0.05);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-outline:hover {
    border-color: rgba(34,197,94,0.6);
    background: rgba(34,197,94,0.12);
    transform: translateY(-2px);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: #030a06;
    border-top: 1px solid rgba(34,197,94,0.12);
    padding: 72px 0 32px;
}
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}
.footer-brand h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #e8fdf0;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.footer-brand h3 span { color: var(--green); }
.footer-brand p { color: var(--text-muted); font-size: 0.875rem; }
.footer-tagline { margin-top: 4px; margin-bottom: 18px; }
.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-badge {
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.2);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
}
.footer-section h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green);
    margin-bottom: 16px;
}
.footer-section p { margin-bottom: 10px; }
.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}
.footer-link:hover { color: var(--green-light); padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(34,197,94,0.1);
    padding-top: 28px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.83rem;
}

/* =============================================
   MITRA SECTION
   ============================================= */
.mitra-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.mitra-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(34,197,94,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.mitra-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
    background: linear-gradient(135deg, rgba(34,197,94,0.07), rgba(22,163,74,0.03));
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: 24px;
    padding: 48px;
}

.mitra-badge-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.mitra-speed-badge {
    width: 180px; height: 180px;
    background: linear-gradient(145deg, rgba(34,197,94,0.15), rgba(22,163,74,0.08));
    border: 2px solid rgba(34,197,94,0.4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(34,197,94,0.15);
}
.mitra-speed-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    letter-spacing: -2px;
}
.mitra-speed-unit {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-light);
    margin-top: 2px;
}
.mitra-speed-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 6px;
}
.mitra-type-tag {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.04em;
}
.mitra-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
    max-width: 220px;
}

.mitra-content { display: flex; flex-direction: column; gap: 32px; }

.mitra-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.mitra-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.875rem;
    color: #a3cfb4;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s;
}
.mitra-feature-item:hover {
    border-color: rgba(34,197,94,0.3);
    background: rgba(34,197,94,0.04);
}
.mitra-feat-icon { font-size: 1.2rem; flex-shrink: 0; }

.mitra-cta-box {
    background: rgba(34,197,94,0.05);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 16px;
    padding: 24px 28px;
}
.mitra-cta-box p {
    color: #a3cfb4;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}
.mitra-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* =============================================
   RESPONSIVE — Tablet
   ============================================= */
@media (max-width: 1024px) {
    .package-grid   { grid-template-columns: repeat(2, 1fr); }
    .features-grid  { grid-template-columns: repeat(2, 1fr); }
    .area-wrapper   { grid-template-columns: 1fr; gap: 40px; }
    .mitra-wrapper  { grid-template-columns: 1fr; gap: 32px; }
    .mitra-badge-wrap { flex-direction: row; justify-content: flex-start; align-items: center; text-align: left; flex-wrap: wrap; gap: 20px; }
    .area-map-placeholder { height: 250px; }
    .process-steps  { flex-wrap: wrap; gap: 24px; justify-content: center; }
    .process-connector { display: none; }
    .process-step   { flex: 0 0 calc(50% - 12px); }
    .footer-top     { grid-template-columns: 1fr 1fr; }
    .footer-brand   { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    nav ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0; right: 0;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: #071210;
        border-left: 1px solid rgba(34,197,94,0.15);
        padding: 84px 28px 40px;
        gap: 4px;
        z-index: 1050;
    }
    nav ul.open { display: flex; }
    nav ul a { font-size: 1rem; padding: 10px 16px; }
    .btn-nav { margin-top: 8px; justify-content: center; }

    .hero-title     { letter-spacing: -1px; }
    .hero-stats     { gap: 18px; }
    .stat-number    { font-size: 1.9rem; }

    .package-grid   { grid-template-columns: 1fr; }
    .features-grid  { grid-template-columns: 1fr; }
    .process-step   { flex: 0 0 100%; }

    .psb-banner     { flex-direction: column; text-align: center; }
    .mitra-features-grid { grid-template-columns: 1fr; }

    .footer-top     { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand   { grid-column: 1; }

    .cta-contact-info { flex-direction: column; align-items: center; gap: 12px; }
}

/* =============================================
   RESPONSIVE — Mobile
   ============================================= */
@media (max-width: 480px) {
    .section { padding: 72px 0; }
    .hero    { padding: 110px 0 64px; }

    .hero-actions   { flex-direction: column; }
    .btn-primary,
    .btn-ghost      { justify-content: center; text-align: center; }

    .hero-stats     { flex-direction: column; align-items: flex-start; gap: 16px; }
    .stat-divider   { display: none; }

    .features-grid  { grid-template-columns: 1fr; }

    .cta-actions    { flex-direction: column; align-items: center; }
    .btn-large      { width: 100%; justify-content: center; }

    .package-speed  { font-size: 2.8rem; }
}
