/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: radial-gradient(circle at top, #0f2f2f, #05080d 70%);
    color: white;
    overflow-x: hidden;
}

/* ========================= */
/* SECTION SYSTEM */
/* ========================= */
section {
    position: relative;
    z-index: 1;
}

/* spacing consistency */
.section-padding {
    padding: 120px 40px;
}

/* container width */
.container {
    max-width: 1200px;
    margin: auto;
}

/* ========================= */
/* NAVBAR */
/* ========================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,255,213,0.6);
}

.logo span {
    background: linear-gradient(90deg, #00ffd5, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================= */
/* SLIDE MENU (MOBILE) */
/* ========================= */
.nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(10, 15, 20, 0.95);
    backdrop-filter: blur(20px);
    transition: 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-container.active {
    right: 0;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    text-align: center;
}

.nav-links li {
    margin: 25px 0;
}

.nav-links a {
    font-size: 17px;
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
}

/* HOVER EFFECT LINE */
.nav-links a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #00ffd5;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #00ffd5;
}

/* ========================= */
/* OVERLAY */
/* ========================= */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ========================= */
/* HAMBURGER PREMIUM */
/* ========================= */
.hamburger {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: #00ffd5;
    border-radius: 3px;
    transition: 0.4s;
}

/* ANIMATION TO X */
.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(7px, -6px);
}

/* ========================= */
/* HERO SECTION FULL */
/* ========================= */


/* ========================= */
/* HEADER SECTION */
/* ========================= */
.header-section {
    text-align: center;
    padding: 100px 20px;
}

.header-section h2 {
    font-size: 38px;
    color: #00ffd5;
    margin-bottom: 15px;
}

.header-section p {
    color: #aaa;
    max-width: 600px;
    margin: auto;
}

/* ========================= */
/* CARDS */
/* ========================= */
.pengenalan {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 60px;
    flex-wrap: wrap;
}

.card {
    width: 270px;
    padding: 25px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0,255,213,0.3);
}

.card h3 {
    color: #00ffd5;
    margin-bottom: 10px;
}

.card p {
    color: #aaa;
}

.footer-simple {
    text-align: center;
    padding: 25px 15px;

    font-size: 13px;
    color: #777;

    background: linear-gradient(
        180deg,
        #020405 0%,
        #05080d 100%
    );

    border-top: 1px solid rgba(255,255,255,0.05);
}

/* subtle glow line */
.footer-simple::before {
    content: "";
    display: block;
    height: 1px;
    margin-bottom: 15px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0,255,213,0.6),
        transparent
    );
}

/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 40px;
    }

    .hero-right {
        display: none;
    }

}

/* DESKTOP MODE */
@media (min-width: 769px) {

    .nav-container {
        position: static;
        height: auto;
        width: auto;
        background: none;
        backdrop-filter: none;
    }

    .nav-links {
        display: flex;
    }

    .nav-links li {
        margin: 0 15px;
    }

    .hamburger {
        display: none;
    }

    .overlay {
        display: none;
    }
}



/* ========================= */
/* GLOBAL SECTION POLISH */
/* ========================= */
.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0,255,213,0.18);
    background: rgba(255,255,255,0.04);
    color: #9feee2;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-lead {
    max-width: 720px;
    margin: 0 auto;
    color: #9cb7b7;
    font-size: 16px;
    line-height: 1.75;
}

.section-chip-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.section-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: #dffbfb;
    font-size: 13px;
}

.beone-header .section-lead,
.income-container .section-lead,
.audience-section .section-lead,
.testimonial-section .section-lead,
.faq-section .section-lead {
    margin-bottom: 0;
}

.market-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.market-points span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: #dff3f3;
    font-size: 13px;
}

.dealer-list li {
    position: relative;
    padding-left: 26px;
}

.dealer-list li::before {
    content: "â€¢";
    position: absolute;
    left: 0;
    top: 0;
    color: #00ffd5;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 768px) {
    .section-kicker {
        font-size: 10px;
        letter-spacing: 0.12em;
        padding: 7px 12px;
        margin-bottom: 12px;
    }

    .section-lead {
        font-size: 14px;
        line-height: 1.65;
    }

    .section-chip-row {
        gap: 8px;
        margin-top: 16px;
    }

    .section-chip {
        font-size: 11px;
        padding: 8px 10px;
    }

    .market-points {
        justify-content: center;
        gap: 8px;
        margin-bottom: 18px;
    }

    .market-points span {
        font-size: 11px;
        padding: 8px 10px;
    }
}

/* ========================= */
/* FULL PAGE VISUAL REFRESH */
/* ========================= */
.beone-features,
.income-section,
.audience-section,
.testimonial-section,
.faq-section,
.dealer-cta {
    overflow: hidden;
}

.beone-features {
    background:
        radial-gradient(circle at top center, rgba(0,255,213,0.12), transparent 30%),
        linear-gradient(180deg, #051012 0%, #061414 100%);
}

.beone-header {
    max-width: 780px;
    margin: 0 auto 54px;
}

.beone-grid {
    max-width: 1180px;
    margin: 0 auto;
    gap: 24px;
}

.beone-card {
    min-height: 290px;
    padding: 28px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(0,255,213,0.18), transparent 34%),
        linear-gradient(160deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02)),
        rgba(8,20,22,0.9);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow:
        0 24px 48px rgba(0,0,0,0.26),
        inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.beone-card::after {
    content: "";
    position: absolute;
    inset: auto -30px -30px auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,170,255,0.16), transparent 70%);
    opacity: 0.8;
    pointer-events: none;
}

.beone-card.highlight {
    transform: translateY(-8px);
    border-color: rgba(0,255,213,0.32);
    box-shadow:
        0 28px 60px rgba(0,0,0,0.28),
        0 0 35px rgba(0,255,213,0.12);
}

.beone-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.beone-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(0,255,213,0.24), rgba(0,170,255,0.12)),
        rgba(255,255,255,0.04);
    border: 1px solid rgba(0,255,213,0.2);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 16px 30px rgba(0,0,0,0.2);
}

.beone-icon i {
    font-size: 24px;
    color: #00ffd5;
}

.beone-card-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    color: #d8fdf7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.beone-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.beone-card p {
    color: #bfd0d0;
    font-size: 15px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.beone-card-meta {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #91f3e4;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.tag {
    margin-top: auto;
    align-self: flex-start;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.beone-cta {
    max-width: 920px;
    margin: 56px auto 0;
    padding: 0;
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(0,255,213,0.16), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(7,18,20,0.88);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 22px 48px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.06);
    overflow: hidden;
    position: relative;
    text-align: left;
}

.beone-cta::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #00ffd5, #00aaff);
}

.beone-cta-copy {
    padding: 32px 32px 18px;
}

.beone-cta-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 0;
    border-radius: 0;
    background: none;
    border: none;
    color: #a6fff1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.beone-cta h3 {
    margin-bottom: 12px;
    font-size: clamp(28px, 3vw, 34px);
    line-height: 1.1;
}

.beone-cta-copy p {
    max-width: 620px;
    color: #b8c9c9;
    font-size: 15px;
    line-height: 1.75;
}

.beone-cta-actions {
    display: flex;
    gap: 14px;
    padding: 0 32px 24px;
}

.beone-cta-primary,
.beone-cta-secondary {
    min-width: 190px;
}

.beone-cta-secondary {
    background: rgba(255,255,255,0.02);
}

.beone-cta-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 32px 30px;
    border-top: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.02);
}

.beone-cta-points span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: #dff7f7;
    font-size: 13px;
}

.beone-cta-points i {
    color: #00ffd5;
}

@media (min-width: 769px) {
    .beone-cta {
        max-width: 920px;
        margin: 40px auto 0;
        padding: 0;
        border-radius: 0;
        background: none;
        border: none;
        box-shadow: none;
        overflow: visible;
        text-align: center;
    }

    .beone-cta::before {
        display: none;
    }

    .beone-cta-copy {
        padding: 0;
        text-align: center;
    }

    .beone-cta-copy p {
        margin: 0 auto;
    }

    .beone-cta-actions {
        justify-content: center;
        padding: 18px 0 0;
    }

    .beone-cta-points {
        display: none;
    }
}

.market-container {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
        rgba(7,19,21,0.86);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow:
        0 24px 60px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.market-container::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0,255,213,0.16), transparent 72%);
    filter: blur(20px);
}

.market-left .section-lead {
    margin: 0 0 26px;
    max-width: 100%;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.market-stat {
    padding: 18px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.market-stat strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 16px;
}

.market-stat span {
    color: #a9c2c2;
    font-size: 13px;
    line-height: 1.65;
}

.market-right {
    min-height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.market-right::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0,170,255,0.18), transparent 72%);
    filter: blur(24px);
}

.market-visual-card {
    position: relative;
    z-index: 1;
    width: min(430px, 100%);
    padding: 24px 24px 22px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(8,20,22,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 24px 50px rgba(0,0,0,0.26),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.market-visual-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    border-radius: 30px 30px 0 0;
    background: linear-gradient(90deg, #00ffd5, #00aaff);
}

.market-visual-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #aafcf0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.market-visual-card img {
    width: 100%;
    max-width: 100%;
    transform: none;
    border-radius: 18px;
    filter: drop-shadow(0 24px 36px rgba(0,0,0,0.45));
}

.market-visual-card img:hover {
    transform: scale(1.03);
}

.market-visual-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: #b8cccc;
    font-size: 13px;
    line-height: 1.65;
}

.market-visual-note strong {
    color: #ffffff;
}

.income-section {
    background:
        radial-gradient(circle at top center, rgba(0,255,213,0.08), transparent 32%),
        linear-gradient(180deg, #030809 0%, #041112 100%);
}

.income-container {
    max-width: 980px;
}

.income-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
        rgba(7,17,20,0.84);
    border: 1px solid rgba(255,255,255,0.08);
}

.income-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, #00ffd5, #00aaff);
}

.income-note {
    max-width: 760px;
    margin: 28px auto 0;
    font-size: 15px;
    line-height: 1.7;
}

.audience-section {
    background:
        radial-gradient(circle at top center, rgba(0,255,213,0.08), transparent 28%),
        linear-gradient(180deg, #071516 0%, #081a1a 100%);
}

.audience-grid {
    max-width: 1040px;
    gap: 24px;
}

.audience-card {
    overflow: hidden;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
        rgba(8,19,21,0.84);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 14px 34px rgba(0,0,0,0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.audience-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,255,213,0.22);
    box-shadow:
        0 22px 42px rgba(0,0,0,0.24),
        0 0 26px rgba(0,255,213,0.08);
}

.audience-card img {
    width: 100%;
    height: 168px;
    object-fit: cover;
}

.audience-card-body {
    padding: 18px 18px 20px;
    text-align: left;
}

.audience-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(0,255,213,0.1);
    border: 1px solid rgba(0,255,213,0.16);
    color: #98f5e8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.audience-card h3 {
    margin-bottom: 10px;
    color: #efffff;
    font-size: 20px;
    line-height: 1.25;
}

.audience-card p {
    padding: 0;
    font-size: 14px;
    color: #bfd3d3;
    line-height: 1.7;
}

.audience-note {
    max-width: 980px;
    margin-top: 34px;
    padding: 28px 30px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
        rgba(7,18,20,0.84);
    border: 1px solid rgba(255,255,255,0.08);
    color: #dceded;
    line-height: 1.75;
}

.testimonial-section {
    background:
        radial-gradient(circle at top center, rgba(0,255,213,0.1), transparent 24%),
        linear-gradient(180deg, #05090d 0%, #071214 100%);
}

.testimonial-track {
    gap: 24px;
    padding: 12px 6px;
}

.testimonial-card {
    min-width: 310px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(7,18,20,0.84);
    border: 1px solid rgba(255,255,255,0.08);
}

.dealer-cta {
    background:
        radial-gradient(circle at top center, rgba(0,255,213,0.08), transparent 28%),
        linear-gradient(180deg, #030708 0%, #051112 100%);
}

.dealer-wrapper {
    padding: 44px;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
        rgba(7,18,20,0.84);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow:
        0 24px 58px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.dealer-left .section-kicker {
    margin-bottom: 18px;
}

.dealer-left p {
    color: #b8c9c9;
}

.dealer-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.dealer-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #dff7f7;
    font-size: 13px;
}

.dealer-note {
    margin-top: 26px;
    padding: 18px 20px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    color: #c7d9d9;
    line-height: 1.7;
}

.dealer-note strong {
    color: #ffffff;
}

.dealer-card {
    width: min(380px, 100%);
}

.dealer-card-mini {
    display: block;
    margin-top: 14px;
    color: #9db9b9;
    font-size: 12px;
    line-height: 1.55;
}

.dealer-card .dealer-sub {
    max-width: 24ch;
    margin: 2px auto 18px !important;
    text-align: center;
    line-height: 1.55 !important;
}

@media (min-width: 769px) {
    .dealer-wrapper {
        padding: 18px 0 0 !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
    }

    .dealer-left {
        max-width: 560px;
    }

    .dealer-left .dealer-note {
        padding: 16px 0 0;
        background: none;
        border: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        border-radius: 0;
    }
}

.faq-section {
    background:
        radial-gradient(circle at top center, rgba(0,255,213,0.08), transparent 26%),
        linear-gradient(180deg, #05090d 0%, #071315 100%);
}

.faq-wrapper {
    max-width: 920px;
    gap: 18px;
}

.faq-item {
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
        rgba(7,18,20,0.84);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

.faq-question {
    padding: 20px 22px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .beone-header {
        margin-bottom: 34px;
    }

    .beone-card {
        min-height: auto;
        padding: 22px 18px;
        border-radius: 24px;
    }

    .beone-card.highlight {
        transform: none;
    }

    .beone-card-top {
        margin-bottom: 18px;
        gap: 10px;
    }

    .beone-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .beone-icon i {
        font-size: 20px;
    }

    .beone-card-tag {
        padding: 7px 11px;
        font-size: 10px;
        letter-spacing: 0.1em;
    }

    .beone-card h3 {
        font-size: 22px;
    }

    .beone-card p {
        font-size: 14px;
        line-height: 1.65;
    }

    .beone-card-meta {
        padding-top: 14px;
        font-size: 12px;
    }

    .beone-cta {
        margin-top: 24px !important;
        border-radius: 0 !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    .beone-cta::before {
        display: none !important;
    }

    .beone-cta-copy {
        padding: 0 !important;
        text-align: center;
    }

    .beone-cta-kicker {
        margin-bottom: 12px;
        font-size: 10px;
    }

    .beone-cta h3 {
        font-size: 24px;
    }

    .beone-cta-copy p {
        font-size: 14px;
        line-height: 1.65;
    }

    .beone-cta-actions {
        flex-direction: column;
        align-items: center;
        padding: 16px 0 0 !important;
    }

    .beone-cta-primary,
    .beone-cta-secondary {
        width: 100%;
        max-width: 260px;
    }

    .beone-cta-points {
        display: none !important;
    }

    .market-container {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .market-stats {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    .market-stat {
        padding: 14px;
        border-radius: 16px;
        text-align: left;
    }

    .market-stat strong {
        font-size: 15px;
    }

    .market-stat span {
        font-size: 12px;
    }

    .market-right {
        min-height: auto;
    }

    .market-visual-card {
        width: 100%;
        padding: 18px 16px 16px;
        border-radius: 22px;
    }

    .market-visual-badge {
        margin-bottom: 14px;
        font-size: 10px;
        padding: 7px 10px;
    }

    .market-visual-card img {
        border-radius: 14px;
    }

    .market-visual-note {
        margin-top: 14px;
        padding: 12px 13px;
        font-size: 12px;
        text-align: left;
    }

    .income-card {
        padding: 18px;
        border-radius: 22px;
    }

    .income-note {
        font-size: 14px;
        padding: 16px 18px;
    }

    .audience-grid {
        gap: 16px;
    }

    .audience-card {
        border-radius: 18px;
    }

    .audience-card img {
        height: 118px;
    }

    .audience-card-body {
        padding: 14px 12px 16px;
    }

    .audience-badge {
        margin-bottom: 10px;
        font-size: 9px;
        padding: 6px 9px;
    }

    .audience-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .audience-card p {
        font-size: 12px;
        line-height: 1.55;
    }

    .audience-note {
        padding: 20px 18px;
        border-radius: 20px;
    }

    .testimonial-track {
        gap: 16px;
        padding: 8px 0;
    }

    .testimonial-card {
        border-radius: 20px;
        min-width: auto;
    }

    .dealer-wrapper {
        padding: 24px 18px;
        border-radius: 24px;
        gap: 34px;
    }

    .dealer-pill-row {
        justify-content: center;
        gap: 8px;
        margin-bottom: 18px;
    }

    .dealer-pill {
        font-size: 11px;
        padding: 8px 10px;
    }

    .dealer-note {
        margin-top: 20px;
        padding: 14px 15px;
        font-size: 13px;
        text-align: left;
    }

    .dealer-card .dealer-sub {
        max-width: 20ch;
        margin-bottom: 16px !important;
        line-height: 1.5 !important;
    }

    .faq-wrapper {
        gap: 14px;
    }

    .faq-item {
        border-radius: 18px;
    }

    .faq-question {
        padding: 18px 16px;
        font-size: 14px;
    }
}

/* ========================= */
/* HERO + NAV REFRESH */
/* ========================= */
.navbar {
    top: 14px;
    left: 50%;
    width: min(calc(100% - 28px), 1220px);
    padding: 14px 18px;
    transform: translateX(-50%);
    border-radius: 22px;
    background: rgba(6, 16, 18, 0.76);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    font-size: 24px;
    letter-spacing: 0.04em;
}

.logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #a4f8ec;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-links {
    gap: 8px;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    padding: 10px 14px;
    border-radius: 999px;
    color: #d3e4e4;
    font-size: 14px;
    font-weight: 500;
}

.nav-links a::after {
    display: none;
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.06);
}

.nav-cta {
    padding: 11px 18px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, #00ffd5, #00aaff);
    color: #002222;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(0,255,213,0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(0,255,213,0.22);
}

.hero {
    min-height: 100vh;
    padding: 140px 80px 70px;
    gap: 64px;
    align-items: center;
}

.hero-left {
    max-width: 620px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #9feee2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-left h1 {
    font-size: clamp(42px, 5.6vw, 68px);
    line-height: 1.02;
    margin-bottom: 18px;
    background: none;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
}

.hero-left h1 span {
    background: linear-gradient(90deg, #00ffd5, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    max-width: 560px;
    margin: 0 0 28px;
    color: #b7c9c9;
    font-size: 17px;
    line-height: 1.8;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #dff9f9;
    font-size: 13px;
}

.hero-points i {
    color: #00ffd5;
}

.hero-buttons {
    margin-bottom: 28px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 620px;
}

.hero-metric {
    padding: 16px 14px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-metric strong {
    display: block;
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 15px;
}

.hero-metric span {
    color: #a9bebe;
    font-size: 12px;
    line-height: 1.55;
}

.hero-right {
    justify-content: flex-end;
}

.hero-right::before {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(0,255,213,0.22), transparent 68%);
    filter: blur(80px);
}

.hero-visual-shell {
    position: relative;
    width: min(520px, 100%);
    padding: 26px 22px 22px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(0,255,213,0.18), transparent 30%),
        linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(8,20,22,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-visual-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #aafcf0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-right img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    transform: rotate(-3deg);
    filter: drop-shadow(0 34px 46px rgba(0,0,0,0.5));
}

.hero-right img:hover {
    transform: rotate(-1deg) scale(1.03);
}

.hero-visual-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(7,18,20,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 14px 24px rgba(0,0,0,0.16);
}

.hero-visual-note strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 15px;
}

.hero-visual-note span {
    color: #aec5c5;
    font-size: 12px;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .navbar {
        top: 10px;
        width: calc(100% - 20px);
        padding: 12px 14px;
        border-radius: 18px;
    }

    .logo-badge {
        display: none;
    }

    .nav-container {
        top: 78px;
        right: -120%;
        left: auto;
        width: min(320px, calc(100% - 20px));
        height: auto;
        border-radius: 22px;
        background: rgba(7,18,20,0.96);
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 22px 40px rgba(0,0,0,0.28);
        padding: 18px;
        justify-content: stretch;
        align-items: stretch;
    }

    .nav-container.active {
        right: 10px;
    }

    .nav-panel {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 12px 14px;
    }

    .nav-cta {
        width: 100%;
    }

    .hero {
        padding: 122px 20px 56px;
        gap: 28px;
    }

    .hero-kicker {
        margin-bottom: 14px;
        font-size: 10px;
        letter-spacing: 0.1em;
    }

    .hero-left h1 {
        font-size: 34px;
        line-height: 1.08;
        margin-bottom: 14px;
    }

    .hero-lead {
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-points {
        justify-content: center;
        gap: 8px;
        margin-bottom: 20px;
    }

    .hero-points span {
        font-size: 11px;
        padding: 8px 10px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-metric {
        padding: 14px;
        text-align: left;
    }

    .hero-metric strong {
        font-size: 15px;
    }

    .hero-metric span {
        font-size: 12px;
    }

    .hero-right {
        width: 100%;
        margin-top: 8px;
    }

    .hero-visual-shell {
        width: 100%;
        max-width: 340px;
        padding: 18px 14px 16px;
        border-radius: 24px;
    }

    .hero-visual-tag {
        margin-bottom: 14px;
        font-size: 10px;
        padding: 7px 10px;
    }

    .hero-right img {
        max-width: 250px;
        transform: none;
    }

    .hero-right img:hover {
        transform: scale(1.03);
    }

    .hero-visual-note {
        margin-top: 14px;
        text-align: left;
    }
}

@media (min-width: 769px) {
    .nav-container {
        position: static;
        height: auto;
        width: auto;
        background: none;
        backdrop-filter: none;
        border: none;
        padding: 0;
    }
}
/* ========================= */
/* PLAN SECTION */
/* ========================= */

.plan-section {
    padding: 120px 20px;
    background: linear-gradient(to bottom, #020405, #031010);
    text-align: center;
}

.plan-title {
    font-size: 42px;
    margin-bottom: 60px;
}

.plan-title span {
    background: linear-gradient(90deg, #00ffd5, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* WRAPPER */
.plan-wrapper {
    position: relative;
    max-width: 1140px;
    margin: auto;
}

/* SLIDER */
.plan-slider {
    display: flex;
    gap: 20px;

    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
}

.plan-slider::-webkit-scrollbar {
    display: none;
}

/* CARD */
.plan-card {
    flex: 0 0 auto;
    min-width: 280px;

    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 25px;

    border: 1px solid rgba(255,255,255,0.06);

    text-align: left;
    position: relative;

    transition: 0.3s;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0,255,213,0.2);
}

/* HIGHLIGHT */
.plan-card.highlight {
    border: 1px solid rgba(0,255,213,0.5);
}

/* TITLE */
.plan-card h3 {
    margin-bottom: 15px;
}

/* LIST */
.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plan-card ul li {
    margin: 8px 0;
    color: #aaa;
}

.plan-card ul li i {
    color: #ff6600;
    background: rgba(255,102,0,0.1);
    padding: 6px;
    border-radius: 50%;
    font-size: 12px;
}

/* PRICE */
.price {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* BUTTON */
.buy-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;

    background: linear-gradient(90deg, #00ffd5, #00aaff);
    color: #002222;
    font-weight: bold;
    cursor: pointer;
}

/* NAV BUTTON */
.plan-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    background: rgba(0,0,0,0.6);
    border: none;
    border-radius: 50%;

    width: 45px;
    height: 45px;

    color: #00ffd5;
    font-size: 20px;
    cursor: pointer;
}

.plan-nav.prev { left: -10px; }
.plan-nav.next { right: -10px; }

/* ========================= */
/* PREMIUM BADGE */
/* ========================= */
.ribbon {
    position: absolute;
    top: 15px;
    right: 15px;

    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;

    background: rgba(0,255,213,0.1);
    color: #00ffd5;

    border: 1px solid rgba(0,255,213,0.4);

    backdrop-filter: blur(10px);

    box-shadow: 0 0 10px rgba(0,255,213,0.2);
}

/* HOT STYLE */
.plan-card.highlight .ribbon {
    background: linear-gradient(90deg, #00ffd5, #00aaff);
    color: #002222;
    border: none;

    box-shadow: 0 0 15px rgba(0,255,213,0.5);
}

/* SIDE BADGE (POPULAR) */
.ribbon.side {
    top: 15px;
    left: 15px;
    right: auto;
}

/* MOBILE */
@media (max-width: 768px) {

    .plan-section {
        padding: 80px 30px; /* ðŸ”¥ dari 20 â†’ 10 */
    }


    .plan-title {
        font-size: 30px;
        line-height: 1.3;
    }

    .plan-slider {
        display: flex;
        gap: 20px;

        overflow-x: auto;
        scroll-snap-type: x mandatory;

        padding: 0 15px;
    }

    .plan-slider::-webkit-scrollbar {
        display: none;
    }

    .plan-card {
        flex: 0 0 80%;
        max-width: 80%;

        box-sizing: border-box;
        overflow: hidden;

        scroll-snap-align: center;
    }

    .plan-nav {
        display: none;
    }
}

/* ========================= */
/* PLAN PREMIUM OVERRIDES */
/* ========================= */
.plan-section {
    background:
        radial-gradient(circle at top center, rgba(0, 255, 213, 0.12), transparent 32%),
        linear-gradient(180deg, #020405 0%, #041212 100%);
    overflow: hidden;
}

.plan-shell {
    position: relative;
}

.plan-shell::before {
    content: "";
    position: absolute;
    inset: 40px 0 auto;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.12), transparent 68%);
    filter: blur(20px);
    pointer-events: none;
}

.plan-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto 38px;
    z-index: 1;
}

.plan-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 9px 18px;
    border: 1px solid rgba(0, 255, 213, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #9feee2;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.plan-title {
    font-size: clamp(34px, 4vw, 46px);
    margin-bottom: 14px;
    line-height: 1.08;
}

.plan-subtitle {
    max-width: 620px;
    margin: 0 auto;
    color: #9cb7b7;
    font-size: 15px;
    line-height: 1.7;
}

.plan-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.plan-points span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: #dffbfb;
    font-size: 13px;
}

.plan-points i {
    color: #00ffd5;
}

.plan-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
}

.plan-tab {
    appearance: none;
    border: 1px solid rgba(255,255,255,0.07);
    background: transparent;
    color: #a9c7c7;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-tab:hover {
    color: #eaf8f8;
    border-color: rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
}

.plan-tab.is-active {
    color: #042b2b;
    border-color: rgba(127,255,230,0.72);
    background: linear-gradient(90deg, #7fffe6, #37c7ff);
    box-shadow:
        0 10px 20px rgba(0,255,213,0.12),
        inset 0 1px 0 rgba(255,255,255,0.4);
}

.plan-panels {
    position: relative;
    z-index: 1;
}

.plan-panel[hidden] {
    display: none;
}

.plan-slider {
    gap: 18px;
    padding: 8px 4px 16px;
}

.plan-card {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: calc((100% - 36px) / 3);
    max-width: calc((100% - 36px) / 3);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(5,18,18,0.85);
    border-radius: 24px;
    padding: 19px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    backdrop-filter: blur(18px);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.plan-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 130px;
    background: linear-gradient(180deg, rgba(0,255,213,0.12), transparent);
    opacity: 0.7;
    pointer-events: none;
}

.plan-card.highlight {
    border: 1px solid rgba(0,255,213,0.45);
    box-shadow:
        0 24px 56px rgba(0,0,0,0.3),
        0 0 42px rgba(0,255,213,0.12);
}

.plan-tier {
    margin-bottom: 10px;
    color: #8edfd3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.plan-card h3 {
    margin-bottom: 8px;
    font-size: 24px;
    letter-spacing: 0.02em;
}

.plan-desc {
    min-height: 50px;
    margin-bottom: 14px;
    color: #9cb1b1;
    line-height: 1.55;
    font-size: 13px;
}

.plan-card ul {
    margin-bottom: 18px;
    display: grid;
    gap: 8px;
    flex: 1;
}

.plan-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d3dfdf;
    line-height: 1.5;
}

.plan-card ul li i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00ffd5;
    background: rgba(0,255,213,0.12);
    border: 1px solid rgba(0,255,213,0.18);
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
}

.price-block {
    padding-top: 12px;
    margin-top: auto;
    margin-bottom: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.price-label {
    display: block;
    margin-bottom: 8px;
    color: #8ca2a2;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.price {
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 0;
}

.price span {
    font-size: 12px;
    font-weight: 500;
    color: #9fd4d4;
}

.buy-btn {
    padding: 11px;
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(0,255,213,0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0,255,213,0.24);
    filter: brightness(1.03);
}

@media (hover: hover) and (pointer: fine) {
    .plan-card:hover {
        transform: translateY(-10px);
        box-shadow:
            0 24px 52px rgba(0,0,0,0.28),
            0 0 30px rgba(0,255,213,0.12);
        border-color: rgba(0,255,213,0.22);
    }
}

@media (hover: none) {
    .plan-card:hover {
        transform: none;
        box-shadow:
            0 18px 40px rgba(0,0,0,0.22),
            inset 0 1px 0 rgba(255,255,255,0.06);
        border-color: rgba(255,255,255,0.08);
    }
}

.plan-nav {
    background: rgba(6, 20, 20, 0.82);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    width: 46px;
    height: 46px;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.plan-nav:hover {
    transform: translateY(-50%) scale(1.05);
    background: rgba(9, 30, 30, 0.95);
    box-shadow: 0 0 22px rgba(0,255,213,0.16);
}

.plan-nav.prev {
    left: -18px;
}

.plan-nav.next {
    right: -18px;
}

.ribbon {
    padding: 8px 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (min-width: 769px) {
    .plan-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .plan-section {
        padding: 88px 30px;
    }

    .plan-subtitle {
        font-size: 15px;
        line-height: 1.75;
    }

    .plan-points {
        gap: 10px;
    }

    .plan-points span {
        font-size: 13px;
        padding: 10px 14px;
    }

    .plan-tabs {
        gap: 8px;
        margin-bottom: 20px;
    }

    .plan-tab {
        width: auto;
        min-width: 0;
        padding: 9px 12px;
        font-size: 12px;
    }

    .plan-wrapper {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "slider slider"
            "prev next";
        align-items: center;
        gap: 12px;
    }

    .plan-slider {
        grid-area: slider;
        gap: 0;
        padding: 0;
        scroll-snap-type: x mandatory;
    }

    .plan-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100%;
        padding: 15px 14px 14px;
        border-radius: 18px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .plan-card h3 {
        font-size: 22px;
    }

    .plan-desc {
        display: none;
    }

    .plan-tier {
        margin-bottom: 6px;
        padding-right: 82px;
        min-height: 20px;
    }

    .plan-card ul {
        margin-bottom: 12px;
        gap: 6px;
    }

    .plan-card ul li {
        gap: 8px;
        font-size: 12px;
        line-height: 1.32;
    }

    .plan-card ul li i {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .price-block {
        padding-top: 8px;
        margin-bottom: 8px;
    }

    .price {
        font-size: 23px;
    }

    .price-label,
    .price span {
        font-size: 11px;
    }

    .buy-btn {
        padding: 9px;
    }

    .plan-nav {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        position: static;
        transform: none;
        margin: 0;
        padding: 0;
        font-size: 13px;
        line-height: 1;
        text-align: center;
        z-index: 3;
        background: rgba(6, 20, 20, 0.92);
        box-shadow: 0 10px 18px rgba(0,0,0,0.22);
    }

    .plan-nav:hover {
        transform: none;
    }

    .plan-nav:active {
        transform: scale(0.96);
    }

    .plan-nav.prev {
        grid-area: prev;
        justify-self: end;
    }

    .plan-nav.next {
        grid-area: next;
        justify-self: start;
    }

    .ribbon {
        top: 12px;
        right: 12px;
        padding: 5px 9px;
        font-size: 10px;
    }
}

/* ========================= */
/* TEAM SECTION */
/* ========================= */
.team-section {
    padding: 170px 20px 120px;
    text-align: center;

    background: linear-gradient(
        180deg,
        #05080d 0%,
        #061414 100%
    );
}

/* TITLE */
.team-title {
    font-size: 48px;
    margin-bottom: 60px;
}

.team-title span {
    background: linear-gradient(90deg, #00ffd5, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* WRAPPER */
.team-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 25px;
    flex-wrap: wrap;
}

/* CARD */
.team-card {
    width: 180px;
    padding: 15px;
    border-radius: 20px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);

    transition: 0.3s;
}

/* IMAGE */
.team-card img {
    width: 100%;
    border-radius: 15px;
}

/* TEXT */
.team-card h4 {
    margin-top: 10px;
    font-size: 16px;
}

.team-card p {
    font-size: 13px;
    color: #aaa;
}

/* HOVER */
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(0,255,213,0.2);
}

/* MAIN (CEO) */
.team-card.main {
    width: 220px;
    transform: translateY(-20px);

    border: 1px solid rgba(0,255,213,0.5);
    box-shadow: 0 0 30px rgba(0,255,213,0.3);
}

.team-card.main h3 {
    font-size: 18px;
    margin-top: 10px;
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {

    .team-title {
        font-size: 30px;
    }

    .team-wrapper {
        gap: 15px;
    }

    .team-card {
        width: 45%;
    }

    .team-card.main {
        width: 70%;
        transform: none;
    }

    .team-section {
        padding: 130px 20px 90px;
    }

}

/* ========================= */
/* FOOTER */
/* ========================= */
.footer-simple {
    text-align: center;
    padding: 25px 15px;

    font-size: 13px;
    color: #777;

    background: linear-gradient(
        180deg,
        #020405 0%,
        #05080d 100%
    );

    border-top: 1px solid rgba(255,255,255,0.05);
}

/* subtle glow line */
.footer-simple::before {
    content: "";
    display: block;
    height: 1px;
    margin-bottom: 15px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0,255,213,0.6),
        transparent
    );
}
/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 40px;
    }

    .hero-right {
        display: none;
    }

}

/* DESKTOP MODE */
@media (min-width: 769px) {

    .nav-container {
        position: static;
        height: auto;
        width: auto;
        background: none;
        backdrop-filter: none;
    }

    .nav-links {
        display: flex;
    }

    .nav-links li {
        margin: 0 15px;
    }

    .hamburger {
        display: none;
    }

    .overlay {
        display: none;
    }
}

/* ========================= */
/* NAVBAR REFRESH */
/* ========================= */
.navbar {
    top: 14px;
    left: 50%;
    width: min(calc(100% - 28px), 1220px);
    padding: 14px 18px;
    transform: translateX(-50%);
    border-radius: 22px;
    background: rgba(6, 16, 18, 0.76);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    font-size: 24px;
    letter-spacing: 0.04em;
}

.logo span {
    background: linear-gradient(90deg, #00ffd5, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #a4f8ec;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-links {
    gap: 8px;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    padding: 10px 14px;
    border-radius: 999px;
    color: #d3e4e4;
    font-size: 14px;
    font-weight: 500;
}

.nav-links a::after {
    display: none;
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.06);
}

.nav-cta {
    padding: 11px 18px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, #00ffd5, #00aaff);
    color: #002222;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(0,255,213,0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(0,255,213,0.22);
}

@media (max-width: 768px) {
    .navbar {
        top: 10px;
        width: calc(100% - 20px);
        padding: 12px 14px;
        border-radius: 18px;
    }

    .logo-badge {
        display: none;
    }

    .nav-container {
        top: 78px;
        right: -120%;
        left: auto;
        width: min(320px, calc(100% - 20px));
        height: auto;
        border-radius: 22px;
        background: rgba(7,18,20,0.96);
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 22px 40px rgba(0,0,0,0.28);
        padding: 18px;
        justify-content: stretch;
        align-items: stretch;
    }

    .nav-container.active {
        right: 10px;
    }

    .nav-panel {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 12px 14px;
    }

    .nav-cta {
        width: 100%;
    }
}



/* ========================= */
/* INSENTIF SECTION */
/* ========================= */
.insentif-section {
    padding: 120px 20px;
    text-align: center;

    background: linear-gradient(180deg, #05080d, #061414);
}

/* TITLE */
.insentif-title {
    font-size: 42px;
    margin-bottom: 50px;
}

.insentif-title span {
    background: linear-gradient(90deg, #00ffd5, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================= */
/* TABLE */
/* ========================= */
.insentif-table {
    max-width: 1000px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;

    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05);
}

/* ROW */
.insentif-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 18px;

    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.insentif-row div {
    font-size: 14px;
}

/* HEADER */
.insentif-row.header {
    background: linear-gradient(90deg, #00ffd5, #00aaff);
    color: #002222;
    font-weight: bold;
}

/* TOTAL */
.insentif-row.total {
    background: rgba(0,255,213,0.1);
    font-weight: bold;
}

/* RED */
.highlight-red {
    color: #ff4d4d;
}

/* ========================= */
/* RETENTION BOX */
/* ========================= */
.retention-box {
    margin-top: 60px;
    max-width: 700px;
    margin-inline: auto;

    padding: 30px;
    border-radius: 20px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.retention-box h3 {
    margin-bottom: 20px;
}

/* RETENTION TABLE */
.retention-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 12px;
}

.retention-row.header {
    color: #00ffd5;
    font-weight: bold;
}

/* NOTE */
.note {
    margin-top: 20px;
    font-size: 12px;
    color: #888;
}


/* ========================= */
/* MOBILE INSENTIF (FINAL CLEAN) */
/* ========================= */
@media (max-width: 768px) {

    /* SECTION */
    .insentif-section {
        padding: 120px 15px;
    }

    /* TITLE */
    .insentif-title {
        font-size: 26px;
        margin-bottom: 25px;
        text-align: center;
        line-height: 1.3;
    }

    /* ========================= */
    /* TABLE WRAPPER */
    /* ========================= */
    .insentif-table {
        width: 100%;
        border-radius: 16px;
        overflow: hidden; /* 🔥 buang scroll & lebihan */
        background: rgba(255,255,255,0.02);
    }

    /* ========================= */
    /* ROW STRUCTURE */
    /* ========================= */
    .insentif-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr; /* 🔥 auto balance */

        width: 100%;
        text-align: center;

        font-size: 13px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    /* CELL */
    .insentif-row div {
        padding: 12px 6px;
        white-space: nowrap;
    }

    /* HEADER */
    .insentif-row.header {
        font-weight: bold;
        background: linear-gradient(90deg, #00ffd5, #00aaff);
        color: #002222;
    }

    /* TOTAL ROW */
    .insentif-row.total {
        background: rgba(0,255,213,0.12);
        font-weight: bold;
    }

    /* RED TEXT */
    .highlight-red {
        color: #ff4d4d;
    }

    /* ========================= */
    /* RETENTION BOX */
    /* ========================= */
    .retention-box {
        margin-top: 40px;
        padding: 20px;
        border-radius: 16px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.05);
    }

    .retention-box h3 {
        font-size: 18px;
        margin-bottom: 15px;
        text-align: center;
    }

    .retention-table {
        width: 100%;
    }

    .retention-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;

        text-align: center;
        font-size: 13px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .retention-row div {
        padding: 10px 5px;
        white-space: nowrap;
    }

    .retention-row.header {
        font-weight: bold;
        color: #00ffd5;
    }

    /* NOTE */
    .note {
        font-size: 12px;
        margin-top: 12px;
        text-align: center;
        color: #888;
    }
}
/* ========================= */
/* INCOME SECTION */
/* ========================= */
.income-section {
    padding: 120px 20px;
    text-align: center;

    background: linear-gradient(
        180deg,
        #071a1a 0%,
        #05080d 100%
    );
}

/* TITLE */
.income-title {
    font-size: 42px;
    margin-bottom: 50px;
}

.income-title span {
    background: linear-gradient(90deg, #00ffd5, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================= */
.income-box {
    max-width: 700px;
    margin: auto;

    border-radius: 18px;
    overflow: hidden;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
}

/* ROW */
.income-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    text-align: center;
    padding: 16px;

    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* HEADER */
.income-row.header {
    background: linear-gradient(90deg, #00ffd5, #00aaff);
    color: #002222;
    font-weight: bold;
}

/* DATA */
.income-row div {
    font-size: 16px;
}

/* HOVER */
.income-row:not(.header):hover {
    background: rgba(0,255,213,0.08);
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {

     .income-title {
        font-size: 26px;
        margin-bottom: 25px;
        text-align: center;
        line-height: 1.3;
    }


    .income-row {
        padding: 14px 8px;
        font-size: 14px;
    }

}

/* ========================= */
/* BSE SECTION */
/* ========================= */
.bse-section {
    padding: 0px 20px;
    text-align: center;

    background: linear-gradient(
        180deg,
        #05080d 0%,
        #061414 100%
    );
}

/* TITLE */
.bse-title {
    font-size: 42px;
    margin-bottom: 50px;
}

.bse-title span {
    background: linear-gradient(90deg, #00ffd5, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TABLE */
.bse-table {
    max-width: 900px;
    margin: auto;

    border-radius: 20px;
    overflow: hidden;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
}

/* ROW */
.bse-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr;

    padding: 16px;
    text-align: center;

    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* HEADER */
.bse-row.header {
    background: linear-gradient(90deg, #00ffd5, #00aaff);
    color: #002222;
    font-weight: bold;
}

/* HIGHLIGHT */
.bse-row.highlight {
    background: rgba(0,255,213,0.15);
    font-weight: 600;
}

/* GROUP STYLE */
.bse-row.group div:first-child {
    color: #00ffd5;
    font-weight: 600;
}

/* HOVER */
.bse-row:hover {
    background: rgba(0,255,213,0.08);
}

/* NOTE */
.bse-note {
    margin-top: 20px;
    font-size: 13px;
    color: #888;
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {

     .bse-title {
        font-size: 26px;
        margin-bottom: 25px;
        text-align: center;
        line-height: 1.3;
    }


    .bse-row {
        padding: 14px 8px;
        font-size: 14px;
    }

}

/* ========================= */
/* SCENARIO SECTION */
/* ========================= */
.scenario-section {
    padding: 120px 20px;
    text-align: center;

     background: linear-gradient(
        180deg,
        #071a1a 0%,
        #05080d 100%
    );
}

/* TITLE */
.scenario-title {
    font-size: 42px;
    margin-bottom: 40px;
}

.scenario-title span {
    background: linear-gradient(90deg, #00ffd5, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================= */
/* BOX */
/* ========================= */
.scenario-box {
    max-width: 900px;
    margin: auto;
    margin-bottom: 50px;

    display: flex;
    align-items: center;
    gap: 30px;

    padding: 30px;
    border-radius: 20px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);

    text-align: left;
}

/* IMAGE */
.scenario-image {
    position: relative;
}

.scenario-image img {
    width: 140px;
    border-radius: 20px;

    box-shadow: 0 0 25px rgba(0,255,213,0.2);
}

/* glow belakang */
.scenario-image::before {
    content: "";
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(0,255,213,0.2), transparent);
    filter: blur(30px);
    z-index: -1;
}

/* TEXT */
.scenario-text {
    flex: 1;
}

.scenario-text p {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.scenario-owner {
    display: inline-block;
    margin-top: 10px;
    color: #00ffd5;
    font-weight: 600;
}

/* ========================= */
/* GRID */
/* ========================= */
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    max-width: 900px;
    margin: auto;
}

/* CARD */
.scenario-card {
    padding: 20px;
    border-radius: 16px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);

    transition: 0.3s;
}

/* NUMBER */
.scenario-top {
    font-size: 32px;
    font-weight: bold;
    color: #00ffd5;
}

/* LABEL */
.scenario-label {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
}

/* VALUE */
.scenario-value {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

/* HOVER */
.scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0,255,213,0.2);
}

/* HIGHLIGHT */
.scenario-card.highlight {
    border: 1px solid rgba(0,255,213,0.5);
    box-shadow: 0 0 30px rgba(0,255,213,0.3);
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {

    .scenario-title {
        font-size: 28px;
    }

    .scenario-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .scenario-image img {
        width: 100px;
    }

    .scenario-text {
        text-align: center;
    }

    .scenario-grid {
        grid-template-columns: 1fr 1fr;
    }

    .scenario-card {
        padding: 16px;
    }

    .scenario-top {
        font-size: 24px;
    }

    .scenario-value {
        font-size: 18px;
    }

}

/* ========================= */
/* RECURRING SECTION */
/* ========================= */
.recurring-section {
    padding: 20px 20px;
    text-align: center;

    background: linear-gradient(
        180deg,
        #05080d 0%,
        #061414 100%
    );
}

/* TITLE */
.recurring-title {
    font-size: 42px;
    margin-bottom: 40px;
}

.recurring-title span {
    background: linear-gradient(90deg, #00ffd5, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================= */
/* BOX */
/* ========================= */
.recurring-box {
    max-width: 900px;
    margin: auto;
    margin-bottom: 40px;

    display: flex;
    align-items: center;
    gap: 25px;

    padding: 25px;
    border-radius: 20px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

/* IMAGE */
.recurring-image {
    text-align: center;
}

.recurring-image img {
    width: 120px;
    border-radius: 16px;
}

.recurring-image span {
    display: block;
    margin-top: 8px;
    color: #00ffd5;
    font-weight: 600;
}

/* TEXT */
.recurring-text {
    flex: 1;
    text-align: left;
}

.recurring-text p {
    color: #ccc;
    margin-bottom: 10px;
}

/* ========================= */
/* FORMULA */
/* ========================= */
.recurring-formula {
    margin-bottom: 40px;

    font-size: 18px;
    color: #aaa;
}

.recurring-formula span {
    color: #00ffd5;
    font-weight: bold;
    font-size: 22px;
}

/* ========================= */
/* GRID */
/* ========================= */
.recurring-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    max-width: 900px;
    margin: auto;
}

/* CARD */
.recurring-card {
    padding: 20px;
    border-radius: 16px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);

    transition: 0.3s;
}

.recurring-card .top {
    font-size: 28px;
    color: #00ffd5;
    font-weight: bold;
}

.recurring-card .label {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
}

.recurring-card .value {
    font-size: 22px;
    font-weight: bold;
}

/* HOVER */
.recurring-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0,255,213,0.2);
}

/* HIGHLIGHT */
.recurring-card.highlight {
    border: 1px solid rgba(0,255,213,0.5);
    box-shadow: 0 0 30px rgba(0,255,213,0.3);
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {

    .recurring-title {
        font-size: 28px;
    }

    .recurring-box {
        flex-direction: column;
        text-align: center;
    }

    .recurring-text {
        text-align: center;
    }

    .recurring-grid {
        grid-template-columns: 1fr 1fr;
    }

}

/* ========================= */
/* GROUP SECTION */
/* ========================= */
.group-section {
    padding: 50px 20px;
    text-align: center;

    background: linear-gradient(
        180deg,
        #061414 0%,
        #05080d 100%
    );
}

/* TITLE */
.group-title {
    font-size: 42px;
    margin-bottom: 40px;
}

.group-title span {
    background: linear-gradient(90deg, #00ffd5, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================= */
/* BOX */
/* ========================= */
.group-box {
    max-width: 900px;
    margin: auto;
    margin-bottom: 50px;

    display: flex;
    gap: 25px;
    align-items: center;

    padding: 25px;
    border-radius: 20px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

/* IMAGE */
.group-image img {
    width: 120px;
    border-radius: 16px;
}

.group-image span {
    display: block;
    margin-top: 8px;
    color: #00ffd5;
    font-weight: 600;
}

/* TEXT */
.group-text {
    flex: 1;
    text-align: left;
}

.group-text p {
    color: #ccc;
    margin-bottom: 10px;
}

/* ========================= */
/* GRID */
/* ========================= */
.group-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;

    max-width: 1100px;
    margin: auto;
}

/* CARD */
.group-card {
    padding: 18px;
    border-radius: 16px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);

    transition: 0.3s;
}

/* TIER */
.tier {
    font-size: 16px;
    color: #00ffd5;
    margin-bottom: 10px;
    font-weight: bold;
}

.tier span {
    font-size: 12px;
    color: #aaa;
}

/* BSE */
.bse {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

/* INCOME */
.income {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

/* HOVER */
.group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0,255,213,0.2);
}

/* HIGHLIGHT */
.group-card.highlight {
    border: 1px solid rgba(0,255,213,0.5);
    box-shadow: 0 0 30px rgba(0,255,213,0.3);
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {

    .group-title {
        font-size: 28px;
    }

    .group-box {
        flex-direction: column;
        text-align: center;
    }

    .group-text {
        text-align: center;
    }

    .group-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

}
/* ========================= */
/* GLOBAL CONSISTENCY SYSTEM */
/* ========================= */
:root {
    --section-space-top-desktop: 72px;
    --section-space-bottom-desktop: 88px;
    --section-space-top-mobile: 56px;
    --section-space-bottom-mobile: 68px;
    --framed-section-space-top-desktop: 36px;
    --framed-section-space-top-mobile: 28px;
    --framed-panel-space-top-desktop: 36px;
    --framed-panel-space-top-mobile: 28px;
    --section-header-gap: 36px;
    --stack-gap-sm: 12px;
    --stack-gap-md: 18px;
    --stack-gap-lg: 24px;
    --title-size-desktop: clamp(34px, 4vw, 46px);
    --title-size-mobile: 30px;
    --card-title-size-desktop: 24px;
    --card-title-size-mobile: 20px;
    --body-size-desktop: 15px;
    --body-size-mobile: 13px;
    --label-size-desktop: 11px;
    --label-size-mobile: 10px;
    --chip-size-desktop: 13px;
    --chip-size-mobile: 12px;
    --heading-color: #f5fcfc;
    --body-color: #b8caca;
    --muted-color: #97adad;
    --accent-color: #9feee2;
}

.beone-features,
.market,
.income-section,
.audience-section,
.product-section,
.plan-section,
.testimonial-section,
.faq-section,
.dealer-cta {
    padding-top: var(--section-space-top-desktop) !important;
    padding-bottom: var(--section-space-bottom-desktop) !important;
}

.market,
.dealer-cta {
    padding-top: var(--framed-section-space-top-desktop) !important;
}

.beone-header,
.product-header,
.plan-header {
    margin: 0 auto var(--section-header-gap) !important;
}

.beone-header,
.product-header,
.plan-header,
.income-container,
.audience-section .container,
.testimonial-section .container,
.faq-section .container {
    text-align: center !important;
}

.market-left,
.dealer-left {
    text-align: left !important;
}

.beone-header h2,
.market-left h2,
.income-container h2,
.audience-section h2,
.testimonial-section h2,
.faq-section h2,
.product-title,
.plan-title,
.dealer-left h1 {
    margin: 0 0 14px !important;
    font-size: var(--title-size-desktop) !important;
    line-height: 1.08 !important;
    color: var(--heading-color) !important;
}

.section-kicker,
.product-eyebrow,
.plan-eyebrow,
.hero-kicker {
    margin: 0 0 var(--stack-gap-sm) !important;
    font-size: var(--label-size-desktop) !important;
    line-height: 1.45 !important;
    color: var(--accent-color) !important;
}

.section-lead,
.product-subtitle,
.plan-subtitle,
.hero-lead,
.product-copy,
.beone-cta-copy p,
.beone-card p,
.market-highlight,
.market-stat span,
.market-visual-note,
.income-note,
.audience-card p,
.audience-note,
.plan-desc,
.plan-card ul li,
.testimonial-card p,
.faq-answer,
.dealer-left p,
.dealer-list li,
.dealer-note,
.dealer-card p,
.hero-metric span,
.hero-visual-note span,
.feature-label {
    font-size: var(--body-size-desktop) !important;
    line-height: 1.7 !important;
    color: var(--body-color) !important;
}

.beone-card h3,
.audience-card h3,
.product-heading,
.plan-card h3,
.dealer-card h3,
.beone-cta h3 {
    margin: 0 0 10px !important;
    font-size: var(--card-title-size-desktop) !important;
    line-height: 1.2 !important;
    color: var(--heading-color) !important;
}

.testimonial-card h4,
.market-stat strong,
.hero-metric strong,
.price {
    font-size: 16px !important;
    line-height: 1.35 !important;
    color: var(--heading-color) !important;
}

.product-badge,
.product-tagline,
.beone-card-tag,
.beone-cta-kicker,
.audience-badge,
.market-visual-badge,
.hero-visual-tag,
.plan-tier,
.ribbon,
.price-label,
.dealer-sub,
.dealer-card-mini,
.logo-badge {
    font-size: var(--label-size-desktop) !important;
    line-height: 1.45 !important;
}

.product-badge,
.product-tagline,
.beone-card-tag,
.beone-cta-kicker,
.audience-badge,
.market-visual-badge,
.hero-visual-tag,
.plan-tier,
.ribbon,
.logo-badge {
    color: var(--accent-color) !important;
}

.price-label,
.dealer-sub,
.dealer-card-mini,
.beone-card-meta,
.product-mini-note {
    color: var(--muted-color) !important;
}

.section-chip,
.market-points span,
.hero-points span,
.product-highlights span,
.plan-points span,
.beone-cta-points span,
.dealer-pill,
.tag {
    font-size: var(--chip-size-desktop) !important;
    line-height: 1.45 !important;
    color: #ddf7f7 !important;
}

.section-lead,
.product-subtitle,
.plan-subtitle,
.product-copy,
.beone-cta-copy p,
.market-visual-note,
.income-note,
.audience-note,
.plan-desc,
.faq-answer,
.dealer-note,
.dealer-card p,
.product-mini-note {
    margin-bottom: 0 !important;
}

.btn,
.btn-outline,
.nav-cta,
.btn-dealer,
.buy-btn {
    font-size: 14px !important;
    line-height: 1.2 !important;
}

.faq-question {
    font-size: 16px !important;
    line-height: 1.45 !important;
    color: var(--heading-color) !important;
}

.beone-header .section-lead,
.product-header .product-subtitle,
.plan-header .plan-subtitle,
.income-container .section-lead,
.audience-section .container > .section-lead,
.testimonial-section .container > .section-lead,
.faq-section .container > .section-lead {
    margin: 0 auto !important;
}

.market-left .section-lead,
.dealer-left > p:not(.section-kicker) {
    margin: 0 !important;
    max-width: 100% !important;
}

.dealer-left .section-kicker {
    font-size: inherit;
    padding: inherit;
}

.beone-header .section-chip-row,
.market-left .market-points,
.dealer-left .dealer-pill-row,
.plan-header .plan-points {
    margin-top: var(--stack-gap-md) !important;
}

.market-left .market-highlight,
.market-left .market-stats,
.income-container .income-card,
.testimonial-section .testimonial-slider,
.faq-section .faq-wrapper,
.dealer-left .dealer-list,
.audience-section .audience-grid,
.dealer-left .dealer-note,
.audience-note,
.income-note,
.beone-cta {
    margin-top: var(--stack-gap-lg) !important;
}

.market-points,
.hero-points,
.product-highlights,
.plan-points {
    gap: 10px !important;
}

.market-container,
.product-wrapper,
.dealer-wrapper {
    gap: 48px !important;
}

.market-container {
    padding: var(--framed-panel-space-top-desktop) 60px 60px !important;
}

.dealer-wrapper {
    padding: var(--framed-panel-space-top-desktop) 44px 44px !important;
}

.market-highlight,
.dealer-note,
.income-note {
    color: #d7e8e8 !important;
}

.feature-box strong {
    font-size: 15px !important;
    line-height: 1.4 !important;
    color: var(--heading-color) !important;
}

.price span {
    font-size: 13px !important;
    line-height: 1.45 !important;
    color: var(--muted-color) !important;
}

.dealer-list {
    margin-bottom: 0 !important;
    padding-left: 0 !important;
}

.dealer-list li {
    margin-bottom: 12px !important;
}

.dealer-list li:last-child {
    margin-bottom: 0 !important;
}

.market-highlight strong,
.dealer-note strong,
.income-note strong,
.market-visual-note strong,
.hero-visual-note strong {
    color: var(--heading-color) !important;
}

.ribbon {
    text-shadow: none !important;
}

.plan-card.highlight .ribbon {
    color: #042b2b !important;
    background: linear-gradient(90deg, #7fffe6, #37c7ff) !important;
    box-shadow:
        0 10px 24px rgba(0,255,213,0.18),
        inset 0 1px 0 rgba(255,255,255,0.45) !important;
}

.audience-card-body {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    min-height: 152px !important;
    padding: 20px 18px 22px !important;
}

.audience-badge {
    align-self: flex-start !important;
    margin-bottom: 0 !important;
}

.audience-card h3 {
    margin: 0 !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
}

.audience-card p {
    margin: 0 !important;
    padding: 0 !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
    color: var(--body-color) !important;
}

.hero-lead {
    margin-bottom: 28px !important;
}

@media (max-width: 768px) {
    .beone-features,
    .market,
    .income-section,
    .audience-section,
    .product-section,
    .plan-section,
    .testimonial-section,
    .faq-section,
    .dealer-cta {
        padding-top: var(--section-space-top-mobile) !important;
        padding-bottom: var(--section-space-bottom-mobile) !important;
    }

    .market,
    .dealer-cta {
        padding-top: var(--framed-section-space-top-mobile) !important;
    }

    .beone-header,
    .product-header,
    .plan-header {
        margin-bottom: 28px !important;
    }

    .beone-header h2,
    .market-left h2,
    .income-container h2,
    .audience-section h2,
    .testimonial-section h2,
    .faq-section h2,
    .product-title,
    .plan-title,
    .dealer-left h1 {
        margin: 0 0 12px !important;
        font-size: var(--title-size-mobile) !important;
        line-height: 1.14 !important;
    }

    .section-kicker,
    .product-eyebrow,
    .plan-eyebrow,
    .hero-kicker {
        margin-bottom: 10px !important;
        font-size: var(--label-size-mobile) !important;
        line-height: 1.4 !important;
    }

    .section-lead,
    .product-subtitle,
    .plan-subtitle,
    .hero-lead,
    .product-copy,
.beone-cta-copy p,
    .beone-card p,
    .market-highlight,
    .market-stat span,
    .market-visual-note,
    .income-note,
    .audience-card p,
    .audience-note,
    .plan-desc,
    .plan-card ul li,
    .testimonial-card p,
    .faq-answer,
    .dealer-left p,
.dealer-list li,
    .dealer-note,
    .dealer-card p,
    .hero-metric span,
    .hero-visual-note span,
    .feature-label {
        font-size: var(--body-size-mobile) !important;
        line-height: 1.62 !important;
    }

    .beone-card h3,
    .audience-card h3,
    .product-heading,
    .plan-card h3,
    .dealer-card h3,
    .beone-cta h3 {
        font-size: var(--card-title-size-mobile) !important;
        line-height: 1.25 !important;
    }

    .testimonial-card h4,
    .market-stat strong,
    .hero-metric strong,
    .price {
        font-size: 15px !important;
    }

    .product-badge,
    .product-tagline,
    .beone-card-tag,
    .beone-cta-kicker,
    .audience-badge,
    .market-visual-badge,
    .hero-visual-tag,
    .plan-tier,
    .ribbon,
    .price-label,
    .dealer-sub,
    .dealer-card-mini,
    .logo-badge {
        font-size: var(--label-size-mobile) !important;
        line-height: 1.4 !important;
    }

    .section-chip,
    .market-points span,
    .hero-points span,
    .product-highlights span,
    .plan-points span,
    .beone-cta-points span,
    .dealer-pill,
    .tag,
    .btn,
    .btn-outline,
    .nav-cta,
    .btn-dealer,
    .buy-btn {
        font-size: var(--chip-size-mobile) !important;
        line-height: 1.35 !important;
    }

    .faq-question {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }

    .feature-box strong {
        font-size: 13px !important;
    }

    .price span {
        font-size: 11px !important;
    }

    .beone-header .section-chip-row,
    .market-left .market-points,
    .dealer-left .dealer-pill-row,
    .plan-header .plan-points {
        margin-top: 14px !important;
    }

    .market-left .market-highlight,
    .market-left .market-stats,
    .income-container .income-card,
    .testimonial-section .testimonial-slider,
    .faq-section .faq-wrapper,
    .dealer-left .dealer-list,
    .audience-section .audience-grid,
    .dealer-left .dealer-note,
    .audience-note,
    .income-note,
    .beone-cta {
        margin-top: 20px !important;
    }

    .market-container,
    .product-wrapper,
    .dealer-wrapper {
        gap: 24px !important;
    }

    .market-container {
        align-items: stretch !important;
        text-align: left !important;
        gap: 20px !important;
        padding: var(--framed-panel-space-top-mobile) 20px 28px !important;
    }

    .market-left {
        display: grid !important;
        gap: 14px !important;
    }

    .market-left .section-kicker,
    .market-left h2,
    .market-left .section-lead {
        text-align: left !important;
    }

    .market-left .section-lead {
        max-width: 100% !important;
    }

    .market-left .market-points {
        justify-content: flex-start !important;
        gap: 8px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .market-points span {
        justify-content: flex-start !important;
        text-align: left !important;
        padding: 9px 12px !important;
    }

    .market-left .market-highlight {
        margin-top: 0 !important;
        padding: 14px 15px !important;
        border-radius: 16px !important;
        text-align: left !important;
    }

    .market-left .market-stats {
        margin-top: 0 !important;
        gap: 10px !important;
    }

    .dealer-wrapper {
        padding: 22px 16px !important;
        gap: 22px !important;
    }

    .dealer-left {
        max-width: 100% !important;
        text-align: left !important;
    }

    .dealer-left h1 {
        margin-bottom: 10px !important;
        text-align: left !important;
    }

    .dealer-left p:not(.section-kicker) {
        max-width: 100% !important;
        margin: 0 !important;
        text-align: left !important;
        line-height: 1.68 !important;
        margin-top: 0 !important;
    }

    .dealer-intro {
        display: grid !important;
        gap: 6px !important;
    }

    .dealer-intro span {
        display: block !important;
    }

    .dealer-left .dealer-pill-row {
        justify-content: flex-start !important;
        gap: 8px !important;
        margin-top: 16px !important;
        margin-bottom: 0 !important;
    }

    .dealer-pill {
        padding: 8px 12px !important;
        border-radius: 999px !important;
    }

    .dealer-left .dealer-list {
        margin-top: 16px !important;
    }

    .dealer-list li {
        margin-bottom: 10px !important;
        padding-left: 22px !important;
    }

    .dealer-left .dealer-note {
        margin-top: 16px !important;
        text-align: left !important;
    }

    .dealer-right {
        width: 100%;
        justify-content: center !important;
    }

    .market-right {
        width: 100%;
        margin-top: 2px !important;
        justify-content: stretch !important;
    }

    .market-visual-card {
        width: 100% !important;
        padding: 16px 14px 14px !important;
    }

    .market-visual-badge {
        margin-bottom: 12px !important;
    }

    .market-visual-note {
        margin-top: 12px !important;
        padding: 12px 12px !important;
        text-align: left !important;
    }

    .audience-card-body {
        gap: 8px !important;
        min-height: 126px !important;
        padding: 16px 14px 18px !important;
    }

    .audience-card h3 {
        font-size: 16px !important;
        line-height: 1.28 !important;
    }

    .audience-card p {
        font-size: 12px !important;
        line-height: 1.55 !important;
    }

    .hero-lead {
        margin-bottom: 20px !important;
    }
}

/* ========================= */
/* PLAN PAGE REDESIGN */
/* ========================= */
.plan-page .insentif-section,
.plan-page .income-section,
.plan-page .scenario-section {
    position: relative;
    padding: 84px 20px;
    text-align: center;
    overflow: hidden;
}

.plan-page .insentif-section {
    background:
        radial-gradient(circle at top center, rgba(0,255,213,0.12), transparent 32%),
        linear-gradient(180deg, #041012 0%, #07191a 100%);
}

.plan-page .income-section {
    background:
        radial-gradient(circle at top right, rgba(0,170,255,0.12), transparent 30%),
        linear-gradient(180deg, #07191a 0%, #061112 100%);
}

.plan-page .scenario-section {
    background:
        radial-gradient(circle at top left, rgba(0,255,213,0.08), transparent 28%),
        linear-gradient(180deg, #061112 0%, #05080d 100%);
}

.plan-page .insentif-section::before,
.plan-page .income-section::before,
.plan-page .scenario-section::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 50%;
    width: min(1100px, calc(100% - 32px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    pointer-events: none;
}

.plan-page .insentif-title,
.plan-page .income-title,
.plan-page .bse-title,
.plan-page .recurring-title,
.plan-page .group-title {
    margin: 0 auto 20px;
    max-width: 760px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.plan-page .section-break-title {
    margin-top: 72px;
}

.plan-page .income-box,
.plan-page .bse-table,
.plan-page .scenario-grid,
.plan-page .recurring-grid,
.plan-page .group-grid {
    margin-top: 24px;
}

.plan-page .recurring-box,
.plan-page .group-box {
    margin-top: 24px;
    margin-bottom: 24px;
}

.plan-page .recurring-formula {
    margin: 0 auto 24px;
}

.plan-page .bse-note,
.plan-page .note {
    margin-top: 16px;
}

.plan-page .insentif-table,
.plan-page .income-box,
.plan-page .bse-table,
.plan-page .retention-box,
.plan-page .recurring-box,
.plan-page .group-box {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(6,19,21,0.88);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 24px 50px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.plan-page .insentif-table,
.plan-page .income-box,
.plan-page .bse-table {
    border-radius: 28px;
    overflow: hidden;
}

.plan-page .retention-box,
.plan-page .recurring-box,
.plan-page .group-box {
    border-radius: 28px;
    padding: 30px;
}

.plan-page .insentif-table,
.plan-page .income-box,
.plan-page .bse-table,
.plan-page .retention-box,
.plan-page .recurring-box,
.plan-page .group-box {
    max-width: 980px;
}

.plan-page .insentif-row,
.plan-page .income-row,
.plan-page .bse-row,
.plan-page .retention-row {
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.plan-page .insentif-row:last-child,
.plan-page .income-row:last-child,
.plan-page .bse-row:last-child,
.plan-page .retention-row:last-child {
    border-bottom: none;
}

.plan-page .insentif-row div,
.plan-page .income-row div,
.plan-page .bse-row div,
.plan-page .retention-row div {
    font-size: 14px;
    line-height: 1.45;
}

.plan-page .insentif-row.header,
.plan-page .income-row.header,
.plan-page .bse-row.header {
    background:
        linear-gradient(90deg, rgba(127,255,230,0.96), rgba(55,199,255,0.96));
    color: #032425;
    font-weight: 700;
}

.plan-page .insentif-row.total,
.plan-page .bse-row.highlight {
    background: rgba(0,255,213,0.11);
}

.plan-page .insentif-row:not(.header):not(.total):hover,
.plan-page .income-row:not(.header):hover,
.plan-page .bse-row:not(.header):hover,
.plan-page .retention-row:not(.header):hover {
    background: rgba(255,255,255,0.04);
}

.plan-page .retention-box {
    margin-top: 28px;
    text-align: left;
}

.plan-page .retention-box::before,
.plan-page .recurring-box::before,
.plan-page .group-box::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    border-radius: 28px 28px 0 0;
    background: linear-gradient(90deg, #00ffd5, #00aaff);
}

.plan-page .retention-box h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #f3ffff;
}

.plan-page .retention-row.header {
    color: #9ffbed;
    font-weight: 700;
}

.plan-page .note,
.plan-page .bse-note {
    max-width: 760px;
    margin: 18px auto 0;
    color: #91a8a8;
    font-size: 13px;
    line-height: 1.6;
}

.plan-page .scenario-grid,
.plan-page .recurring-grid,
.plan-page .group-grid {
    display: grid;
    gap: 20px;
    margin: 0 auto;
}

.plan-page .scenario-grid,
.plan-page .recurring-grid {
    max-width: 980px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plan-page .group-grid {
    max-width: 1120px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.plan-page .scenario-card,
.plan-page .recurring-card,
.plan-page .group-card {
    position: relative;
    padding: 24px 20px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(7,18,20,0.9);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow:
        0 18px 36px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.plan-page .scenario-card::after,
.plan-page .recurring-card::after,
.plan-page .group-card::after {
    content: "";
    position: absolute;
    right: -20px;
    bottom: -26px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,170,255,0.16), transparent 70%);
    pointer-events: none;
}

.plan-page .scenario-card:hover,
.plan-page .recurring-card:hover,
.plan-page .group-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,255,213,0.24);
    box-shadow:
        0 24px 44px rgba(0,0,0,0.24),
        0 0 28px rgba(0,255,213,0.08);
}

.plan-page .scenario-card.highlight,
.plan-page .recurring-card.highlight,
.plan-page .group-card.highlight {
    border-color: rgba(0,255,213,0.4);
    box-shadow:
        0 24px 44px rgba(0,0,0,0.26),
        0 0 34px rgba(0,255,213,0.16);
}

.plan-page .scenario-top,
.plan-page .recurring-card .top {
    font-size: clamp(30px, 4vw, 38px);
    line-height: 1;
    color: #8ffff0;
    margin-bottom: 14px;
}

.plan-page .scenario-label,
.plan-page .recurring-card .label,
.plan-page .tier span {
    color: #92abab;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.plan-page .scenario-value,
.plan-page .recurring-card .value,
.plan-page .income,
.plan-page .bse {
    font-size: 24px;
    line-height: 1.2;
    color: #ffffff;
}

.plan-page .recurring-box,
.plan-page .group-box {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin-bottom: 32px;
    text-align: left;
}

.plan-page .recurring-image,
.plan-page .group-image {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 10px;
}

.plan-page .recurring-image::before,
.plan-page .group-image::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 28px;
    background: radial-gradient(circle, rgba(0,255,213,0.16), transparent 72%);
    filter: blur(18px);
    z-index: 0;
}

.plan-page .recurring-image img,
.plan-page .group-image img {
    position: relative;
    z-index: 1;
    width: 140px;
    border-radius: 22px;
    box-shadow: 0 18px 30px rgba(0,0,0,0.28);
}

.plan-page .recurring-image span,
.plan-page .group-image span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #aafcf0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.plan-page .recurring-text,
.plan-page .group-text {
    text-align: left;
}

.plan-page .recurring-text p,
.plan-page .group-text p {
    margin-bottom: 12px;
    color: #c2d0d0;
    font-size: 15px;
    line-height: 1.75;
}

.plan-page .recurring-text p:last-child,
.plan-page .group-text p:last-child {
    margin-bottom: 0;
}

.plan-page .recurring-formula {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 34px;
    padding: 14px 20px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #bed1d1;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan-page .recurring-formula span {
    color: #8ffff0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: normal;
}

.plan-page .tier {
    margin-bottom: 14px;
    color: #8ffff0;
    font-size: 18px;
    line-height: 1.35;
}

.plan-page .group-card .bse,
.plan-page .group-card .income {
    margin-bottom: 10px;
}

.plan-page .group-card .income {
    margin-bottom: 0;
    color: #8ffff0;
}

@media (max-width: 768px) {
    .plan-page .insentif-section,
    .plan-page .income-section,
    .plan-page .scenario-section {
        padding: 64px 16px;
    }

    .plan-page .insentif-title,
    .plan-page .income-title,
    .plan-page .bse-title,
    .plan-page .recurring-title,
    .plan-page .group-title {
        margin-bottom: 18px;
        font-size: 28px;
        line-height: 1.2;
    }

    .plan-page .section-break-title {
        margin-top: 56px;
    }

    .plan-page .income-box,
    .plan-page .bse-table,
    .plan-page .scenario-grid,
    .plan-page .recurring-grid,
    .plan-page .group-grid,
    .plan-page .recurring-box,
    .plan-page .group-box {
        margin-top: 18px;
    }

    .plan-page .recurring-box,
    .plan-page .group-box {
        margin-bottom: 18px;
    }

    .plan-page .insentif-table,
    .plan-page .income-box,
    .plan-page .bse-table,
    .plan-page .retention-box,
    .plan-page .recurring-box,
    .plan-page .group-box {
        border-radius: 22px;
    }

    .plan-page .retention-box,
    .plan-page .recurring-box,
    .plan-page .group-box {
        padding: 22px 16px;
    }

    .plan-page .insentif-row,
    .plan-page .income-row,
    .plan-page .bse-row,
    .plan-page .retention-row {
        padding: 14px 10px;
    }

    .plan-page .insentif-row div,
    .plan-page .income-row div,
    .plan-page .bse-row div,
    .plan-page .retention-row div {
        font-size: 12px;
    }

    .plan-page .retention-box {
        text-align: center;
    }

    .plan-page .retention-box h3 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .plan-page .scenario-grid,
    .plan-page .recurring-grid,
    .plan-page .group-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .plan-page .scenario-card,
    .plan-page .recurring-card,
    .plan-page .group-card {
        padding: 18px 14px;
        border-radius: 20px;
    }

    .plan-page .scenario-top,
    .plan-page .recurring-card .top {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .plan-page .scenario-value,
    .plan-page .recurring-card .value,
    .plan-page .income,
    .plan-page .bse {
        font-size: 18px;
    }

    .plan-page .recurring-box,
    .plan-page .group-box {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .plan-page .recurring-text,
    .plan-page .group-text {
        text-align: center;
    }

    .plan-page .recurring-text p,
    .plan-page .group-text p {
        font-size: 14px;
        line-height: 1.65;
    }

    .plan-page .recurring-image img,
    .plan-page .group-image img {
        width: 112px;
        border-radius: 18px;
    }

    .plan-page .recurring-formula {
        width: 100%;
        margin-bottom: 18px;
        padding: 12px 14px;
        font-size: 12px;
        line-height: 1.5;
        flex-wrap: wrap;
    }

    .plan-page .recurring-formula span {
        font-size: 20px;
    }
}
