:root {
    --primary: #2F6FA8;
    --primary-dark: #1F4E7A;
    --secondary: #0B3B63;
    --gold: #2FA8E0;
    --gold-dark: #1C7CA8;
    --dark: #0B3B63;
    --light: #EAF2FA;
    --gray: #52657A;
    --border: #C9DCEC;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #2B3A4A;
    line-height: 1.65;
    background: var(--white);
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: var(--secondary);
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-overflow-guard {
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Header */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 26px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: #375775;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a.btn,
.nav-links a.btn:hover {
    color: var(--white);
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.92rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--dark);
}

.btn {
    display: inline-block;
    padding: 15px 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 0 var(--primary-dark);
    transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
    background: var(--gold);
    color: var(--secondary);
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--gold-dark);
}

.btn-secondary {
    background: var(--gold);
    color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary);
}

/* Referral banner */
.ref-banner {
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 0;
    text-align: center;
}

.ref-banner i {
    margin-right: 6px;
}

.page-inner {
    padding-top: 10px;
}

/* Active nav link */
.nav-links a.active {
    color: var(--gold-dark);
    font-weight: 500;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
}

.hero-text h1 {
    font-size: 2.6rem;
    margin-bottom: 18px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    opacity: 0.92;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image img {
    border-radius: 12px;
}

/* Section generic */
.section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    margin-bottom: 14px;
    color: var(--gray);
}

.about-image img {
    border-radius: 12px;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border: 2px solid var(--secondary);
    border-radius: 10px;
    transition: box-shadow 0.2s;
}

.feature-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.feature-item h3 {
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Products */
.products {
    background: var(--light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--secondary);
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.product-img {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
}

/* Trust badges */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 0 10px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.92rem;
    font-weight: 600;
}

.trust-badge i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Hero visual (icon-based, no external photos) */
.hero-visual {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-visual-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 30px 26px;
    text-align: center;
    backdrop-filter: blur(2px);
}

.hero-visual-card i {
    font-size: 2.6rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.hero-visual-card span {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.product-info {
    padding: 20px;
}

.product-name {
    margin-bottom: 8px;
}

.product-info p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.product-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.whatsapp-cta {
    margin-top: 50px;
    text-align: center;
    background: var(--white);
    border: 1px dashed var(--primary);
    border-radius: 12px;
    padding: 36px 20px;
}

.whatsapp-cta h3 {
    margin-bottom: 10px;
    color: var(--secondary);
}

.whatsapp-cta p {
    color: var(--gray);
    margin-bottom: 20px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background: #1eb958;
}

/* Marketing Plan */
.marketing-plan {
    padding: 70px 0;
    background: var(--secondary);
    color: var(--white);
}

.marketing-plan .section-title {
    color: var(--white);
}

.marketing-subtitle {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.pricing-card {
    background: var(--white);
    color: var(--dark);
    border-radius: 12px;
    padding: 30px 24px;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.03);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-tier {
    text-align: center;
    margin-bottom: 18px;
    color: var(--secondary);
}

.pricing-highlight {
    text-align: center;
    margin-bottom: 18px;
}

.pricing-highlight-label {
    font-size: 0.85rem;
    color: var(--gray);
}

.pricing-highlight-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.92rem;
}

.pricing-feature i {
    color: var(--primary);
}

.pricing-note {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 24px 26px;
}

.pricing-note h4 {
    margin-bottom: 14px;
}

.pricing-note ul {
    padding-left: 18px;
    list-style: disc;
}

.pricing-note li {
    margin-bottom: 8px;
    font-size: 0.92rem;
    opacity: 0.92;
}

/* Rewards */
.reward-section {
    padding: 70px 0;
}

.reward-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
    color: var(--gray);
}

.reward-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 40px;
}

.reward-card {
    border: 2px solid var(--secondary);
    border-radius: 10px;
    padding: 22px;
    text-align: center;
}

.reward-name {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.reward-points {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 6px;
}

.reward-value {
    color: var(--gray);
    font-size: 0.9rem;
}

.reward-info-box {
    background: var(--light);
    border-radius: 10px;
    padding: 26px;
}

.reward-info-box h3 {
    margin-bottom: 14px;
    color: var(--secondary);
}

.reward-info-list {
    padding-left: 18px;
    list-style: disc;
}

.reward-info-list li {
    margin-bottom: 8px;
    color: var(--gray);
    font-size: 0.92rem;
}

/* CTA */
.cta {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 70px 0;
}

.cta h2 {
    font-size: 1.9rem;
    margin-bottom: 14px;
    color: var(--white);
}

.cta p {
    max-width: 640px;
    margin: 0 auto;
    opacity: 0.92;
}

/* Footer */
footer {
    background: var(--dark);
    color: #d1d5db;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 12px;
}

.footer-logo .logo-img {
    height: 24px;
}

.footer-about p {
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.social-icons a:hover {
    background: var(--primary);
}

.footer-links h3,
.footer-contact h3 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.92rem;
    transition: color 0.2s;
}

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

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

.dummy-tag {
    color: var(--gold);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

/* Preloader */
body.is-loading {
    overflow: hidden;
}

.preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    z-index: 9999;
    transition: opacity 0.4s ease;
}

.preloader.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-mark {
    font-size: 1.8rem;
    color: var(--primary);
}

.preloader-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: eszam-spin 0.8s linear infinite;
}

@keyframes eszam-spin {
    to { transform: rotate(360deg); }
}

/* Hero carousel */
.hero-carousel {
    position: relative;
    overflow: hidden;
}

.carousel {
    position: relative;
}

.carousel-track {
    display: flex;
    min-width: 0;
    transition: transform 0.6s ease;
}

.carousel-slide {
    flex: 0 0 100%;
    min-width: 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    padding: 70px 0 90px;
}

.carousel-slide.tone-gold {
    background: linear-gradient(135deg, #7a5c0f, var(--gold));
}

.carousel-slide.tone-deep {
    background: linear-gradient(135deg, #16303f, var(--secondary));
}

.slide-inner {
    position: relative;
    z-index: 1;
}

.slide-text {
    max-width: 560px;
    text-align: left;
}

.slide-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.slide-inner h1 {
    font-size: 2.3rem;
    line-height: 1.25;
    margin-bottom: 14px;
    color: var(--white);
}

.slide-inner p {
    opacity: 0.92;
    margin-bottom: 24px;
    max-width: 480px;
}

.carousel-slide {
    position: relative;
}

/* Photo acts as a soft background panel on one side of the slide —
   not a boxed-off image, doesn't cover the text/button column, not full-bleed. */
.slide-visual {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    background-size: cover;
    background-position: center;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 35%);
    mask-image: linear-gradient(90deg, transparent, #000 35%);
    pointer-events: none;
}

.slide-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.05) 65%);
}


.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.22);
}

.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }

.carousel-dots {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
}

.carousel-dots button.active {
    background: var(--white);
    width: 22px;
    border-radius: 4px;
    transition: width 0.2s;
}

/* Sticky mobile CTA */
.sticky-cta {
    display: none;
}

/* Prose (dense/document sections: kode etik, terms) */
.prose h2 {
    color: var(--secondary);
    margin: 28px 0 12px;
    font-size: 1.25rem;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose p {
    color: var(--gray);
    margin-bottom: 14px;
    max-width: 760px;
}

.pricing-note.prose p {
    color: rgba(255, 255, 255, 0.85);
}

/* Image placeholder (dummy site — marks where a real photo goes) */
.img-placeholder {
    border: 1.5px dashed rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.img-placeholder i {
    font-size: 1.8rem;
    opacity: 0.85;
}

.img-placeholder span {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
}

.img-placeholder.on-light {
    border-color: var(--border);
    background: var(--light);
    color: var(--gray);
}

/* Scroll-reveal */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Page transition (multi-page PHP site — fade out before leaving; the
   preloader on the next page already covers the entrance) */
body.page-exit {
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Testimonial marquee */
.marquee {
    overflow: hidden;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: eszam-marquee 26s linear infinite;
}

@keyframes eszam-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}

.marquee-item {
    flex: 0 0 auto;
    width: 260px;
    background: var(--light);
    border: 2px solid var(--secondary);
    border-radius: 10px;
    padding: 18px 20px;
}

.marquee-item p {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 8px;
    white-space: normal;
}

.marquee-item span {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 600;
}

/* Landing teasers */
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.teaser-card {
    background: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.teaser-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.teaser-img {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.teaser-card-body {
    padding: 18px 20px;
}

.teaser-card-body h3 {
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.teaser-card-body p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.teaser-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 30px;
}

.why-item {
    text-align: center;
}

.why-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.why-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.why-item p {
    color: var(--gray);
    font-size: 0.88rem;
}

/* Eyebrow label (uppercase tracked small label with a short rule) */
.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.eyebrow::before {
    content: '';
    width: 26px;
    height: 1px;
    background: var(--gold);
    display: block;
}

.eyebrow.center {
    justify-content: center;
}

.eyebrow.center::before {
    display: none;
}

.biz-section .eyebrow {
    color: rgba(255, 255, 255, 0.85);
}

/* Floating trust badge card (overlaps hero bottom edge) */
.trust-float {
    position: relative;
    z-index: 5;
    margin-top: -40px;
    margin-bottom: 40px;
}

.trust-float-inner {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 50px -15px rgba(26, 41, 66, 0.15);
    padding: 28px 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}

.trust-float-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 150px;
}

.trust-float-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.trust-float-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--secondary);
}

.trust-float-item p {
    font-size: 0.76rem;
    color: var(--gray);
}

/* Brand essence statement */
.essence {
    padding: 70px 0;
    text-align: center;
}

.essence blockquote {
    font-size: 1.7rem;
    line-height: 1.5;
    max-width: 760px;
    margin: 0 auto;
    color: var(--secondary);
}

.essence blockquote em {
    color: var(--gold-dark);
    font-style: italic;
}

.essence .rule {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 28px auto 0;
}

/* Image rotator (crossfade between multiple photos) */
.img-rotator {
    position: relative;
    overflow: hidden;
}

.rotator-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.rotator-layer.is-active {
    opacity: 1;
}

/* Zig-zag product teaser rows */
.zigzag-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 40px 0;
}

.zigzag-row.reverse .zigzag-text {
    order: 2;
}

.zigzag-row.reverse .zigzag-visual {
    order: 1;
}

.zigzag-visual {
    position: relative;
}

/* Two extra "cards" peeking out behind the main photo, like a stack of prints */
.zigzag-visual::before {
    content: '';
    position: absolute;
    inset: -22px;
    background: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 26px;
    transform: rotate(-7deg);
    z-index: -2;
    box-shadow: 0 16px 32px -14px rgba(26, 41, 66, 0.22);
}

.zigzag-visual::after {
    content: '';
    position: absolute;
    inset: -12px;
    background: var(--light);
    border: 2px solid var(--secondary);
    border-radius: 22px;
    transform: rotate(5deg);
    z-index: -1;
    box-shadow: 0 14px 28px -12px rgba(26, 41, 66, 0.18);
}

.zigzag-img {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    border: 5px solid var(--white);
    box-shadow: 0 30px 60px -18px rgba(26, 41, 66, 0.4);
}

.zigzag-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.92);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
}

.zigzag-text ul {
    list-style: none;
    border-left: 2px solid rgba(127, 175, 163, 0.35);
    padding-left: 20px;
    margin: 26px 0;
}

.zigzag-text li {
    margin-bottom: 14px;
}

.zigzag-text li strong {
    display: block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

.zigzag-text li span {
    font-size: 0.85rem;
    color: var(--gray);
}

.zigzag-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 4px;
}

/* Business opportunity — dark ambient section */
.biz-section {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.biz-glow-a, .biz-glow-b {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.biz-glow-a {
    width: 500px;
    height: 500px;
    background: rgba(127, 175, 163, 0.14);
    top: -150px;
    right: -100px;
}

.biz-glow-b {
    width: 350px;
    height: 350px;
    background: rgba(70, 130, 180, 0.18);
    bottom: -120px;
    left: -80px;
}

.biz-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.biz-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 28px;
    margin: 30px 0;
}

.biz-stats h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.biz-stats p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.biz-collage {
    position: relative;
    height: 460px;
}

.biz-collage-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 74%;
    height: 82%;
    border-radius: 24px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
    background-size: cover;
    background-position: center;
}

.biz-collage-sub {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48%;
    height: 48%;
    border-radius: 24px;
    border: 4px solid var(--secondary);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
    background-size: cover;
    background-position: center;
}

.biz-badge {
    position: absolute;
    top: 46%;
    left: 24%;
    width: 90px;
    height: 90px;
    background: var(--gold);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 22px;
    padding: 34px 30px;
    position: relative;
}

.testimonial-card i.ph-quotes {
    font-size: 2.2rem;
    color: var(--border);
    margin-bottom: 18px;
    display: block;
}

.testimonial-card p {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 26px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--light);
    padding-top: 20px;
}

.avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.testimonial-author p {
    font-size: 0.75rem;
    color: var(--gray);
    font-style: normal;
    margin: 0;
}

/* Marketing plan: highlight strip */
.highlight-strip {
    background: var(--secondary);
    border-radius: 24px;
    padding: 40px;
    color: var(--white);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.highlight-item .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.highlight-item h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.highlight-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

/* Package showcase card */
.package-showcase {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.package-showcase-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 22px;
    border-bottom-left-radius: 18px;
}

.package-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 30px;
    align-items: center;
}

.package-contents {
    background: var(--light);
    border-radius: 16px;
    border: 2px solid var(--secondary);
    padding: 20px;
    margin-top: 20px;
}

.package-contents h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--secondary);
    margin-bottom: 12px;
}

.package-contents li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #4b5563;
    margin-bottom: 10px;
    list-style: none;
}

.package-contents li i {
    color: var(--gold);
}

.package-price-box {
    background: var(--secondary);
    color: var(--white);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
}

.package-price-box .label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.package-price-box .price {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    color: var(--white);
    margin: 6px 0;
}

.package-price-box .note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

/* Calculator */
.calc-box {
    background: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 24px;
    padding: 44px;
    margin-bottom: 60px;
}

.calc-slider-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.calc-slider-row span {
    font-family: 'Manrope', sans-serif;
    color: var(--gold-dark);
    font-size: 1.3rem;
}

.calc-slider-row input[type="range"] {
    width: 100%;
    accent-color: var(--primary);
}

.calc-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: var(--light);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    margin-top: 30px;
}

.calc-results .figure {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: var(--secondary);
}

.calc-results .figure.gold {
    color: var(--gold-dark);
}

.calc-results .figure-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray);
    margin-bottom: 4px;
}

/* Step cards */
.step-card {
    background: var(--light);
    border-radius: 20px;
    padding: 34px 28px;
    text-align: center;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--secondary);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--gray);
}

/* Dense document sections (kode etik, ketentuan) */
.doc-section {
    background: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 24px;
    padding: 40px;
}

.doc-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.doc-section-header i {
    font-size: 1.8rem;
    color: var(--gold);
}

.doc-item {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--light);
    font-size: 0.92rem;
    color: #4b5563;
}

.doc-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.doc-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 6px;
}

/* Rewards — premium restyle */
.reward-hero {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 50px;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

.reward-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26,41,66,0.92), rgba(26,41,66,0.3) 60%, transparent);
}

.reward-hero-body {
    position: relative;
    z-index: 1;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    width: 100%;
    color: var(--white);
}

.reward-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--secondary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.reward-hero h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.reward-hero p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    font-size: 0.92rem;
}

.reward-hero-points {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 18px 22px;
    text-align: center;
}

.reward-hero-points .num {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
}

.reward-hero-points .val {
    color: var(--gold);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.reward-card-v2 {
    background: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.reward-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -15px rgba(26, 41, 66, 0.18);
}

.reward-card-v2-img {
    position: relative;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.reward-card-v2-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26,41,66,0.35), transparent 55%);
}

.reward-card-v2 .points-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 16px -6px rgba(0,0,0,0.3);
}

.reward-card-v2-body {
    padding: 26px 24px;
}

.reward-card-v2 h4 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.reward-card-v2 p {
    color: var(--gray);
    font-size: 0.87rem;
    margin-bottom: 18px;
}

.reward-card-v2 .value-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--light);
    padding-top: 14px;
    font-size: 0.78rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.reward-card-v2 .value-row span:last-child {
    color: var(--secondary);
    font-weight: 600;
}

/* Product category layout (arch hero image + list items) */
.category-row {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 90px;
}

.category-row.reverse .category-hero {
    order: 2;
}

.category-row.reverse .category-list-wrap {
    order: 1;
}

.category-hero {
    position: relative;
    aspect-ratio: 3 / 4;
    background: var(--white);
    padding: 8px;
    border-radius: 999px 999px 16px 16px;
    box-shadow: 0 24px 50px -18px rgba(26, 41, 66, 0.25);
}

.category-row.reverse .category-hero {
    border-radius: 16px 16px 999px 999px;
}

.category-hero-inner {
    position: absolute;
    inset: 8px;
    overflow: hidden;
    border-radius: inherit;
}

.category-hero-tag {
    position: absolute;
    bottom: 36px;
    right: -14px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.2);
    font-family: 'Manrope', sans-serif;
    font-style: italic;
    color: var(--secondary);
}

.category-row.reverse .category-hero-tag {
    right: auto;
    left: -14px;
}

.category-list-wrap h2 {
    font-size: 1.9rem;
    margin-bottom: 6px;
}

.category-list-wrap > p {
    color: var(--gray);
    margin-bottom: 34px;
}

.product-list-item {
    display: flex;
    gap: 22px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.product-list-thumb {
    width: 108px;
    height: 108px;
    flex-shrink: 0;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--secondary);
}

.product-list-body {
    flex: 1;
}

.product-list-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.product-list-top h3 {
    font-size: 1.4rem;
}

.product-list-price {
    background: var(--light);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.92rem;
}

.product-list-body p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.product-list-order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 600;
}

/* Member Area */
.member-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 24px;
    padding: 34px 36px;
    margin-bottom: 40px;
}

.member-header .avatar-circle {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
    background: var(--gold);
    color: var(--secondary);
}

.member-header h1 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.member-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.member-header .rank-tag {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 18px;
    padding: 24px;
}

.stat-card i {
    font-size: 1.5rem;
    color: var(--gold-dark);
    margin-bottom: 12px;
    display: block;
}

.stat-card .stat-value {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: var(--secondary);
}

.stat-card .stat-label {
    font-size: 0.78rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.referral-box {
    background: var(--light);
    border: 1px dashed var(--primary);
    border-radius: 18px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.referral-box .link-text {
    font-family: 'Manrope', sans-serif;
    color: var(--secondary);
    font-size: 1.1rem;
}

.referral-box .link-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray);
    margin-bottom: 4px;
}

.simple-list {
    background: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 18px;
    overflow: hidden;
}

.simple-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--light);
}

.simple-list-row:last-child {
    border-bottom: none;
}

.simple-list-row .main {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.92rem;
}

.simple-list-row .sub {
    font-size: 0.78rem;
    color: var(--gray);
}

.simple-list-row .amount {
    font-weight: 600;
    color: var(--gold-dark);
    white-space: nowrap;
}

.status-pill {
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--light);
    color: var(--secondary);
    white-space: nowrap;
}

/* Marketing plan: commission cards */
.comm-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 20px;
}

.comm-card {
    background: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
}

.comm-card .icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--light);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 14px;
}

.comm-card .comm-pct {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.comm-card h4 {
    font-size: 0.92rem;
    margin-bottom: 8px;
}

.comm-card p {
    font-size: 0.78rem;
    color: var(--gray);
}

.payout-total {
    background: var(--secondary);
    color: var(--white);
    border-radius: 18px;
    padding: 26px;
    text-align: center;
    margin-bottom: 50px;
}

.payout-total .figure {
    font-family: 'Manrope', sans-serif;
    font-size: 2.4rem;
    color: var(--gold);
}

.payout-total .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.7);
}

/* Distribution flow */
.flow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 50px;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 120px;
    text-align: center;
}

.flow-step .icon-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.flow-step span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--secondary);
}

.flow-arrow {
    color: var(--border);
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Product spec details (packaging, ingredients, BPOM) — used on the Produk page */
.pkg {
    font-size: 0.78rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.ingredients {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.ingredients span {
    background: var(--light);
    color: var(--secondary);
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 999px;
}

.bpom {
    font-size: 0.7rem;
    color: var(--gray);
}

/* Bento-grid hero (Web2 signature layout — replaces the carousel) */
.bento-hero {
    padding: 24px 0;
    background: var(--light);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
}

.bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 0 rgba(11, 59, 99, 0.08);
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 41, 66, 0.82), rgba(11, 41, 66, 0.15));
}

.bento-card > * {
    position: relative;
    z-index: 1;
}

.bento-card.plain {
    background-color: var(--primary);
}

.bento-card.plain::before {
    content: none;
}

.bento-main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    padding: 34px;
}

.bento-main h1 {
    color: var(--white);
    font-size: 2.1rem;
    line-height: 1.15;
    margin-bottom: 12px;
}

.bento-main p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 420px;
}

.bento-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 6px 14px;
    border-radius: 8px;
    margin-bottom: 14px;
    width: fit-content;
}

.bento-small {
    grid-column: span 1;
}

.bento-small h3 {
    color: var(--white);
    font-size: 1.05rem;
}

.bento-small p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
}

.bento-wide {
    grid-column: span 2;
}

.bento-stat-icon {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }

    .bento-main {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .features-grid,
    .product-grid,
    .pricing-grid,
    .teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reward-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .zigzag-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .zigzag-row.reverse .zigzag-text,
    .zigzag-row.reverse .zigzag-visual {
        order: initial;
    }

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

    .biz-collage {
        height: 340px;
    }

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

    .highlight-strip {
        grid-template-columns: 1fr;
    }

    .calc-results {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .reward-hero-body {
        align-items: flex-start;
        flex-direction: column;
    }

    .category-row,
    .category-row.reverse .category-hero,
    .category-row.reverse .category-list-wrap {
        order: initial;
    }

    .category-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .category-hero {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .stat-grid,
    .comm-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-row {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .member-header {
        flex-wrap: wrap;
    }

    .member-header .rank-tag {
        margin-left: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .mobile-menu-btn {
        display: block;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-main,
    .bento-small,
    .bento-wide {
        grid-column: 1 / 2;
        grid-row: auto;
        min-height: 220px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .features-grid,
    .product-grid,
    .pricing-grid,
    .reward-grid,
    .teaser-grid,
    .why-grid,
    .stat-grid,
    .comm-grid {
        grid-template-columns: 1fr;
    }

    .referral-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .simple-list-row {
        flex-wrap: wrap;
    }

    .pricing-card.featured {
        transform: none;
    }

    .slide-text {
        max-width: none;
        text-align: center;
        margin: 0 auto;
    }

    .slide-inner p {
        margin-left: auto;
        margin-right: auto;
    }

    /* Full-width ambient photo wash instead of a side panel, with a
       stronger overlay so the centered text stays readable on top. */
    .slide-visual {
        width: 100%;
        left: 0;
        -webkit-mask-image: radial-gradient(circle at 80% 15%, #000, transparent 60%);
        mask-image: radial-gradient(circle at 80% 15%, #000, transparent 60%);
    }

    .slide-visual::after {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.55));
    }

    .carousel-arrow {
        display: none;
    }

    .carousel-slide {
        padding: 40px 0 70px;
    }

    .whatsapp-float {
        display: none;
    }

    .sticky-cta {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 90;
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: 10px 12px;
        padding-bottom: max(10px, env(safe-area-inset-bottom));
        gap: 10px;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    }

    .sticky-cta-wa {
        flex: 0 0 46px;
        height: 46px;
        border-radius: 10px;
        background: #25d366;
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
    }

    .sticky-cta-btn {
        flex: 1;
        height: 46px;
        border-radius: 10px;
        background: var(--primary);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.95rem;
    }

    body.has-sticky-cta {
        padding-bottom: 66px;
    }
}

/* ============================================
   NEO-BRUTALIST ENERGY — Web2 signature layer
   Hard offset shadows, diagonal cuts, marquee,
   giant stat type, horizontal-scroll testimonials.
   Blue family only (primary/secondary/gold tokens).
   ============================================ */

/* Hard offset shadow on every content card sitewide */
.product-list-item,
.reward-card,
.reward-card-v2,
.testimonial-card,
.doc-section,
.comm-card,
.stat-card,
.simple-list,
.calc-box,
.teaser-card,
.package-price-box,
.bento-card,
.member-header,
.package-showcase {
    box-shadow: 7px 7px 0 var(--secondary) !important;
}

.product-list-item:hover,
.reward-card-v2:hover,
.testimonial-card:hover,
.comm-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0 var(--secondary) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Diagonal-cut dark section (replaces plain rectangle biz-section) */
.biz-section {
    clip-path: polygon(0 36px, 100% 0, 100% calc(100% - 36px), 0 100%);
    padding: 110px 0 118px;
}

/* Ticker marquee — replaces the icon trust-float card on landing */
.ticker {
    background: var(--secondary);
    border-top: 2px solid var(--primary-dark);
    border-bottom: 2px solid var(--primary-dark);
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: eszam-ticker 22s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.ticker-item i {
    color: var(--gold);
    font-size: 1rem;
}

@keyframes eszam-ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Giant stat block row */
.stat-block-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 2px solid var(--secondary);
    border-radius: 20px;
    overflow: hidden;
    margin: -50px auto 50px;
    position: relative;
    z-index: 6;
    background: var(--white);
    max-width: 1000px;
    box-shadow: 8px 8px 0 var(--secondary);
}

.stat-block {
    text-align: center;
    padding: 30px 16px;
    border-right: 2px solid var(--secondary);
}

.stat-block:last-child {
    border-right: none;
}

.stat-block .num {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-block .label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
}

/* Split-band — full-bleed photo band with an overlapping bold copy card
   (Web2's replacement for the zigzag-row pattern, landing page only) */
.split-band {
    position: relative;
    margin-bottom: 90px;
}

.split-band-media {
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    border: 2px solid var(--secondary);
}

.split-band-copy {
    background: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 20px;
    box-shadow: 8px 8px 0 var(--secondary);
    padding: 34px;
    max-width: 420px;
    position: relative;
    margin-top: -100px;
    margin-left: 40px;
    z-index: 2;
}

.split-band.reverse .split-band-copy {
    margin-left: auto;
    margin-right: 40px;
}

.split-band-copy .tag {
    display: inline-block;
    background: var(--gold);
    color: var(--secondary);
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.split-band-copy h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.split-band-copy p {
    color: var(--gray);
    font-size: 0.92rem;
    margin-bottom: 16px;
}

@media (max-width: 720px) {
    .split-band-media {
        height: 280px;
    }
    .split-band-copy {
        margin: -60px 16px 0;
        max-width: none;
        padding: 24px;
    }
    .split-band.reverse .split-band-copy {
        margin: -60px 16px 0;
    }
    .stat-block-row {
        grid-template-columns: 1fr;
        margin: -30px 16px 40px;
    }
    .stat-block {
        border-right: none;
        border-bottom: 2px solid var(--secondary);
    }
    .stat-block:last-child {
        border-bottom: none;
    }
}

/* Testimonials — horizontal snap-scroll instead of a static grid */
.features-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 6px 20px;
    margin: 0 -6px;
    scrollbar-width: thin;
}

.features-grid .testimonial-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
}

@media (max-width: 640px) {
    .features-grid .testimonial-card {
        flex-basis: 84%;
    }
}

/* ============================================
   NEO-BRUTALIST ENERGY — inner-page components
   (About / Products / Marketing Plan / Rewards /
   Kode Etik / Member Area). Blue family only.
   ============================================ */

/* Bold diagonal page-header strip used on every inner page */
.page-hero-strip {
    background: var(--secondary);
    padding: 56px 0 100px;
    margin-bottom: -60px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
    position: relative;
}

.page-hero-strip .container {
    text-align: center;
    max-width: 720px;
}

.page-hero-strip .eyebrow {
    color: rgba(255, 255, 255, 0.75);
    justify-content: center;
}

.page-hero-strip .eyebrow::before {
    display: none;
}

.page-hero-strip h1 {
    color: var(--white);
    font-size: 2.3rem;
    margin-bottom: 12px;
}

.page-hero-strip p {
    color: rgba(255, 255, 255, 0.75);
}

.page-hero-card {
    position: relative;
    z-index: 2;
    background: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 18px;
    box-shadow: 7px 7px 0 var(--secondary);
    padding: 24px 30px;
    max-width: 560px;
    margin: 0 auto 70px;
    text-align: center;
}

@media (max-width: 640px) {
    .page-hero-strip {
        padding: 40px 0 80px;
    }
    .page-hero-strip h1 {
        font-size: 1.7rem;
    }
}

/* Numbered manifesto row (About page — replaces zigzag-row there) */
.numbered-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 24px;
    padding: 34px 0;
    border-top: 2px solid var(--secondary);
}

.numbered-row:last-of-type {
    border-bottom: 2px solid var(--secondary);
}

.numbered-row .num-badge {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 2.6rem;
    color: var(--gray);
    line-height: 1;
}

.numbered-row .num-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 30px;
    align-items: center;
}

.numbered-row .num-media {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    border: 2px solid var(--secondary);
}

.numbered-row h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.numbered-row p {
    color: var(--gray);
    font-size: 0.92rem;
}

@media (max-width: 780px) {
    .numbered-row {
        grid-template-columns: 50px 1fr;
    }
    .numbered-row .num-badge {
        font-size: 1.8rem;
    }
    .numbered-row .num-content {
        grid-template-columns: 1fr;
    }
}

/* Spec-sheet product cards (Products page — replaces category-row) */
.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 50px;
}

.spec-card {
    border: 2px solid var(--secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 7px 7px 0 var(--secondary);
    background: var(--white);
}

.spec-card-media {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 2px solid var(--secondary);
}

.spec-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--secondary);
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 6px;
}

.spec-card-body {
    padding: 26px;
}

.spec-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.spec-card-body .pkg {
    margin-bottom: 12px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
}

.spec-row span:first-child {
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.72rem;
    font-weight: 700;
}

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

/* Commission bar-list (Marketing Plan — replaces comm-grid) */
.bar-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
}

.bar-item {
    border: 2px solid var(--secondary);
    border-radius: 14px;
    padding: 16px 20px;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.bar-item-fill {
    position: absolute;
    inset: 0;
    background: var(--light);
    z-index: 0;
}

.bar-item-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.bar-item-content h4 {
    font-size: 0.98rem;
    margin-bottom: 3px;
}

.bar-item-content p {
    color: var(--gray);
    font-size: 0.8rem;
    max-width: 480px;
}

.bar-item-pct {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* Vertical step-list (Marketing Plan distribution flow — replaces flow-row) */
.step-list {
    max-width: 620px;
    margin: 0 auto;
}

.step-list-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
}

.step-list-item .step-line {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-list-item .step-dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-list-item .step-rule {
    width: 2px;
    flex: 1;
    background: var(--border);
    margin: 6px 0;
}

.step-list-item:last-child .step-rule {
    display: none;
}

.step-list-item .step-body {
    padding-bottom: 34px;
}

.step-list-item .step-body h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.step-list-item .step-body span {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Ranked reward list (Rewards page — replaces reward-grid) */
.rank-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rank-item {
    display: grid;
    grid-template-columns: 56px 90px 1fr auto;
    align-items: center;
    gap: 18px;
    border: 2px solid var(--secondary);
    border-radius: 16px;
    padding: 14px 18px;
    background: var(--white);
    box-shadow: 5px 5px 0 var(--secondary);
}

.rank-item .rank-num {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--gray);
    text-align: center;
}

.rank-item .rank-thumb {
    width: 90px;
    height: 66px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--secondary);
}

.rank-item h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.rank-item p {
    color: var(--gray);
    font-size: 0.78rem;
}

.rank-item .rank-value {
    text-align: right;
    flex-shrink: 0;
}

.rank-item .rank-value .points {
    font-weight: 800;
    color: var(--primary);
    font-size: 0.95rem;
}

.rank-item .rank-value .rp {
    color: var(--gray);
    font-size: 0.75rem;
}

@media (max-width: 640px) {
    .rank-item {
        grid-template-columns: 36px 64px 1fr;
    }
    .rank-item .rank-thumb {
        width: 64px;
        height: 48px;
    }
    .rank-item .rank-value {
        grid-column: 2 / 4;
        text-align: left;
        display: flex;
        gap: 10px;
        align-items: baseline;
    }
}
