/* 
Template: MLM Landing Page
PHP: 7.4 compatible
Framework: Bootstrap 5 + Bootstrap Icons
*/

:root {
    --primary: #ff6b1a;
    --primary-dark: #e85a0c;
    --secondary: #6c2cff;
    --blue: #0d6efd;
    --dark: #101828;
    --dark-soft: #1d2939;
    --text: #667085;
    --muted: #f4f7fb;
    --white: #ffffff;
    --yellow: #ffb703;
    --green: #12b76a;
    --danger: #f04438;
    --border: rgba(16, 24, 40, 0.10);
    --shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 100px 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 107, 26, 0.10);
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.section-title {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 900;
    color: var(--dark);
}

.section-desc {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 18px;
}

.btn {
    border-radius: 999px;
    font-weight: 800;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-sm-custom {
    padding: 10px 18px;
    font-size: 14px;
}

.btn-main {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: 0;
    box-shadow: 0 16px 36px rgba(255, 107, 26, 0.25);
}

.btn-main:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(108, 44, 255, 0.30);
}

.btn-light-custom {
    background: var(--white);
    color: var(--dark);
    border: 0;
}

.btn-light-custom:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-light-custom {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    background: rgba(255, 255, 255, 0.10);
}

.btn-outline-light-custom:hover {
    color: var(--dark);
    background: var(--white);
}

/* Topbar */
.topbar {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    padding: 10px 0;
}

.topbar-inner,
.topbar-inner > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.topbar i {
    color: var(--primary);
    margin-right: 6px;
}

.topbar a {
    color: rgba(255, 255, 255, 0.78);
}

.topbar a:hover {
    color: var(--primary);
}

/* Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
    transition: all 0.25s ease;
}

.main-header.scrolled {
    box-shadow: 0 14px 40px rgba(16, 24, 40, 0.08);
}

.navbar {
    min-height: 82px;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.04em;
    font-size: 24px;
}

.navbar-brand:hover {
    color: var(--dark);
}

.navbar-brand span span {
    color: var(--primary);
}

.brand-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 14px 30px rgba(108, 44, 255, 0.25);
}

.navbar-nav .nav-link {
    font-weight: 800;
    color: var(--dark);
    padding: 10px 14px !important;
    border-radius: 999px;
    font-size: 15px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
    background: rgba(255, 107, 26, 0.10);
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 183, 3, 0.22), transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(108, 44, 255, 0.35), transparent 30%),
        linear-gradient(135deg, #101828 0%, #181047 52%, #57136f 100%);
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-1 {
    width: 540px;
    height: 540px;
    right: -180px;
    bottom: -210px;
    background: rgba(255, 107, 26, 0.20);
}

.hero-shape-2 {
    width: 360px;
    height: 360px;
    left: -120px;
    top: 120px;
    background: rgba(255, 255, 255, 0.06);
}

.hero-title {
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 900;
    letter-spacing: -0.07em;
    line-height: 1;
    margin-bottom: 24px;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.9;
    max-width: 610px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 560px;
}

.hero-mini-stats div {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 18px;
    backdrop-filter: blur(12px);
}

.hero-mini-stats strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
}

.hero-mini-stats span {
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
    font-weight: 700;
}

.hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 26px;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.hero-card-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.hero-card-header span {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 700;
}

.hero-card-header h3 {
    margin: 3px 0 0;
    font-weight: 900;
}

.hero-card-header > i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--white);
    color: var(--primary);
    font-size: 24px;
}

.dashboard-preview {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 18px;
}

.preview-item.active {
    background: var(--white);
    color: var(--dark);
}

.preview-item i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 107, 26, 0.14);
    color: var(--primary);
    font-size: 22px;
}

.preview-item span {
    display: block;
    color: inherit;
    opacity: 0.72;
    font-size: 13px;
    font-weight: 700;
}

.preview-item strong {
    font-weight: 900;
}

.hero-package-box {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary), var(--yellow));
    border-radius: 24px;
    padding: 24px;
    color: var(--white);
}

.hero-package-box span {
    font-weight: 800;
    opacity: 0.82;
}

.hero-package-box h4 {
    font-weight: 900;
    margin: 6px 0;
    font-size: 28px;
}

.hero-package-box p {
    margin-bottom: 14px;
    font-weight: 700;
}

.hero-package-box a {
    color: var(--dark);
    background: var(--white);
    display: inline-flex;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 900;
}

/* Feature */
.feature-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 16px 50px rgba(16, 24, 40, 0.06);
    transition: all 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: var(--primary);
    background: rgba(255, 107, 26, 0.10);
    font-size: 32px;
    margin-bottom: 22px;
}

.feature-card h4 {
    font-weight: 900;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 0;
}

/* About */
.about-section {
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.about-visual {
    min-height: 520px;
    position: relative;
}

.about-main-box {
    position: absolute;
    inset: 55px 60px 45px 20px;
    border-radius: 38px;
    color: var(--white);
    padding: 46px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.20), transparent 26%),
        linear-gradient(145deg, var(--secondary), #15113d 64%, var(--primary));
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.about-main-box > i {
    font-size: 82px;
    margin-bottom: 26px;
}

.about-main-box h3 {
    font-size: 34px;
    font-weight: 900;
}

.about-main-box p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-bottom: 0;
}

.about-floating-box {
    position: absolute;
    background: var(--white);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow);
    min-width: 190px;
}

.about-floating-box strong {
    display: block;
    font-size: 24px;
    font-weight: 900;
}

.about-floating-box span {
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
}

.box-one {
    top: 18px;
    right: 25px;
}

.box-two {
    left: 0;
    bottom: 20px;
}

.check-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.check-list div {
    color: var(--text);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i {
    color: var(--green);
}

/* Pricing */
.pricing-card {
    position: relative;
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: 0 16px 50px rgba(16, 24, 40, 0.07);
    transition: all 0.25s ease;
    overflow: hidden;
}

.pricing-card:hover,
.pricing-card.active {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.pricing-card.active {
    color: var(--white);
    background: linear-gradient(145deg, var(--dark), #22125f 58%, var(--secondary));
    border-color: transparent;
}

.pricing-card.active .pricing-price,
.pricing-card.active li {
    color: rgba(255, 255, 255, 0.82);
}

.pricing-label {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 12px;
    font-weight: 900;
    color: var(--primary);
    background: rgba(255, 107, 26, 0.12);
    border-radius: 999px;
    padding: 7px 12px;
}

.pricing-card.active .pricing-label {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
}

.pricing-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    color: var(--primary);
    background: rgba(255, 107, 26, 0.10);
    font-size: 36px;
    margin-bottom: 24px;
}

.pricing-card.active .pricing-icon {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.pricing-card h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}

.pricing-price {
    color: var(--primary);
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 24px;
}

.pricing-card ul {
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
    display: grid;
    gap: 13px;
}

.pricing-card li {
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.pricing-card li i {
    color: var(--green);
}

/* Process */
.process-section {
    background: var(--muted);
}

.process-card {
    height: 100%;
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 14px 42px rgba(16, 24, 40, 0.06);
    border: 1px solid var(--border);
    overflow: hidden;
}

.process-card span {
    position: absolute;
    right: 24px;
    top: 18px;
    font-size: 46px;
    font-weight: 900;
    color: rgba(255, 107, 26, 0.10);
}

.process-card i {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 21px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-size: 30px;
    margin-bottom: 22px;
}

.process-card h4 {
    font-weight: 900;
    margin-bottom: 10px;
}

.process-card p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Bonus */
.bonus-section {
    background:
        radial-gradient(circle at 84% 12%, rgba(255, 107, 26, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fff8f4 100%);
}

.bonus-list {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.bonus-list > div {
    display: flex;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
}

.bonus-list i {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--primary);
    background: rgba(255, 107, 26, 0.12);
    font-size: 24px;
}

.bonus-list h5 {
    font-weight: 900;
    margin-bottom: 5px;
}

.bonus-list p {
    color: var(--text);
    margin-bottom: 0;
    line-height: 1.6;
}

.bonus-card {
    border-radius: var(--radius-xl);
    padding: 34px;
    background: var(--dark);
    color: var(--white);
    box-shadow: var(--shadow);
}

.bonus-card h3 {
    font-weight: 900;
    margin-bottom: 10px;
}

.bonus-card > p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 26px;
}

.bonus-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bonus-row span {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

.bonus-row strong {
    color: var(--yellow);
    font-size: 22px;
    font-weight: 900;
}

.disclaimer-box {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 183, 3, 0.12);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.disclaimer-box i {
    color: var(--yellow);
    margin-top: 4px;
}

/* Testimonial */
.testimonial-section {
    background: var(--white);
}

.testimonial-card {
    height: 100%;
    border-radius: var(--radius-lg);
    padding: 30px;
    background: var(--white);
    box-shadow: 0 16px 50px rgba(16, 24, 40, 0.08);
    border: 1px solid var(--border);
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--yellow);
    margin-bottom: 18px;
}

.testimonial-card p {
    color: var(--text);
    line-height: 1.8;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}

.avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-weight: 900;
}

.testimonial-user h5 {
    margin: 0;
    font-weight: 900;
}

.testimonial-user span {
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

/* Contact */
.contact-section {
    padding-top: 40px;
}

.contact-wrapper {
    border-radius: var(--radius-xl);
    padding: 52px;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.22), transparent 24%),
        linear-gradient(135deg, var(--secondary), var(--primary));
    box-shadow: var(--shadow);
}

.contact-wrapper h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-top: 16px;
}

.contact-wrapper p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #080d1f;
    color: rgba(255, 255, 255, 0.72);
    padding-top: 80px;
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

.footer-brand:hover {
    color: var(--white);
}

.footer-brand span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.footer p {
    line-height: 1.8;
}

.footer h5 {
    color: var(--white);
    font-weight: 900;
    margin-bottom: 20px;
}

.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer a {
    color: rgba(255, 255, 255, 0.72);
}

.footer a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-contact li {
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 0;
    font-size: 14px;
}

/* Floating */
.whatsapp-float,
.back-to-top {
    position: fixed;
    z-index: 999;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
}

.whatsapp-float {
    left: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    background: #25d366;
    font-size: 28px;
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.30);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -9px;
    border-radius: inherit;
    border: 2px solid rgba(37, 211, 102, 0.46);
    animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
    from {
        transform: scale(0.84);
        opacity: 1;
    }
    to {
        transform: scale(1.3);
        opacity: 0;
    }
}

.back-to-top {
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 14px;
        padding: 16px;
        border-radius: 20px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .hero-section {
        min-height: auto;
        padding: 90px 0;
    }

    .hero-card {
        margin-top: 20px;
    }

    .section-padding {
        padding: 78px 0;
    }

    .about-visual {
        min-height: 460px;
    }

    .about-main-box {
        inset: 45px 20px 45px 20px;
    }

    .contact-wrapper {
        padding: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-card {
        padding: 20px;
        border-radius: 24px;
    }

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

    .about-floating-box {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin-bottom: 14px;
    }

    .about-visual {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .about-main-box {
        position: relative;
        inset: auto;
        min-height: 360px;
        padding: 30px;
    }

    .pricing-card,
    .bonus-card,
    .contact-wrapper {
        padding: 26px;
    }

    .navbar-brand {
        font-size: 20px;
    }

    .brand-icon {
        width: 42px;
        height: 42px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .back-to-top {
        width: 44px;
        height: 44px;
    }
}


/* Hero Product Animation */
.hero-product-wrap {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product-card {
    position: relative;
    z-index: 5;
    width: min(100%, 430px);
    min-height: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 28px 28px 32px;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    box-shadow: 0 34px 95px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.hero-product-card::before {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 30px;
    border: 1px dashed rgba(255, 255, 255, 0.20);
    pointer-events: none;
}

.hero-product-card::after {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 107, 26, 0.10), transparent 70%);
    z-index: -1;
    animation: productPulse 3.6s ease-in-out infinite;
}

.product-label-top {
    width: 100%;
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    font-weight: 900;
}

.product-label-top span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

.product-label-top i {
    color: var(--yellow);
    font-size: 24px;
}

.hero-product-img {
    position: relative;
    z-index: 3;
    width: min(86%, 330px);
    max-height: 355px;
    object-fit: contain;
    margin: 28px auto 18px;
    filter: drop-shadow(0 34px 28px rgba(0, 0, 0, 0.30));
    animation: productFloat 4.2s ease-in-out infinite;
}

.product-info-card {
    position: relative;
    z-index: 4;
    width: 100%;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary), var(--yellow));
    color: var(--white);
    box-shadow: 0 18px 44px rgba(255, 107, 26, 0.26);
}

.product-info-card span {
    font-weight: 800;
    opacity: 0.84;
    font-size: 14px;
}

.product-info-card h4 {
    margin: 7px 0 8px;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.product-info-card p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.6;
    font-weight: 600;
}

.product-info-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    background: var(--white);
    border-radius: 999px;
    padding: 10px 17px;
    font-weight: 900;
}

.product-glow {
    position: absolute;
    z-index: 1;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 183, 3, 0.34), rgba(255, 107, 26, 0.18) 38%, rgba(108, 44, 255, 0.14) 62%, transparent 72%);
    filter: blur(8px);
    animation: glowMove 5s ease-in-out infinite;
}

.product-circle {
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
}

.circle-one {
    width: 72px;
    height: 72px;
    left: 36px;
    top: 100px;
    animation: bubbleMoveOne 5.5s ease-in-out infinite;
}

.circle-two {
    width: 46px;
    height: 46px;
    right: 72px;
    top: 76px;
    animation: bubbleMoveTwo 4.8s ease-in-out infinite;
}

.circle-three {
    width: 58px;
    height: 58px;
    right: 20px;
    bottom: 138px;
    animation: bubbleMoveThree 6.2s ease-in-out infinite;
}

.product-badge {
    position: absolute;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 205px;
    padding: 15px 17px;
    border-radius: 20px;
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
    animation: badgeFloat 4s ease-in-out infinite;
}

.product-badge i {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(255, 107, 26, 0.12);
    color: var(--primary);
    font-size: 22px;
}

.product-badge span {
    display: block;
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
}

.product-badge strong {
    display: block;
    font-size: 15px;
    font-weight: 900;
}

.product-badge-left {
    left: 0;
    top: 110px;
}

.product-badge-right {
    right: 0;
    bottom: 112px;
    animation-delay: 1.2s;
}

@keyframes productFloat {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateY(-20px) rotate(1.5deg);
    }
}

@keyframes productPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.92);
        opacity: 0.72;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 1;
    }
}

@keyframes glowMove {
    0%, 100% {
        transform: scale(0.95) translateY(0);
        opacity: 0.78;
    }
    50% {
        transform: scale(1.08) translateY(-16px);
        opacity: 1;
    }
}

@keyframes bubbleMoveOne {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(18px, -28px);
    }
}

@keyframes bubbleMoveTwo {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-16px, 24px) scale(1.12);
    }
}

@keyframes bubbleMoveThree {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-22px, -20px);
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@media (max-width: 991.98px) {
    .hero-product-wrap {
        min-height: 580px;
    }

    .product-badge-left {
        left: 10px;
    }

    .product-badge-right {
        right: 10px;
    }
}

@media (max-width: 575.98px) {
    .hero-product-wrap {
        min-height: 560px;
    }

    .hero-product-card {
        min-height: 520px;
        padding: 22px;
        border-radius: 28px;
    }

    .hero-product-img {
        width: min(88%, 280px);
        max-height: 310px;
    }

    .product-info-card h4 {
        font-size: 23px;
    }

    .product-badge {
        min-width: 178px;
        padding: 12px 14px;
    }

    .product-badge i {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 19px;
    }

    .product-badge-left {
        top: 82px;
        left: -4px;
    }

    .product-badge-right {
        right: -4px;
        bottom: 92px;
    }

    .product-circle {
        display: none;
    }
}


/* Bonus Image Slider */
.bonus-image-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    background: var(--dark);
}

.bonus-image-slider .carousel-inner {
    border-radius: 10px;
}

.bonus-slide-card {
    position: relative;
    min-height: 532px;
    overflow: hidden;
    border-radius: 10px;
    background: var(--dark);
}

.bonus-slide-card img {
    width: 100%;
    min-height: 532px;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 5s ease;
}

.bonus-image-slider .carousel-item.active img {
    transform: scale(1.08);
}

.bonus-slide-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
/*        linear-gradient(180deg, rgba(8, 13, 31, 0.12) 0%, rgba(8, 13, 31, 0.78) 100%),
        radial-gradient(circle at 20% 80%, rgba(255, 107, 26, 0.42), transparent 34%);*/
}

.bonus-slide-caption {
    position: absolute;
    z-index: 3;
    left: 34px;
    right: 34px;
    bottom: 42px;
    color: var(--white);
}

.bonus-slide-caption span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(255, 107, 26, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: ;
    font-size: 14px;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.bonus-slide-caption h3 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 900;
    margin-bottom: 12px;
}

.bonus-slide-caption p {
    max-width: 460px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 0;
}

.bonus-image-slider .carousel-indicators {
    right: 28px;
    left: auto;
    bottom: 24px;
    margin: 0;
    justify-content: flex-end;
    gap: 8px;
    z-index: 5;
}

.bonus-image-slider .carousel-indicators [data-bs-target] {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 0;
    opacity: 1;
    background: rgba(255, 255, 255, 0.48);
}

.bonus-image-slider .carousel-indicators .active {
    width: 32px;
    border-radius: 999px;
    background: var(--primary);
}

.bonus-image-slider .carousel-control-prev,
.bonus-image-slider .carousel-control-next {
    width: 58px;
    opacity: 1;
    z-index: 6;
}

.bonus-slider-arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--dark);
    background: var(--white);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    transition: all 0.25s ease;
}

.bonus-slider-arrow:hover {
    color: var(--white);
    background: var(--primary);
    transform: scale(1.08);
}

@media (max-width: 767.98px) {
    .bonus-slide-card,
    .bonus-slide-card img {
        min-height: 500px;
    }

    .bonus-slide-caption {
        left: 24px;
        right: 24px;
        bottom: 62px;
    }

    .bonus-slide-caption h3 {
        font-size: 34px;
    }

    .bonus-slide-caption p {
        font-size: 15px;
    }

    .bonus-image-slider .carousel-indicators {
        left: 24px;
        right: 24px;
        justify-content: center;
    }
}


/* Process Video Layout */
.process-list-video {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.process-list-item {
    position: relative;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 22px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 14px 42px rgba(16, 24, 40, 0.06);
    overflow: hidden;
}

.process-list-item > span {
    position: absolute;
    right: 20px;
    top: 12px;
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
    color: rgba(255, 107, 26, 0.10);
}

.process-list-item > i {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-size: 28px;
}

.process-list-item h4 {
    position: relative;
    z-index: 2;
    font-weight: 900;
    margin-bottom: 6px;
}

.process-list-item p {
    position: relative;
    z-index: 2;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 0;
}

.process-video-box {
    position: relative;
    min-height: 560px;
    border-radius: 10px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.14), transparent 28%),
        linear-gradient(145deg, var(--dark), #22125f 55%, var(--primary));
    box-shadow: var(--shadow);
    padding: 26px;
}

.process-video-box::before {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    right: -130px;
    top: -110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.process-video-box::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    left: -160px;
    bottom: -180px;
    border-radius: 50%;
    background: rgba(255, 107, 26, 0.18);
}

.process-video {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 10px;
    background: var(--dark);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.process-video-badge {
    position: absolute;
    z-index: 5;
    top: 42px;
    left: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--dark);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.20);
    animation: badgeFloat 4s ease-in-out infinite;
}

.process-video-badge i {
    color: var(--primary);
    font-size: 36px;
}

.process-video-badge span {
    display: block;
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
}

.process-video-badge strong {
    font-size: 15px;
    font-weight: 900;
}

.process-video-note {
    position: relative;
    z-index: 4;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 22px;
    padding: 18px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    line-height: 1.7;
}

.process-video-note i {
    color: var(--yellow);
    margin-top: 4px;
}

@media (max-width: 991.98px) {
    .process-video-box { min-height: auto; }
}

@media (max-width: 575.98px) {
    .process-list-item { grid-template-columns: 52px 1fr; padding: 16px; }
    .process-list-item > i { width: 52px; height: 52px; border-radius: 17px; font-size: 24px; }
    .process-video-box { padding: 18px; border-radius: 26px; }
    .process-video { height: 300px; border-radius: 22px; }
    .process-video-badge { left: 28px; top: 28px; }
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
    padding: 0 70px 60px;
}

.testimonial-slide-card {
    max-width: 980px;
    margin: 0 auto;
    min-height: 290px;
    border-radius: var(--radius-xl);
    padding: 34px;
    background: var(--white);
    box-shadow: 0 16px 50px rgba(16, 24, 40, 0.08);
    border: 1px solid var(--border);
}

.testimonial-slide-card p {
    color: var(--text);
    line-height: 1.9;
    font-size: 21px;
    margin: 18px 0 28px;
}

.testimonial-photo {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 107, 26, 0.14);
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.14);
    flex: 0 0 74px;
}

.testimonial-slider .carousel-indicators {
    bottom: 0;
    margin: 0;
    gap: 8px;
}

.testimonial-slider .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    opacity: 1;
    background: rgba(16, 24, 40, 0.18);
}

.testimonial-slider .carousel-indicators .active {
    width: 34px;
    border-radius: 999px;
    background: var(--primary);
}

.testimonial-slider .carousel-control-prev,
.testimonial-slider .carousel-control-next {
    width: 60px;
    opacity: 1;
}

.testimonial-arrow {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    transition: all 0.25s ease;
}

.testimonial-arrow:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
}

@media (max-width: 767.98px) {
    .testimonial-slider {
        padding: 0 0 60px;
    }

    .testimonial-slider .carousel-control-prev,
    .testimonial-slider .carousel-control-next {
        display: none;
    }

    .testimonial-slide-card {
        min-height: auto;
        padding: 26px;
    }

    .testimonial-slide-card p {
        font-size: 17px;
        margin-bottom: 22px;
    }

    .testimonial-photo {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
    }
}
