:root {
    --sunset-orange: #ff7a18;
    --soft-orange: #ffb347;
    --deep-purple: #4b2e83;
    --mid-purple: #6a4c93;
    --text-dark: #111111;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #fafafa;
    --max-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.serif {
    font-family: 'Playfair Display', serif;
}

.gradient-text {
    background: linear-gradient(
        135deg,
        var(--sunset-orange),
        var(--deep-purple)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aurora-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 122, 24, 0.35), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(75, 46, 131, 0.35), transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(106, 76, 147, 0.25), transparent 45%);
    filter: blur(60px);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 999;
}

/* Container */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 25px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    /* border: 1px solid rgba(255,255,255,0.2); */
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #ff4d6d;
}

/* Circle gradient */
.logo-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4d6d, #a855f7);
}

/* Menu */
.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin-top: 10px;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: 0.3s;
}

/* Saat di scroll */
.navbar.scrolled .nav-menu a {
    color: #4d4d4d; /* abu-abu */
}

/* Hover tetap ada efek */
.navbar.scrolled .nav-menu a:hover {
    color: #a855f7;
}

.nav-menu a:hover {
    color: #a855f7;
}

.navbar.scrolled .nav-container {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Button */
.nav-btn {
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    color: white;

    background: linear-gradient(135deg, #ff4d6d, #a855f7);
    transition: 0.3s;
}

.nav-btn:hover {
    opacity: 0.8;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
/* Hamburger saat scroll */
.navbar.scrolled .hamburger span {
    background: #666; /* abu-abu */
}

/* MOBILE */
@media (max-width: 768px) {

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        border-radius: 30px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: 0.3s;
        background: linear-gradient(135deg, #ff7a18, #a855f7);
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-btn {
        margin-left: 100px;
    }

    /* Saat di scroll */
    .navbar.scrolled .nav-menu a {
        color: #ffffff; /* abu-abu */
    }

    .hamburger {
        display: flex;
    }
    
}



section {
    padding: 120px 0;
    position: relative;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.45);
}

.hero-aurora {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 35%, rgba(255, 122, 24, 0.28), transparent 35%),
        radial-gradient(circle at 75% 30%, rgba(75, 46, 131, 0.35), transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(106, 76, 147, 0.25), transparent 40%);
    filter: blur(80px);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 760px;
    text-align: center !important;
}

.hero-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0.8;
}

.hero-title {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 620px;
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-block;
    padding: 16px 34px;
    border-radius: 999px;

    background: linear-gradient(135deg, #ff7a18, #a855f7); /* orange → ungu */

    color: white;
    text-decoration: none;
    font-weight: 600;

    border: none;
    box-shadow: 0 5px 20px rgba(168,85,247,0.4);

    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px) scale(1.03);

    background: linear-gradient(135deg, #ff8c2a, #9333ea);

    box-shadow: 0 10px 30px rgba(168,85,247,0.6);
}

/* CART SESSION */
/* Section */
.chart-section {
    padding: 100px 20px;
    background: #ffffff;
}

/* Container */
.chart-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

/* Title */
.chart-title {
    font-size: 42px;
    margin-bottom: 40px;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #ff7a18, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Chart box */
.chart-box {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* SVG */
.chart-svg {
    width: 100%;
    height: auto;
}

/* Labels bawah */
.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: #6b7280;
}
.chart-svg path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}
/* GRID */
.grid line {
    stroke: rgba(0,0,0,0.08);
    stroke-dasharray: 4;
}

/* DOT */
.dots circle {
    fill: white;
    stroke: #ff4d6d;
    stroke-width: 2;
    cursor: pointer;
    transition: 0.3s;
}

.dots circle:hover {
    r: 8;
    fill: #ff4d6d;
}
.grid line,
.grid-vertical line {
    stroke: rgba(0,0,0,0.15); /* lebih keliatan */
    stroke-dasharray: 4;
}

/* TOOLTIP */
.chart-tooltip {
    position: fixed; /* penting! */
    background: black;
    color: white;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    pointer-events: none;
    opacity: 0;
    transition: 0.2s;
    z-index: 999;
}
.grid-vertical line {
    stroke: rgba(0,0,0,0.06);
    stroke-dasharray: 4;
}

.labels-x text,
.labels-y text {
    fill: #6b7280;
    font-size: 12px;
}

.labels-x text {
    text-anchor: middle;
}

.labels-y text {
    text-anchor: start;
}
.chart-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    color: #374151;
}

/* DOT */
.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Abu */
.legend-dot.gray {
    background: #9ca3af;
}

/* Gradient oren-ungu */
.legend-dot.gradient {
    background: linear-gradient(135deg, #ff7a18, #a855f7);
}

.y-axis-title {
    fill: #888;
    font-size: 13px;
    letter-spacing: 1px;
}

/* INSIGHT SESSION */
.insight-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.insight-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 20px;
}

.insight-title {
    font-size: 50px;
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto 30px;
}

.insight-quote {
    font-size: 30px;
    color: var(--deep-purple);
    opacity: 0.9;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.insight-card {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
}

.insight-card p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.progress-wrap {
    width: 100%;
    height: 14px;
    border-radius: 999px;
    background: rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
}

.progress-bar {
    height: 100%;
    border-radius: 999px;
    width: 0;
    animation: growBar 1.6s ease forwards;
    background: linear-gradient(
        90deg,
        var(--sunset-orange),
        var(--deep-purple)
    );
}

.progress-ride {
    animation-delay: 0.2s;
    --target-width: 75%;
}

.progress-engagement {
    animation-delay: 0.5s;
    --target-width: 88%;
}

@keyframes growBar {
    from {
        width: 0;
    }
    to {
        width: var(--target-width);
    }
}

/* Card inactive (abu-abu) */
.inactive-card {
    border: 1px solid #d1d5db;
    cursor: pointer;
    transition: 0.3s;
}

/* Active saat diklik */
.insight-card.active {
    border: 1px solid #a855f7;
    box-shadow: 0 20px 60px rgba(168,85,247,0.2);
}

/* Header dalam card */
.card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

/* Icon bulat */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 30px;
}

/* List */
.card-list {
    padding-left: 18px;
    margin-bottom: 25px;
    text-align: start;
}

.card-list li {
    margin-bottom: 10px;
    color: var(--text-light);
}

/* Progress wrap tambahan */
.progress-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Progress text */
.progress-text {
    font-size: 14px;
    font-weight: bold;
    color: #3b82f6; /* biru */
}

/* Progress khusus */
.progress-old {
    --target-width: 40%;
}

/* Row progress + persen */
.progress-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Progress bar */
.progress-wrap {
    flex: 1;
    height: 14px;
    border-radius: 999px;
    background: rgba(0,0,0,0.06);
    overflow: hidden;
}

/* Angka persen besar di kanan */
.progress-value {
    font-size: 36px;
    font-weight: bold;
    min-width: 60px;
    text-align: right;

    background: linear-gradient(135deg, #ff7a18, #a855f7); /* orange → ungu */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* CARD PREMIUM BORDER GRADIENT */
.premium-card {
    position: relative;
    background: white;
    border-radius: 28px;
    padding: 40px;
    z-index: 1;
    overflow: hidden;
}

/* Gradient border trick */
.premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ff7a18, #a855f7);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* Hover glow */
.premium-card:hover {
    box-shadow: 0 20px 60px rgba(168,85,247,0.3),
                0 0 40px rgba(255,122,24,0.3);
    transform: translateY(-5px);
    transition: 0.3s;
}

/* ICON GRADIENT */
.gradient-icon {
    background: linear-gradient(135deg, #ff7a18, #a855f7);
    color: white;
}

/* TEXT GRADIENT */
.gradient-text {
    background: linear-gradient(135deg, #ff7a18, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Progress bar full */
.progress-new {
    --target-width: 100%;
}

/* Progress value override */
.premium-card .progress-value {
    font-size: 36px;
}


/* SESSION Lain */
.opportunity-section {
    padding: 140px 0;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #faf8ff 100%
    );
}

.opportunity-header {
    text-align: center;
    margin-bottom: 80px;
}

.opportunity-title {
    font-size: 60px;
    margin-bottom: 20px;
}

.opportunity-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.comparison-card {
    min-height: 420px;
    border-radius: 32px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.35s ease;
}

.comparison-card:hover {
    transform: translateY(-6px);
}

.comparison-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.7;
}

.comparison-card h3 {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.comparison-card p {
    font-size: 18px;
    line-height: 1.9;
}

.old-way {
    background: linear-gradient(
        135deg,
        #e5e5e5,
        #bdbdbd
    );
    color: #2b2b2b;
    filter: grayscale(100%);
}

.audyx-way {
    color: white;
    background:
        linear-gradient(
            135deg,
            rgba(255, 122, 24, 0.95),
            rgba(75, 46, 131, 0.95)
        );
    box-shadow: 0 25px 60px rgba(75, 46, 131, 0.18);
}

/* =========================
TABLET
========================= */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .insight-title,
    .opportunity-title {
        font-size: 48px;
    }

    .insight-quote {
        font-size: 34px;
    }

    .comparison-card h3 {
        font-size: 34px;
    }

    .comparison-card {
        min-height: 360px;
        padding: 40px;
    }
}

/* =========================
MOBILE
========================= */
@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .container {
        padding: 0 20px;
    }

    .hero-section {
        min-height: 90vh;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 32px;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .insight-title,
    .opportunity-title {
        font-size: 25px;
        line-height: 1.2;
    }

    .insight-quote {
        font-size: 28px;
        line-height: 1.4;
    }

    .insight-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .insight-card,
    .comparison-card {
        padding: 28px;
        min-height: auto;
    }

    .insight-card h3,
    .comparison-card h3 {
        font-size: 28px;
    }

    .insight-card p,
    .comparison-card p,
    .opportunity-subtitle {
        font-size: 16px;
        line-height: 1.8;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .experience-title {
        font-size: 36px;
    }

    .phone-mockup {
        width: 260px;
        height: 540px;
    }
    
    .hero-video {
        object-position: center;
    }
}

/* =========================
SMALL MOBILE
========================= */
@media (max-width: 480px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .insight-title,
    .opportunity-title {
        font-size: 30px;
    }

    .insight-quote {
        font-size: 24px;
    }

    .comparison-card h3 {
        font-size: 24px;
    }

    .section-label,
    .comparison-label {
        font-size: 12px;
    }
}

.experience-section {
    padding: 140px 0;
    background: linear-gradient(
        180deg,
        #faf8ff 0%,
        #ffffff 100%
    );
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}

@media (max-width: 768px) {
    .experience-grid {
        display: block;
    }
}

.experience-title {
    font-size: 60px;
    margin-bottom: 20px;
}

.experience-subtitle {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.experience-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.9;
    max-width: 620px;
}

.phone-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-glow {
    position: absolute;
    width: 320px;
    height: 520px;
    background: radial-gradient(
        circle,
        rgba(255,122,24,0.18),
        rgba(75,46,131,0.22),
        transparent 70%
    );
    filter: blur(40px);
    z-index: 0;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    border-radius: 42px;
    padding: 14px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: #111;
    border-radius: 0 0 18px 18px;
    margin: 0 auto 18px;
}

.phone-screen {
    height: calc(100% - 46px);
    border-radius: 30px;
    padding: 28px;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(20px);
}

.mockup-label {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--text-light);
}

.song-card {
    text-align: center;
    margin-bottom: 28px;
}

.album-cover {
    width: 100%;
    height: 180px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        var(--sunset-orange),
        var(--deep-purple)
    );
    margin-bottom: 18px;
}

.song-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.song-card p {
    color: var(--text-light);
}

.lyrics-box {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    font-style: italic;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.volume-bar {
    flex: 1;
    height: 8px;
    border-radius: 999px;
    background: rgba(0,0,0,0.08);
    overflow: hidden;
}

.volume-fill {
    width: 70%;
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--sunset-orange),
        var(--deep-purple)
    );
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 28px;
}

.immersive-section {
    padding: 140px 0;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #faf8ff 100%
    );
    position: relative;
    overflow: hidden;
}

.immersive-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    align-items: center;
}

.immersive-title {
    font-size: 60px;
    margin-bottom: 20px;
}

.immersive-subtitle {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.immersive-description {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-light);
    max-width: 620px;
}

.ad-flow-card {
    position: relative;
    padding: 30px;
    border-radius: 32px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.6);
}

.flow-step {
    padding: 24px;
    border-radius: 24px;
    margin-bottom: 22px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(0,0,0,0.04);
}

.flow-step:last-child {
    margin-bottom: 0;
}

.flow-label {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 10px;
}

.playlist-chip {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        var(--sunset-orange),
        var(--deep-purple)
    );
    color: white;
    font-weight: 600;
}

.arrow-transition {
    text-align: center;
    font-size: 30px;
    margin: 18px 0;
    animation: pulseArrow 1.6s infinite ease-in-out;
}

.ad-preview {
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        rgba(255,122,24,0.12),
        rgba(75,46,131,0.12)
    );
}

.ad-preview h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.ad-preview p {
    color: var(--text-light);
    line-height: 1.8;
}

@keyframes pulseArrow {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .immersive-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .immersive-title {
        font-size: 36px;
    }

    .immersive-subtitle {
        font-size: 18px;
    }

    .immersive-description {
        font-size: 16px;
    }
}

.ad-inventory-section {
    padding: 140px 0;
    background: linear-gradient(
        180deg,
        #faf8ff 0%,
        #ffffff 100%
    );
}

.inventory-header {
    text-align: center;
    margin-bottom: 70px;
}

.inventory-title {
    font-size: 60px;
    margin-bottom: 20px;
}

.inventory-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 24px;
}

.inventory-card {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.inventory-card:hover {
    transform: translateY(-6px);
}

.inventory-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.inventory-card.wide {
    grid-column: span 2;
}

.inventory-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.inventory-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.inventory-preview {
    margin-top: 24px;
    border-radius: 20px;
    padding: 18px;
    background: linear-gradient(
        135deg,
        rgba(255,122,24,0.12),
        rgba(75,46,131,0.12)
    );
}

.preview-banner {
    height: 52px;
    border-radius: 14px;
    margin-top: 12px;
    background: linear-gradient(
        90deg,
        var(--sunset-orange),
        var(--deep-purple)
    );
}

.preview-voucher {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        var(--sunset-orange),
        var(--deep-purple)
    );
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.preview-survey {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preview-survey span {
    display: block;
    height: 12px;
    border-radius: 999px;
    background: rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .inventory-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .inventory-card.large,
    .inventory-card.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .inventory-title {
        font-size: 36px;
    }

    .inventory-subtitle {
        font-size: 16px;
    }
}

.studio-live-section {
    padding: 140px 0;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #faf8ff 100%
    );
}

.studio-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 80px;
    align-items: center;
}

.studio-title {
    font-size: 60px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.studio-subtitle {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.studio-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 30px;
    max-width: 620px;
}

.studio-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.studio-features span {
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        var(--sunset-orange),
        var(--deep-purple)
    );
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.studio-photo-card {
    position: relative;
    height: 560px;
    border-radius: 36px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(255,122,24,0.35),
            rgba(75,46,131,0.45)
        ),
        url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?auto=format&fit=crop&w=900&q=80');
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.22);
}

.photo-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.live-badge {
    align-self: flex-start;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(14px);
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.karaoke-ui {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(18px);
    color: white;
}

.karaoke-ui p {
    margin-bottom: 18px;
    font-weight: 600;
}

.lyrics-line {
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.35);
    margin-bottom: 12px;
}

.lyrics-line.active {
    width: 100%;
}

.lyrics-line.short {
    width: 60%;
}

.shopping-card {
    align-self: flex-end;
    padding: 20px;
    width: 260px;
    border-radius: 24px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(18px);
}

.shopping-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.shopping-card strong {
    font-size: 18px;
}

@media (max-width: 768px) {
    .studio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .studio-title {
        font-size: 36px;
    }

    .studio-subtitle {
        font-size: 18px;
    }

    .studio-description {
        font-size: 16px;
    }

    .studio-photo-card {
        height: 420px;
    }
}

.data-trust-section {
    padding: 140px 0;
    background: linear-gradient(
        180deg,
        #faf8ff 0%,
        #ffffff 100%
    );
}

.data-trust-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    align-items: center;
}

.data-title {
    font-size: 60px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.data-subtitle {
    font-size: 20px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 620px;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-item {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.analytics-card {
    padding: 32px;
    border-radius: 32px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.6);
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    font-size: 18px;
}

.analytics-header strong {
    font-size: 28px;
}

.chart-area {
    height: 220px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 30px;
}

.chart-line {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    gap: 14px;
}

.chart-line span {
    flex: 1;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(
        180deg,
        var(--sunset-orange),
        var(--deep-purple)
    );
    animation: growChart 1.6s ease forwards;
}

@keyframes growChart {
    from {
        height: 0;
    }
}

.conversion-box {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        rgba(255,122,24,0.12),
        rgba(75,46,131,0.12)
    );
}

.conversion-box p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.conversion-box h3 {
    font-size: 42px;
    margin-bottom: 6px;
}

.conversion-box small {
    color: var(--text-light);
}

/* MOBILE */
@media (max-width: 768px) {
    .data-trust-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .data-title {
        font-size: 36px;
    }

    .data-subtitle {
        font-size: 16px;
    }
}

.footer-cta-section {
    position: relative;
    padding: 140px 0 80px;
    background:
        linear-gradient(
            180deg,
            rgba(10,10,20,0.96) 0%,
            rgba(6,6,14,1) 100%
        );
    overflow: hidden;
}

.footer-night-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,122,24,0.18), transparent 35%),
        radial-gradient(circle at 80% 20%, rgba(75,46,131,0.22), transparent 40%),
        radial-gradient(circle at 50% 85%, rgba(0,180,255,0.12), transparent 40%);
    filter: blur(80px);
    z-index: 0;
}

.footer-grid {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.footer-logo {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow:
        0 0 8px rgba(255,122,24,0.4),
        0 0 18px rgba(75,46,131,0.45),
        0 0 32px rgba(255,122,24,0.2);
}

.footer-tagline {
    font-size: 22px;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.82);
}

.footer-cta-btn {
    display: inline-block;
    padding: 16px 34px;
    border-radius: 999px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    background: linear-gradient(
        135deg,
        var(--sunset-orange),
        var(--deep-purple)
    );
    box-shadow: 0 12px 40px rgba(75,46,131,0.25);
    transition: all 0.3s ease;
    margin-bottom: 50px;
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.social-link {
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    color: white;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 60px;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-logo {
        font-size: 42px;
    }

    .footer-tagline {
        font-size: 18px;
    }
}

/* NEW SESSION */
/* SECTION */
.companion-section {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(180deg, #f5f5f7, #eaeaea);
}

/* TITLE */
.companion-title {
    font-size: 48px;
    font-weight: 700;
}

.companion-title span {
    background: linear-gradient(90deg, #ff7a18, #ff4d6d, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.companion-subtitle {
    margin-top: 15px;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CONTENT */
.companion-content {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 110px;
}

/* PHONE */
.phone {
    width: 260px;
    height: 500px;
    border-radius: 40px;
    background: #111;
    padding: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff7a18, #a855f7);
}

/* FLOAT CARDS */
.float {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.float-card {
    background: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px #a855f7;
    text-align: left;
    /* display: flex; */
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

/* GRADIENT SHADOW */
/* .float-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;

    background: linear-gradient(135deg, #ff7a18, #a855f7);
    z-index: -1;

    filter: blur(20px);
    opacity: 0.5;
} */

.float-card p {
    font-size: 20px;
    margin: 14px 0;
}

/* ICON */
.icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
}

/* GRADIENT ICONS */
.gradient1 {
    background: linear-gradient(135deg, #ff7a18, #ff4d6d);
}
.gradient2 {
    background: linear-gradient(135deg, #ff4d6d, #a855f7);
}
.gradient3 {
    background: linear-gradient(135deg, #a855f7, #ff7a18);
}
.gradient4 {
    background: linear-gradient(135deg, #ff7a18, #a855f7);
}

/* FEATURES */
.features {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-card h3 {
    margin-top: 15px;
}

.feature-card p {
    margin-top: 10px;
    color: #666;
}

.float.left .float-card:nth-child(1) {
    width: 230px;
    height: 120px;
    transform: translateX(-10px);
}

.float.left .float-card:nth-child(2) {
    width: 190px;
    transform: translateX(20px);
}

.float.right .float-card:nth-child(1) {
    width: 175px;
    height: 180px;
    transform: translateX(-10px);
}

.float.right .float-card:nth-child(2) {
    width: 220px;
    transform: translateX(20px);
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .companion-title {
        font-size: 32px;
    }

    .companion-content {
        flex-direction: column;
        gap: 0;
    }

    .float {
        flex-direction: row;
        justify-content: center;
    }

    .features {
        grid-template-columns: 1fr;
    }
    .float-card {
        display: none;
    }


}
@media (max-width: 480px) {
    .nav-btn {
        margin-left: 0;
        margin-right: 0;
    }
}

.icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 23px;
}
.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    padding: 20px;
    background: linear-gradient(180deg, #a95c24, #120023);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
    overflow: hidden;
}

/* NOTCH (kamera atas) */
.phone-screen::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    
    width: 100px;
    height: 25px;
    background: #000;
    border-radius: 20px;
}

/* OPTIONAL: titik kamera */
.phone-screen::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 45%;
    transform: translateX(40px);

    width: 6px;
    height: 6px;
    background: #222;
    border-radius: 50%;
}

/* COVER */
.music-cover {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    margin-top: 20px;

    background: linear-gradient(135deg, #ff7a18, #a855f7);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);

    display: flex;
    align-items: center;
    justify-content: center;
}

/* ICON */
.music-cover i {
    font-size: 50px;
    color: white;
    opacity: 0.9;
}

/* INFO */
.music-info {
    text-align: center;
    margin-top: 20px;
}

.music-info h4 {
    font-size: 18px;
}

.music-info p {
    font-size: 13px;
    color: #aaa;
}

/* PROGRESS */
.progress {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-top: 25px;
    position: relative;
}

.progress-bar {
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, #ff7a18, #a855f7);
    border-radius: 10px;
}

/* TIME */
.time {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #aaa;
    margin-top: 5px;
}

/* CONTROLS */
.controls {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.controls i {
    font-size: 18px;
    color: #ccc;
    cursor: pointer;
    transition: 0.3s;
}

.controls i:hover {
    color: white;
}

/* PLAY BUTTON */
.play-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;

    background: linear-gradient(135deg, #ff7a18, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* PREMIUM SESSION */
.premium-section {
    padding: 80px 20px;
    background: #f9fafb;
    font-family: 'Inter', sans-serif;
}

.container {
    margin: auto;
    text-align: center;
}

.title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.title span {
    background: linear-gradient(90deg, #ff7a18, #ff3d77, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: #6b7280;
    margin-bottom: 50px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

/* CARD */
.card {
    background: #fdf6f2;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    border: 1px solid #f1e3dc;
}

.card.large {
    background: #fdf4ee;
}

/* HEADER */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* ICON */
.icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.icon.orange {
    background: linear-gradient(135deg, #ff7a18, #ff3d77);
}

.icon.purple {
    background: linear-gradient(135deg, #9333ea, #ec4899);
    margin-bottom: 20px;
}

/* BADGE */
.badge {
    background: #f3e8ff;
    color: #9333ea;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
}

/* TEXT */
.card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* STATS */
.stats {
    display: flex;
    gap: 15px;
}

.stat-box {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 12px;
    flex: 1;
}

.stat-box h4 {
    font-size: 22px;
    margin-bottom: 5px;
}

.stat-box span {
    font-size: 13px;
    color: #6b7280;
}

/* LIST */
ul {
    padding-left: 18px;
}

ul li {
    margin-bottom: 10px;
    color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .title {
        font-size: 32px;
    }
}

/* LEFT COLUMN */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* SUB GRID (2 CARD KECIL) */
.sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* CARD KECIL */
.card.small {
    background: rgb(255 122 24 / 8%);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 20px;
}

/* MINI STAT */
.mini-stat {
    margin-top: 15px;
}

.mini-stat strong {
    font-size: 30px;
    display: block;
}

.mini-stat span {
    font-size: 13px;
    color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .sub-grid {
        grid-template-columns: 1fr;
    }
}

.cta-card {
    margin-top: 60px;
    padding: 60px 30px;
    border-radius: 24px;
    text-align: center;
    background: linear-gradient(135deg, #fff7ed, #fdf2f8);
    border: 2px solid #f3e8ff;
}

/* TITLE */
.cta-card h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* GRADIENT TEXT */
.cta-card h2 span {
    background: linear-gradient(90deg, #ff7a18, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.cta-card p {
    color: #6b7280;
    margin-bottom: 30px;
    font-size: 16px;
}

/* BUTTON */
.cta-btn {
    padding: 14px 30px;
    border-radius: 30px;
    border: none;
    color: white;
    font-weight: 500;
    cursor: pointer;
    background: linear-gradient(90deg, #ff7a18, #9333ea);
    transition: 0.3s;
}

/* HOVER */
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
}

.performance-section {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

.performance-section .title {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 10px;
}

.performance-section .subtitle {
    color: #6b7280;
    margin-bottom: 50px;
}

/* GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    border: 2px solid #eee;
    transition: 0.3s;
    text-align: start;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(78, 20, 112, 0.342);
}

/* ICON */
.icon.gradient {
    width: 55px;
    height: 55px;
    margin-bottom: 10px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    background: linear-gradient(135deg, #ff7a18, #9333ea);
    text-align: start;
}

/* TEXT */
.stat-card h3 {
    font-size: 30px;
    margin-bottom: 5px;
}

.stat-card p {
    color: #6b7280;
    font-size: 14px;
}

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

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.perfomance-chart-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    border: 2px solid #eee;
}

/* canvas */
.perfomance-chart-card canvas {
    width: 100% !important;
}

/* responsive */
@media (max-width: 768px) {
    .row-cart {
        grid-template-columns: 1fr !important;
    }
    .perfomance-chart-card {
        padding: 10px;
    }
    .perfomance-chart-card h2 {
        font-size: 16px;
    }
    .chart-box{
        padding: 10px;
    }
    .chart-title {
        font-size: 23px;
    }
    .chart-section{
        padding: 0px 20px;
    }
    .legend-item {
        font-size: 10px;
    }
    .chart-legend {
        gap: 13px;
    }
    .perfomance-chart-card{
        font-size: 15px;
    }
    .mm-cta-card {
        margin: 14px;
    }
}
.row-cart {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* MM CTA SECTION */
.mm-cta-section {
    padding: 0 0;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
}

.mm-cta-card {
    width: 100%;
    max-width: 1200px;
    padding: 50px;
    border-radius: 30px;

    background: linear-gradient(135deg, #ff7a18, #6b21a8);
    color: white;
    text-align: center;

    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.mm-cta-card h2 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;
}

.mm-cta-card p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 35px;
}

.mm-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mm-btn {
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* BUTTON PUTIH */
.mm-btn-primary {
    background: white;
    color: #111;
}

.mm-btn-primary:hover {
    background: #f1f1f1;
}

/* BUTTON BORDER PUTIH */
.mm-btn-outline {
    border: 2px solid white;
    color: white;
}

.mm-btn-outline:hover {
    background: white;
    color: #111;
}


/* FOOTER */
.mm-footer {
    background: #ffffff;
    color: #ccc;
    padding: 60px 20px 30px;
    font-size: 14px;
}

.mm-footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* BRAND */
.mm-footer-brand {
    max-width: 280px;
}

.mm-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a18, #6b21a8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.mm-footer-brand h3 {
    color: #000000;
    margin-bottom: 10px;
}

.mm-footer-brand p {
    color: #000000;
    opacity: 0.7;
    line-height: 1.5;
}

/* LINKS */
.mm-footer-links {
    color: #000000;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.mm-footer-col h4 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 15px;
}

.mm-footer-col ul {
    color: #000000;
    list-style: none;
    padding: 0;
}

.mm-footer-col ul li {
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.mm-footer-col ul li:hover {
    background: linear-gradient(135deg, #ff7a18, #6a00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DIVIDER */
.mm-footer-divider {
    border: none;
    border-top: 1px solid rgb(155 155 155 / 64%);
    margin: 40px auto 20px;
    max-width: 100%;
}

/* BOTTOM */
.mm-footer-bottom {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: #000000;
}

.mm-footer-bottom p {
    opacity: 0.7;
}

/* SOCIALS */
.mm-footer-socials a {
    margin-left: 20px;
    text-decoration: none;
    color: #000000;
    transition: 0.3s;
}

.mm-footer-socials a:hover {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .insight-card h3{
        font-size: 22px;
    }
    .icon-circle{
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .progress-value{
        font-size: 28px;
    }
    .premium-card .progress-value{
        font-size: 28px;
    }
    .cta-card h2 {
        font-size: 25px;
    }
    .mm-cta-card {
        margin: 14px;
        padding: 28px;
    }
    .mm-cta-card p{
        font-size: 13px;
    }
    .mm-btn{
        padding: 10px 19px;
        font-size: 13px;
    }
    .mm-cta-card h2{
        font-size: 23px;
    }
}

/* -------------------------- */
/* ANIMATION */
@keyframes mm-fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* DEFAULT (sembunyi dulu) */
.hero-content > * {
    opacity: 0;
}

/* TRIGGER ANIMATION */
.hero-content.show > * {
    animation: mm-fadeUp 0.8s ease forwards;
}

/* DELAY BIAR BERURUTAN */
.hero-content.show .hero-label {
    animation-delay: 0.2s;
}

.hero-content.show .hero-title {
    animation-delay: 0.4s;
}

.hero-content.show .hero-subtitle {
    animation-delay: 0.6s;
}

.hero-content.show .hero-btn {
    animation-delay: 0.8s;
}
/* DEFAULT (sembunyi dulu) */
.insight-header,
.insight-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

/* SAAT MUNCUL */
.show-insight {
    opacity: 1;
    transform: translateY(0);
}

/* DELAY BIAR BERURUTAN */
.insight-card:nth-child(1) {
    transition-delay: 0.2s;
}

.insight-card:nth-child(2) {
    transition-delay: 0.4s;
}
.progress-bar {
    border-radius: 10px;
    width: 0; /* mulai dari 0 */
    transition: width 1.5s ease;
}

/* warna */
.progress-old {
    background: #999;
}

.progress-new {
    background: linear-gradient(90deg, #ff7a18, #a855f7);
}

/* LINE DRAW ANIMATION */
.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2.5s ease;
}

/* AREA FADE + SLIDE */
.chart-area {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s ease;
}

/* SAAT AKTIF */
.chart-active .chart-line {
    stroke-dashoffset: 0;
}

.chart-active .chart-area {
    opacity: 0.6;
    transform: translateY(0);
}

.chart-title {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

/* saat aktif */
.chart-active .chart-title {
    opacity: 1;
    transform: translateY(0);
}

/* DEFAULT (sembunyi dulu) */
.companion-title,
.companion-subtitle,
.phone,
.float-card,
.feature-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

/* SAAT MUNCUL */
.companion-active .companion-title,
.companion-active .companion-subtitle,
.companion-active .phone,
.companion-active .float-card,
.companion-active .feature-card {
    opacity: 1;
    transform: translateY(0);
}

/* DELAY BIAR BERURUTAN */
.companion-active .companion-title { transition-delay: 0.2s; }
.companion-active .companion-subtitle { transition-delay: 0.4s; }
.companion-active .phone { transition-delay: 0.6s; }

.companion-active .float-card:nth-child(1) { transition-delay: 0.8s; }
.companion-active .float-card:nth-child(2) { transition-delay: 1s; }

.companion-active .feature-card:nth-child(1) { transition-delay: 1.2s; }
.companion-active .feature-card:nth-child(2) { transition-delay: 1.4s; }
.companion-active .feature-card:nth-child(3) { transition-delay: 1.6s; }
@keyframes floatY {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* aktif setelah muncul */
.companion-active .float-card {
    animation: floatY 3s ease-in-out infinite;
}

/* biar ga barengan (lebih natural) */
.companion-active .float.left .float-card:nth-child(1) {
    animation-delay: 0s;
}

.companion-active .float.left .float-card:nth-child(2) {
    animation-delay: 0.5s;
}

.companion-active .float.right .float-card:nth-child(1) {
    animation-delay: 1s;
}

.companion-active .float.right .float-card:nth-child(2) {
    animation-delay: 1.5s;
}

/* DEFAULT (sembunyi dulu) */
.premium-section .title,
.premium-section .subtitle,
.premium-section .card,
.premium-section .cta-card {
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* SAAT MUNCUL */
.premium-active .title,
.premium-active .subtitle,
.premium-active .card,
.premium-active .cta-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* DELAY BIAR BERURUTAN */
.premium-active .title { transition-delay: 1.2s; }
.premium-active .subtitle { transition-delay: 1.4s; }

/* CARD BESAR */
.premium-active .card.large { transition-delay: 1.6s; }

/* CARD KECIL */
.premium-active .sub-grid .card:nth-child(1) { transition-delay: 1.8s; }
.premium-active .sub-grid .card:nth-child(2) { transition-delay: 2s; }

/* CARD KANAN */
.premium-active .grid > .card:last-child { transition-delay: 2.2s; }

/* CTA PALING AKHIR */
.premium-active .cta-card { transition-delay: 2.4s; }

/* DEFAULT */
.performance-section .title,
.performance-section .subtitle,
.performance-section .stat-card,
.performance-section .perfomance-chart-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE */
.performance-active .title,
.performance-active .subtitle,
.performance-active .stat-card,
.performance-active .perfomance-chart-card {
    opacity: 1;
    transform: translateY(0);
}

/* DELAY */
.performance-active .title { transition-delay: 0.2s; }
.performance-active .subtitle { transition-delay: 0.4s; }

.performance-active .stat-card:nth-child(1) { transition-delay: 0.6s; }
.performance-active .stat-card:nth-child(2) { transition-delay: 0.8s; }
.performance-active .stat-card:nth-child(3) { transition-delay: 1s; }
.performance-active .stat-card:nth-child(4) { transition-delay: 1.2s; }

.performance-active .perfomance-chart-card:nth-child(1) { transition-delay: 1.4s; }
.performance-active .perfomance-chart-card:nth-child(2) { transition-delay: 1.6s; }

/* DEFAULT (sembunyi dulu) */
.mm-cta-card {
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.mm-cta-card h2,
.mm-cta-card p,
.mm-cta-buttons {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* SAAT MUNCUL */
.mm-cta-active .mm-cta-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mm-cta-active .mm-cta-card h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.mm-cta-active .mm-cta-card p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.mm-cta-active .mm-cta-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.mm-btn {
    transition: all 0.3s ease;
}

.mm-btn:hover {
    transform: translateY(-3px);
}

.mm-btn-primary:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.mm-btn-outline:hover {
    background: white;
    color: #111;
}


.immersive-section-new {
    padding: 100px 8%;
    color: white;
}

.immersive-container-new {
    display: grid;
    grid-template-columns: 1fr 320px;
    align-items: center;
    gap: 60px;
}

/* MOBILE */
@media (max-width: 768px) {
    .immersive-container-new {
        display: block;
    }

    .immersive-text-new {
        margin-bottom: 40px;
    }

    .phone-new {
        margin: auto;
    }
}

.text-black{
    color: black;
}

/* PHONE */
.phone-new {
    width: 260px;
    height: 520px;
    background: #111;
    border-radius: 40px;
    padding: 14px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.phone-screen-new {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(180deg, #a95c24, #120023);
    position: relative;
    overflow: hidden;
}

/* NOTCH (kamera atas) */
.phone-screen-new::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    
    width: 100px;
    height: 25px;
    background: #000;
    border-radius: 20px;
}

/* OPTIONAL: titik kamera */
.phone-screen-new::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 45%;
    transform: translateX(40px);

    width: 6px;
    height: 6px;
    background: #222;
    border-radius: 50%;
}


/* MODAL */
.mood-modal-new {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #0f172a;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    transition: 0.5s;
}

.mood-option-new {
    padding: 12px;
    margin-top: 10px;
    border-radius: 10px;
    background: #1e293b;
    cursor: pointer;
}

.mood-option-new.active-new {
    background: linear-gradient(90deg, #ff7a18, #a855f7);
}

/* PLAYER */
.music-player-new {
    position: absolute;
    bottom: -100%;
    width: 100%;
    height: 90%;
    padding: 20px;
    text-align: center;
    transition: 0.6s ease;
}

.music-player-new.show-new {
    bottom: 0;
}

/* COVER */
.music-cover-new {
    width: 140px;
    height: 140px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff7a18, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.mt{
    margin-top: 10px;
}

/* INFO */
.music-info-new {
    margin: 15px 0;
}

.progress-bar-new {
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, #ff7a18, #a855f7);
}

/* TIME */
.time-new {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 5px;
}

/* CONTROLS */
.controls-new {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 18px;
}

.play-btn-new {
    width: 45px;
    height: 45px;
    background: white;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CURSOR */
.cursor-new {
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    top: 300px;
    animation: cursorMove-new 4s infinite;
}

@keyframes cursorMove-new {
    0% { top: 300px; }
    30% { top: 340px; }
    60% { top: 380px; }
    100% { top: 300px; }
}

/* TEXT */
.immersive-text-new h2 {
    font-size: 38px;
}
.immersive-text-new {
    text-align: start;
}

.immersive-text-new span {
    background: linear-gradient(90deg, #ff7a18, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* MODAL */
.mood-modal-new {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(180deg, #a95c24, #120023);
    padding: 20px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    transition: 0.5s;
    z-index: 2;
}

.mood-modal-new.hide-new {
    bottom: -100%;
}

/* OPTION */
.mood-option-new {
    padding: 12px;
    margin-top: 10px;
    border-radius: 10px;
    background: #1e293b;
}

.mood-option-new.active-new {
    background: linear-gradient(90deg, #ff7a18, #a855f7);
}

/* PLAYER FULL */
.music-player-new {
    position: absolute;
    bottom: -100%;
    width: 100%;
    padding: 20px;
    text-align: center;
    transition: 0.6s ease;
}

.music-player-new.show-new {
    bottom: 0;
}

/* COVER ANIMASI */
.music-cover-new {
    width: 150px;
    height: 150px;
    margin: auto;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff7a18, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 20px;
}

@keyframes rotateCover-new {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
/* CURSOR DEFAULT HILANG */
.cursor-new {
    opacity: 0;
    transition: 0.3s;
}

/* MUNCUL SAAT MODAL AKTIF */
.cursor-new.show-new {
    opacity: 1;
}

.experience-section-new {
    padding: 100px 8%;
    background: #ffffff;
    color: black;
}

.experience-container-new {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

/* TEXT */
.experience-text-new h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.experience-text-new span {
    background: linear-gradient(90deg, #ff7a18, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-text-new p {
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.experience-list-new {
    list-style: none;
    padding: 0;
}

.experience-list-new li {
    margin-bottom: 10px;
    margin-top: 10px;
}

/* VISUAL */
.experience-visual-new {
    position: relative;
}

.experience-card-new {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* IMAGE */
.experience-img-new {
    width: 100%;
    display: block;
}

/* OVERLAY */
.experience-overlay-new {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px;
}

/* KARAOKE UI */
.karaoke-ui-new {
    background: rgba(0,0,0,0.6);
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    color: white;
}

/* WAVE ANIMATION */
.wave-new {
    width: 50px;
    height: 5px;
    background: linear-gradient(90deg, #ff7a18, #a855f7);
    margin-top: 5px;
    animation: waveAnim-new 1s infinite;
}

@keyframes waveAnim-new {
    0% { transform: scaleX(0.5); }
    50% { transform: scaleX(1); }
    100% { transform: scaleX(0.5); }
}

/* SHOPPING TAG */
.shopping-tag-new {
    background: linear-gradient(90deg, #ff7a18, #a855f7);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
}

.experience-text-new {
    text-align: start;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .experience-container-new {
        display: block;
    }

    .experience-text-new {
        margin-bottom: 40px;
    }
}

/* DEFAULT (SEBELUM MUNCUL) */
.experience-text-new,
.experience-visual-new {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* KHUSUS ARAH */
.experience-text-new {
    transform: translateX(-60px);
}

.experience-visual-new {
    transform: translateX(60px);
}

/* SAAT MUNCUL */
.show-new {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.contact-section {
    width: 100%;
}

/* HEADER */
.contact-header {
    justify-content: space-between;
    background: linear-gradient(135deg, #ff7a18, #4c1d95);
    color: white;
    padding: 130px 60px;
    padding-top: relative;
    transform: translateY(-120px);
    height: 360px;
}

.contact-header-text {
    max-width: 50%;
}

.contact-header-text h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.contact-header-text p {
    font-size: 14px;
    opacity: 0.8;
}

.contact-header-img {
    position: relative;
}

.contact-header-img img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.contact-row{
    display: flex;
    gap: 20px;
    justify-content: center;
}
@media (max-width: 768px) {
    .contact-row {
        display: block;
    }

    .contact-row > * {
        margin-bottom: 15px;
    }
    .contact-header-img img{
        width: 250px;
        height: 290px;
    }
    .contact-content{
        margin-left: 0 !important;
    }
    .contact-info{
        display: block !important;
    }
    .mm-footer-container{
        display: block !important;
    }

    .contact-header-text h1 {
        font-size: 38px;
    }
    .none{
        display: none !important;
    }

}

/* CONTENT */
.contact-content {
    display: flex;
    padding: 50px;
    gap: 40px;
    margin-top: 85px;
    margin-left: 65px;
}


/* LEFT */
.contact-left {
    flex: 1;
    font-size: 10px;
}
.contact-left h3 {
    font-size: 20px;
}
.contact-left p {
    font-size: 15px;
}

.contact-info {
    justify-content: space-between;
    margin: 30px 0;
}

.contact-info h4 {
    margin: 0;
    font-size: 15px;
}
.contact-right h3{
    font-size: 20px;
}

.contact-info span {
    font-size: 14px;
    color: gray;
}

/* FORM */
.contact-form {
    background: linear-gradient(135deg, #ff6a00, #260c61);
    padding: 25px;
    border-radius: 10px;
    color: white;
    margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border-radius: 20px;
    border: none;
    outline: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: white;
    opacity: 1; /* biar benar-benar putih */
}

.contact-form textarea {
    height: 100px;
    border-radius: 15px;
}

.contact-form button {
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid white;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: white;
    color: #4c1d95; /* biar kontras sama background */
}

/* RIGHT */
.contact-right {
    flex: 1;
}

.map img {
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

.social {
    margin-top: 20px;
}

.icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.icons span {
    width: 35px;
    height: 35px;
    background: #2c3e50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .contact-header {
        flex-direction: column;
        text-align: center;
    }

    .contact-header-text {
        max-width: 100%;
    }

    .contact-content {
        flex-direction: column;
    }
}

.icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.icons a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6a00, #6c2bff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.icons a:hover {
    background: #1db954;
    transform: scale(1.1);
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 20px;
    color: #fff; /* sesuaikan warna */
    background: linear-gradient(135deg, #ff7a18, #a855f7);
    padding: 12px;
    border-radius: 50%;
}
/* FLOATING POSITION */
.switch-bahasa {
    position: fixed;
    bottom: 20px;
    right: 50px;
    z-index: 9999;
}

/* GLASS CONTAINER */
.switch-container {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 10px 18px;
    border-radius: 50px;

    /* 🔥 GRADIENT ORANGE → DEEP PURPLE */
    background: linear-gradient(135deg, #ff7a18, #6a00ff);

    /* biar ada efek transparan dikit */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    /* border soft */
    border: 1px solid rgba(255, 255, 255, 0.2);

    /* glow effect */
    box-shadow: 
        0 8px 30px rgba(106, 0, 255, 0.4),
        0 4px 15px rgba(255, 122, 24, 0.3);
}

/* LABEL */
.label {
    font-size: 13px;
    color: white;
    opacity: 0.8;
}

/* TOGGLE */
.toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

/* HIDE INPUT */
.toggle input {
    display: none;
}

/* SLIDER */
.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;

    background: #ccc;
    border-radius: 50px;

    transition: 0.3s;
}

/* BULATAN */
.slider::before {
    content: "";
    position: absolute;

    width: 20px;
    height: 20px;

    left: 3px;
    top: 3px;

    background: white;
    border-radius: 50%;

    transition: 0.3s;
}

/* ACTIVE (ON) */
.toggle input:checked + .slider {
    background: #22c55e; /* hijau */
}

.toggle input:checked + .slider::before {
    transform: translateX(24px);
}

/* ANIMASI GOYANG HALUS */
@keyframes swingFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-3px) rotate(-1deg);
    }
    50% {
        transform: translateY(0px) rotate(1deg);
    }
    75% {
        transform: translateY(3px) rotate(-1deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* APPLY KE SWITCH */
.switch-bahasa {

    animation: swingFloat 4s ease-in-out infinite;
}

/* ANIMASI SWING */
.swing {
    animation: swing 2.5s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes swing {
    0%   { transform: rotate(0deg); }
    20%  { transform: rotate(6deg); }
    40%  { transform: rotate(-6deg); }
    60%  { transform: rotate(4deg); }
    80%  { transform: rotate(-4deg); }
    100% { transform: rotate(0deg); }
}


.news-section {
    padding: 0px 8%;
    /* background: #f8fafc; */
    transform: translateY(-177px);
}

/* HERO */
.news-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.news-hero img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.news-hero-overlay {
    position: absolute;
    bottom: 20px;
    left: 30px;
    color: white;
}

.news-hero-overlay h1 {
    font-size: 36px;
    margin-bottom: 5px;
}

/* FEATURED */
.news-featured {
    display: flex;
    gap: 30px;
    margin-top: 70px;
    align-items: center;
}

.news-featured-img img {
    width: 420px;
    max-width: 420px;
    border-radius: 16px;
}

.news-featured-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.news-featured-text p {
    color: #555;
    margin-bottom: 15px;
}

.news-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #777;
}

.news-author img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

/* GRID */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.news-card {
    background: white;
    padding: 15px;
    border-radius: 14px;
    transition: 0.3s;
    cursor: pointer;
}

.news-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    object-fit: cover;
    height: 200px;
}

.news-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.news-card p {
    font-size: 13px;
    color: #666;
}

/* HOVER */
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .news-featured {
        flex-direction: column;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-left{
        margin-top: 25px;
    }
    .news-card{
        padding: 0 !important;
    }
    
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.plans-section {
    padding: 80px 8%;
    background: linear-gradient(135deg, #ff7a18, #6a00ff);
    color: white;
    text-align: center;
}

.plans-title {
    font-size: 36px;
}

/* GRID */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.plan-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* TEXT */
.plan-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.plan-desc {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 15px;
}

.plan-duration {
    font-size: 13px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.plan-price {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* BUTTON */
.plan-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: white;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.plan-btn:hover {
    background: linear-gradient(135deg, #6a00ff, #9d4edd);
}

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

@media (max-width: 576px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
}
.plans-title-p{
    margin-bottom: 40px;
}

.news-featured {
    transition: 0.3s ease;
}

.news-card {
    cursor: pointer;
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-6px);
    opacity: 0.9;
}
#featuredContent {
    max-height: 200px;   /* tinggi area (bebas mau berapa) */
    overflow-y: auto;    /* aktifin scroll */
    padding-right: 8px;  /* biar ga ketutup scrollbar */
}

.mm-footer-col ul li a {
    text-decoration: none; /* hilangin garis bawah */
    color: rgb(122, 122, 122); /* atau sesuaikan warna kamu */
}

.mm-footer-col ul li a:hover {
    color: #ff7a18; /* contoh hover biar keren */
}

.policy-section {
    padding: 0 20px;
    background: #ffffff; /* optional: dark background */
}

.policy-section .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left; /* penting: biar ga center */
    color: #000000;
    line-height: 1.7;
}

/* Judul utama */
.policy-section h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #000000;
}

/* Sub judul */
.policy-section h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
    color: #000000; /* oren */
}

/* Paragraf */
.policy-section p {
    margin-bottom: 15px;
    font-size: 15px;
}

/* List */
.policy-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-section ul li {
    margin-bottom: 8px;
}

/* Optional: link style */
.policy-section a {
    color: #000000; /* ungu */
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}