
:root {
    /* Primary - Electric Blue to Purple */
    --primary: #60a5fa;
    --primary-dark: #8b5cf6;
    --primary-glow: rgba(96, 165, 250, 0.35);
    
    /* Secondary - Rose Gold */
    --secondary: #f472b6;
    --secondary-glow: rgba(244, 114, 182, 0.25);
    
    /* Accent - Cyan */
    --accent: #22d3ee;
    --accent-glow: rgba(34, 211, 238, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #60a5fa, #8b5cf6, #a78bfa);
    --gradient-secondary: linear-gradient(135deg, #f472b6, #fb7185, #f59e0b);
    --gradient-hero: linear-gradient(135deg, #60a5fa, #8b5cf6, #22d3ee, #f472b6);
    --gradient-card: linear-gradient(145deg, rgba(96, 165, 250, 0.1), rgba(139, 92, 246, 0.1));
    
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    min-height: 100vh;
    transition: background 0.6s ease, color 0.4s ease;
    position: relative;
    overflow-x: hidden;
}
body.dark {
    --bg-base: #0a0a1a;
    --bg-surface: rgba(20, 20, 40, 0.75);
    --bg-card: rgba(15, 15, 35, 0.7);
    --bg-card-hover: rgba(25, 25, 55, 0.9);
    --bg-soft: rgba(255, 255, 255, 0.04);
    --bg-soft-hover: rgba(255, 255, 255, 0.08);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(96, 165, 250, 0.3);
    --shadow-card: 0 12px 48px rgba(0, 0, 0, 0.6);
    --navbar-bg: rgba(10, 10, 26, 0.85);
    --scrollbar-bg: #0a0a1a;
    --bg-gradient: radial-gradient(ellipse at 20% 30%, #1a1a3e, #0a0a1a 80%);
}

/* ============================================
   THEME VARIABLES - LIGHT
   ============================================ */
body.light {
    --bg-base: #f0f4ff;
    --bg-surface: rgba(255, 255, 255, 0.7);
    --bg-card: rgba(255, 255, 255, 0.65);
    --bg-card-hover: rgba(255, 255, 255, 0.92);
    --bg-soft: rgba(0, 0, 0, 0.02);
    --bg-soft-hover: rgba(0, 0, 0, 0.04);
    --text-primary: #0b1a2e;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-subtle: rgba(0, 0, 0, 0.06);
    --border-glow: rgba(96, 165, 250, 0.4);
    --shadow-card: 0 12px 48px rgba(96, 165, 250, 0.08);
    --navbar-bg: rgba(255, 255, 255, 0.75);
    --scrollbar-bg: #e8edf6;
    --bg-gradient: radial-gradient(ellipse at 30% 20%, #e0ecff, #f0f4ff 80%);
}

body.dark {
    background: var(--bg-base);
    color: var(--text-primary);
}

body.light {
    background: var(--bg-base);
    color: var(--text-primary);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--scrollbar-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* ============================================
   GLOW ORBS - MULTI COLOR
   ============================================ */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    animation: orbFloat 25s ease-in-out infinite alternate;
}

.orb--1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.3), rgba(139, 92, 246, 0.1), transparent 70%);
    animation-duration: 20s;
}

.orb--2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -80px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.25), rgba(251, 113, 133, 0.1), transparent 70%);
    animation-delay: -7s;
    animation-duration: 25s;
}

.orb--3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15), rgba(96, 165, 250, 0.05), transparent 70%);
    animation-delay: -14s;
    animation-duration: 22s;
}

.orb--4 {
    width: 250px;
    height: 250px;
    top: 20%;
    right: 20%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15), transparent 70%);
    animation-delay: -10s;
    animation-duration: 18s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(50px, -40px) scale(1.1) rotate(5deg);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9) rotate(-3deg);
    }
    100% {
        transform: translate(20px, -20px) scale(1.05) rotate(2deg);
    }
}

/* ============================================
   PARTICLES
   ============================================ */
#particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   LANDING CONTAINER
   ============================================ */
.landing {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1.2rem 1.5rem 2rem;
    position: relative;
    z-index: 2;
}

/* ============================================
   NAVBAR - FIXED (NO WEBKIT MASK ERROR)
   ============================================ */
.navbar-glass {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1.5rem;
    margin-bottom: 2.2rem;
    background: var(--navbar-bg);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-radius: 60px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card), 0 0 30px var(--primary-glow);
    transition: var(--transition);
    gap: 0.5rem;
    animation: slideDown 0.6s ease;
    position: relative;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== BRAND / LOGO ===== */
.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.brand-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    padding: 4px;
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: 0 0 20px var(--primary-glow);
}

.brand-logo-img:hover {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 0 40px var(--primary-glow);
}

.brand-text h4 {
    font-size: 0.9rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.3px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text small {
    font-size: 0.55rem;
    color: var(--text-secondary);
    letter-spacing: 0.4px;
    font-weight: 500;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-theme {
    background: var(--bg-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 30px;
    padding: 0.3rem 0.9rem;
    color: var(--text-primary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(4px);
    text-decoration: none;
}

.btn-theme:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
    transform: scale(1.04);
}

.btn-theme .label {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.btn-outline-glass {
    border: 1px solid var(--border-subtle);
    background: var(--bg-soft);
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.btn-outline-glass:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 25px var(--primary-glow);
    background: var(--gradient-primary);
    color: #fff;
}

.btn-primary-glass {
    background: var(--gradient-primary);
    border: none;
    padding: 0.4rem 1.4rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: var(--transition);
}

.btn-primary-glass:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 40px var(--primary-glow);
}

.btn-primary-glass:hover::before {
    opacity: 1;
}

.btn-primary-glass span {
    position: relative;
    z-index: 1;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    text-align: center;
    padding: 1.2rem 0 1.8rem;
    animation: fadeUp 0.7s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-glow {
    display: inline-block;
    background: var(--bg-soft);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border-glow);
    padding: 0.3rem 1.4rem;
    border-radius: 40px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    box-shadow: 0 0 30px var(--primary-glow);
}

.badge-glow i {
    margin-right: 0.5rem;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-primary);
}

.hero h1 .gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradShift 6s ease-in-out infinite;
}

@keyframes gradShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0.8rem auto 1.6rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.75rem 2.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 6px 30px var(--primary-glow);
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 50px var(--primary-glow);
}

.btn-hero-primary:hover::before {
    opacity: 1;
}

.btn-hero-primary i,
.btn-hero-primary span {
    position: relative;
    z-index: 1;
}

.btn-hero-outline {
    background: var(--bg-soft);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 4px 30px var(--primary-glow);
    background: var(--gradient-primary);
    color: #fff;
}

/* ============================================
   STATS
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2.2rem 0 2.8rem;
}

.stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius-lg);
    padding: 1rem 0.6rem;
    text-align: center;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    animation: scaleIn 0.5s ease backwards;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:nth-child(1) {
    animation-delay: 0.05s;
}
.stat-card:nth-child(2) {
    animation-delay: 0.10s;
}
.stat-card:nth-child(3) {
    animation-delay: 0.15s;
}
.stat-card:nth-child(4) {
    animation-delay: 0.20s;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-card), 0 0 40px var(--primary-glow);
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 0.2rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   SECTION HEAD
   ============================================ */
.section-head {
    text-align: center;
    margin: 2.6rem 0 1.8rem;
}

.section-head h3 {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 0.4rem 2rem;
    border-radius: 40px;
    background: var(--bg-soft);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(6px);
    color: var(--text-primary);
    letter-spacing: -0.2px;
    position: relative;
}

.section-head h3 i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.5rem;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.feat {
    background: var(--bg-soft);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 1.2rem 0.9rem;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    text-align: center;
    animation: scaleIn 0.45s ease backwards;
    position: relative;
    overflow: hidden;
}

.feat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: var(--transition);
}

.feat:hover::before {
    opacity: 1;
}

.feat:nth-child(1) {
    animation-delay: 0.02s;
}
.feat:nth-child(2) {
    animation-delay: 0.06s;
}
.feat:nth-child(3) {
    animation-delay: 0.10s;
}
.feat:nth-child(4) {
    animation-delay: 0.14s;
}
.feat:nth-child(5) {
    animation-delay: 0.18s;
}
.feat:nth-child(6) {
    animation-delay: 0.22s;
}
.feat:nth-child(7) {
    animation-delay: 0.26s;
}
.feat:nth-child(8) {
    animation-delay: 0.30s;
}

.feat:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-card), 0 0 40px var(--primary-glow);
}

.feat-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--primary-glow);
    position: relative;
    z-index: 1;
}

.feat:hover .feat-icon {
    transform: scale(1.06) rotate(-4deg);
    box-shadow: 0 8px 35px var(--primary-glow);
}

.feat-icon i {
    font-size: 22px;
    color: #fff;
}

.feat h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    position: relative;
    z-index: 1;
}

.feat p {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.feat-tag {
    display: inline-block;
    background: var(--bg-soft);
    border: 1px solid var(--border-glow);
    padding: 0.1rem 0.8rem;
    border-radius: 20px;
    font-size: 0.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* ============================================
   EXTRA GRID
   ============================================ */
.extra-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    text-align: center;
    padding: 1.4rem 0 0.4rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.footer i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0.2rem;
}

.footer .dot {
    margin: 0 0.5rem;
    color: var(--border-subtle);
}

/* ============================================================
   RESPONSIVE - SEMUA PERANGKAT
   ============================================================ */

/* Desktop Besar */
@media (max-width: 1200px) {
    .landing {
        padding: 1rem 1.2rem;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .stats-grid {
        gap: 0.8rem;
    }
    .features-grid {
        gap: 1rem;
    }
}

/* Laptop */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .stat-number {
        font-size: 1.2rem;
    }
    .feat-icon {
        width: 42px;
        height: 42px;
    }
    .feat-icon i {
        font-size: 18px;
    }
    .navbar-glass {
        padding: 0.5rem 1.2rem;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .landing {
        padding: 0.8rem 1rem;
    }
    .hero h1 {
        font-size: 1.9rem;
    }
    .hero p {
        font-size: 0.8rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    .extra-grid {
        grid-template-columns: 1fr;
    }
    .navbar-glass {
        flex-direction: column;
        text-align: center;
        border-radius: 32px;
        padding: 0.6rem 1rem;
    }
    .nav-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    .brand-text h4 {
        font-size: 0.75rem;
    }
    .section-head h3 {
        font-size: 1rem;
    }
    .stat-card {
        padding: 0.8rem 0.4rem;
    }
    .feat {
        padding: 0.8rem 0.6rem;
    }
    .orb--1 {
        width: 200px;
        height: 200px;
    }
    .orb--2 {
        width: 150px;
        height: 150px;
    }
    .orb--3 {
        width: 120px;
        height: 120px;
    }
    .orb--4 {
        width: 100px;
        height: 100px;
    }
    .btn-hero-primary,
    .btn-hero-outline {
        font-size: 0.75rem;
        padding: 0.6rem 1.6rem;
    }
    .badge-glow {
        font-size: 0.55rem;
        padding: 0.2rem 1rem;
    }
}

/* HP Besar */
@media (max-width: 576px) {
    .landing {
        padding: 0.6rem 0.8rem;
    }
    .hero {
        padding: 0.8rem 0 1.2rem;
    }
    .hero h1 {
        font-size: 1.5rem;
    }
    .hero p {
        font-size: 0.7rem;
        max-width: 100%;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
        font-size: 0.7rem;
        padding: 0.5rem 1.2rem;
    }
    .btn-theme .label {
        display: none;
    }
    .btn-theme {
        padding: 0.2rem 0.6rem;
    }
    .btn-outline-glass {
        font-size: 0.55rem;
        padding: 0.2rem 0.8rem;
    }
    .btn-primary-glass {
        font-size: 0.55rem;
        padding: 0.2rem 0.8rem;
    }
    .brand-logo-img {
        width: 32px;
        height: 32px;
    }
    .brand-text h4 {
        font-size: 0.65rem;
    }
    .brand-text small {
        font-size: 0.45rem;
    }
    .stat-number {
        font-size: 1rem;
    }
    .stat-label {
        font-size: 0.45rem;
        letter-spacing: 0.5px;
    }
    .feat-icon {
        width: 36px;
        height: 36px;
    }
    .feat-icon i {
        font-size: 16px;
    }
    .feat h4 {
        font-size: 0.7rem;
    }
    .feat p {
        font-size: 0.55rem;
    }
    .feat-tag {
        font-size: 0.4rem;
        padding: 0.1rem 0.6rem;
    }
    .section-head {
        margin: 1.6rem 0 1rem;
    }
    .section-head h3 {
        font-size: 0.8rem;
        padding: 0.3rem 1.2rem;
    }
    .badge-glow {
        font-size: 0.45rem;
        padding: 0.2rem 0.8rem;
        margin-bottom: 0.8rem;
    }
    .footer {
        font-size: 0.5rem;
        padding: 1rem 0 0.2rem;
    }
    .navbar-glass {
        border-radius: 24px;
        padding: 0.5rem 0.8rem;
        margin-bottom: 1.2rem;
    }
    .nav-actions {
        gap: 0.3rem;
    }
    .stat-card {
        padding: 0.6rem 0.3rem;
        border-radius: var(--radius-md);
    }
    .feat {
        padding: 0.6rem 0.5rem;
        border-radius: var(--radius-md);
    }
    .hero-actions {
        gap: 0.6rem;
    }
}

/* HP Kecil */
@media (max-width: 400px) {
    .landing {
        padding: 0.4rem 0.5rem;
    }
    .hero h1 {
        font-size: 1.2rem;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
    }
    .features-grid {
        gap: 0.4rem;
    }
    .stat-number {
        font-size: 0.85rem;
    }
    .stat-label {
        font-size: 0.4rem;
    }
    .feat-icon {
        width: 30px;
        height: 30px;
    }
    .feat-icon i {
        font-size: 13px;
    }
    .feat h4 {
        font-size: 0.6rem;
    }
    .feat p {
        font-size: 0.5rem;
    }
    .feat-tag {
        font-size: 0.35rem;
        padding: 0.05rem 0.5rem;
    }
    .section-head h3 {
        font-size: 0.7rem;
        padding: 0.2rem 1rem;
    }
    .btn-hero-primary,
    .btn-hero-outline {
        font-size: 0.6rem;
        padding: 0.4rem 1rem;
    }
    .badge-glow {
        font-size: 0.4rem;
        padding: 0.1rem 0.6rem;
    }
    .navbar-glass {
        border-radius: 18px;
        padding: 0.4rem 0.6rem;
    }
    .brand-logo-img {
        width: 26px;
        height: 26px;
    }
    .brand-text h4 {
        font-size: 0.55rem;
    }
    .brand-text small {
        display: none;
    }
    .btn-theme {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }
    .btn-outline-glass {
        font-size: 0.45rem;
        padding: 0.15rem 0.6rem;
    }
    .btn-primary-glass {
        font-size: 0.45rem;
        padding: 0.15rem 0.6rem;
    }
    .stat-card {
        padding: 0.4rem 0.2rem;
        border-radius: var(--radius-sm);
    }
    .feat {
        padding: 0.4rem 0.3rem;
        border-radius: var(--radius-sm);
    }
    .footer {
        font-size: 0.4rem;
    }
}

/* HP Landscape */
@media (max-height: 500px) and (orientation: landscape) {
    .landing {
        padding: 0.4rem 1rem;
    }
    .hero {
        padding: 0.4rem 0 0.8rem;
    }
    .hero h1 {
        font-size: 1.4rem;
    }
    .hero p {
        font-size: 0.6rem;
        max-width: 70%;
        margin: 0.3rem auto 0.8rem;
    }
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.4rem;
        margin: 0.8rem 0 1.2rem;
    }
    .stat-card {
        padding: 0.4rem 0.2rem;
    }
    .stat-number {
        font-size: 0.9rem;
    }
    .stat-label {
        font-size: 0.4rem;
    }
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.4rem;
        margin-bottom: 0.8rem;
    }
    .feat {
        padding: 0.4rem 0.3rem;
    }
    .feat-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 0.3rem;
    }
    .feat-icon i {
        font-size: 12px;
    }
    .feat h4 {
        font-size: 0.55rem;
    }
    .feat p {
        display: none;
    }
    .feat-tag {
        font-size: 0.35rem;
        margin-top: 0.3rem;
    }
    .section-head {
        margin: 0.8rem 0 0.6rem;
    }
    .section-head h3 {
        font-size: 0.7rem;
        padding: 0.2rem 1rem;
    }
    .extra-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
        margin-bottom: 0.8rem;
    }
    .navbar-glass {
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.8rem;
        border-radius: 30px;
    }
    .brand-logo-img {
        width: 28px;
        height: 28px;
    }
    .brand-text h4 {
        font-size: 0.6rem;
    }
    .brand-text small {
        display: none;
    }
    .btn-hero-primary,
    .btn-hero-outline {
        font-size: 0.55rem;
        padding: 0.3rem 1rem;
    }
    .badge-glow {
        font-size: 0.4rem;
        padding: 0.1rem 0.6rem;
        margin-bottom: 0.4rem;
    }
    .footer {
        padding: 0.4rem 0 0;
        font-size: 0.4rem;
    }
    .nav-actions {
        gap: 0.3rem;
    }
    .btn-theme {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }
    .btn-outline-glass {
        font-size: 0.4rem;
        padding: 0.15rem 0.6rem;
    }
    .btn-primary-glass {
        font-size: 0.4rem;
        padding: 0.15rem 0.6rem;
    }
    .orb {
        display: none;
    }
}