:root {
    --primary: #6B9BC3;
    --primary-dark: #557FA0;
    --secondary: #3E5C73;
    --gold: #8FB5AE;
    --gold-dark: #5F8F87;
    --dark: #3E5C73;
    --light: #F5F8FA;
    --gray: #7A8A96;
    --border: #DCE6EB;
    --white: #ffffff;
}

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

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

h1, h2, h3, h4, .font-serif {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    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: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #5B7488;
    transition: color 0.3s;
}

.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 34px;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 20px -8px rgba(107, 155, 195, 0.55);
    transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.btn:hover {
    background: var(--gold);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -8px rgba(143, 181, 174, 0.5);
}

.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: 28px;
}

/* 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: 28px;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid var(--border);
    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-dark);
    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: 1px solid var(--border);
    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-dark);
    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: 32px;
    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-dark);
    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: 28px;
    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: 28px;
    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: 28px;
    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-dark);
}

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

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

.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: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px;
    text-align: center;
}

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

.reward-points {
    color: var(--primary-dark);
    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(--white);
    color: var(--secondary);
    text-align: center;
    padding: 90px 0 100px;
    border-top: 1px solid var(--border);
}

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

.cta p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--gray);
}

/* 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-dark);
}

.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: 28px;
    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: 30px;
    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: 1px solid var(--border);
    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: 1px solid var(--border);
    border-radius: 28px;
    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: 28px;
}

.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-dark);
    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-dark);
    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: 28px;
    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-dark);
    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: 1px solid var(--border);
    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: 1px solid var(--border);
    border-radius: 30px;
    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: 26px;
    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-dark);
    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: 32px;
    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: 32px;
    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: 1px solid var(--border);
    border-radius: 30px;
    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: 'Quicksand', 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: 32px;
    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: 30px;
    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: 32px;
    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: 32px;
    border: 1px solid var(--border);
    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: 26px;
    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: 'Quicksand', 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: 1px solid var(--border);
    border-radius: 32px;
    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: 'Quicksand', 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: 32px;
    padding: 28px;
    text-align: center;
    margin-top: 30px;
}

.calc-results .figure {
    font-family: 'Quicksand', 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: 28px;
    padding: 34px 28px;
    text-align: center;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 30px;
    background: var(--secondary);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Quicksand', 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: 1px solid var(--border);
    border-radius: 32px;
    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: 32px;
    padding: 18px 22px;
    text-align: center;
}

.reward-hero-points .num {
    font-family: 'Quicksand', 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: 1px solid var(--border);
    border-radius: 28px;
    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: 28px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.2);
    font-family: 'Quicksand', 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: 30px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
}

.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: 32px;
    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: 1px solid var(--border);
    border-radius: 26px;
    padding: 24px;
}

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

.stat-card .stat-value {
    font-family: 'Quicksand', 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: 26px;
    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: 'Quicksand', 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: 1px solid var(--border);
    border-radius: 26px;
    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: 1px solid var(--border);
    border-radius: 26px;
    padding: 24px 20px;
    text-align: center;
}

.comm-card .icon-box {
    width: 46px;
    height: 46px;
    border-radius: 28px;
    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: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-dark);
    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: 26px;
    padding: 26px;
    text-align: center;
    margin-bottom: 50px;
}

.payout-total .figure {
    font-family: 'Quicksand', 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-dark);
    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);
}

/* Calm hero (Web3 signature layout — one soft panel, no carousel/bento) */
.calm-hero {
    padding: 60px 0 40px;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.calm-blob {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 181, 174, 0.25), transparent 70%);
    top: -180px;
    right: -140px;
    pointer-events: none;
}

.calm-hero-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.calm-eyebrow {
    display: inline-block;
    background: rgba(107, 155, 195, 0.12);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 7px 18px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.calm-hero-inner h1 {
    font-size: 2.3rem;
    margin-bottom: 14px;
    line-height: 1.25;
}

.calm-hero-inner p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 26px;
}

.calm-hero-panel {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    aspect-ratio: 16 / 8;
    border-radius: 40px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 60px -30px rgba(62, 92, 115, 0.35);
}

.calm-hero-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(62, 92, 115, 0.05), rgba(62, 92, 115, 0.35));
}

.calm-float-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.calm-float-card i {
    font-size: 1.4rem;
    color: var(--gold-dark);
}

.calm-float-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}

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

    .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;
    }

    .calm-hero-panel {
        aspect-ratio: 4 / 5;
        border-radius: 28px;
    }

    .calm-hero-inner h1 {
        font-size: 1.8rem;
    }

    .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-dark);
        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;
    }
}

/* ============================================
   AIRY EDITORIAL — Web3 signature layer
   No dark sections, no card grids — generous
   whitespace, full-bleed photo bands, a quiet
   quote list. Blue family only.
   ============================================ */

/* Framed panel — replaces the dark biz-section with a soft, light block */
.framed-panel {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 70px 60px;
    margin: 90px auto;
    max-width: 1160px;
    position: relative;
    overflow: hidden;
}

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

.framed-panel .biz-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    border-top: 1px solid var(--border);
    padding-top: 28px;
    margin: 26px 0;
}

.framed-panel .biz-stats h4 {
    color: var(--secondary);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.framed-panel .biz-stats p {
    font-size: 0.75rem;
    color: var(--gray);
}

@media (max-width: 900px) {
    .framed-panel {
        padding: 44px 26px;
        border-radius: 28px;
        margin: 60px 16px;
    }
    .framed-panel-grid {
        grid-template-columns: 1fr;
    }
}

/* Story block — full-bleed photo band, caption text centered below
   (Web3's replacement for the zigzag-row pattern, landing page only) */
.story-block {
    max-width: 860px;
    margin: 0 auto 100px;
    text-align: center;
}

.story-block-media {
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    margin-bottom: 32px;
}

.story-block .calm-eyebrow {
    margin-bottom: 16px;
}

.story-block h2 {
    font-size: 1.7rem;
    margin-bottom: 14px;
}

.story-block p {
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto 20px;
}

@media (max-width: 640px) {
    .story-block-media {
        aspect-ratio: 4 / 3;
        border-radius: 24px;
    }
}

/* Quote stack — testimonials as a quiet vertical list, no card boxes */
.quote-stack {
    max-width: 720px;
    margin: 0 auto;
}

.quote-stack-item {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 26px;
    align-items: flex-start;
}

.quote-stack-item:last-child {
    border-bottom: 1px solid var(--border);
}

.quote-stack-item .avatar-circle {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.quote-stack-item blockquote {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.quote-stack-item cite {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--gray);
}

.quote-stack-item cite strong {
    color: var(--primary-dark);
    font-weight: 600;
}

@media (max-width: 560px) {
    .quote-stack-item {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* ============================================
   AIRY EDITORIAL — inner-page components
   (About / Products / Marketing Plan / Rewards /
   Kode Etik / Member Area). No card grids, no
   hard borders — quiet dividers and whitespace.
   ============================================ */

/* Calm page header — big centered title, soft blob, no diagonal cuts */
.quiet-hero {
    padding: 70px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quiet-hero .calm-blob {
    width: 360px;
    height: 360px;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
}

.quiet-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
}

.quiet-hero-inner h1 {
    font-size: 2.1rem;
    margin: 14px 0 12px;
}

.quiet-hero-inner p {
    color: var(--gray);
}

/* Product showcase (Products page — replaces category-row) */
.product-showcase {
    max-width: 780px;
    margin: 0 auto 90px;
}

.product-showcase-media {
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    position: relative;
    margin-bottom: 26px;
}

.product-showcase-media .calm-float-card {
    bottom: 20px;
    left: 20px;
}

.product-showcase h2 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    text-align: center;
}

.product-showcase .pkg {
    text-align: center;
    margin-bottom: 22px;
}

.product-showcase-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    margin-bottom: 22px;
}

.product-showcase-info h5 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.product-showcase-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.product-showcase-info .ingredients {
    justify-content: flex-start;
}

@media (max-width: 640px) {
    .product-showcase-info {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* Commission list — plain numbered rows (Marketing Plan — replaces comm-grid) */
.comm-list {
    max-width: 680px;
    margin: 0 auto 40px;
}

.comm-list-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 24px;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--border);
}

.comm-list-item:last-child {
    border-bottom: 1px solid var(--border);
}

.comm-list-item .pct {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--primary-dark);
}

.comm-list-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.comm-list-item p {
    color: var(--gray);
    font-size: 0.85rem;
}

@media (max-width: 560px) {
    .comm-list-item {
        grid-template-columns: 60px 1fr;
        gap: 14px;
    }
}

/* Breadcrumb flow — thin text-only distribution chain (replaces flow-row) */
.breadcrumb-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumb-flow .crumb {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
    padding: 6px 4px;
}

.breadcrumb-flow .crumb-sep {
    color: var(--primary-dark);
    font-size: 1rem;
}

/* Reward list — quiet rows, no card boxes (Rewards page — replaces reward-grid) */
.reward-list {
    max-width: 760px;
    margin: 0 auto;
}

.reward-list-item {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid var(--border);
}

.reward-list-item:last-child {
    border-bottom: 1px solid var(--border);
}

.reward-list-item .thumb {
    width: 96px;
    height: 72px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
}

.reward-list-item h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.reward-list-item p {
    color: var(--gray);
    font-size: 0.82rem;
}

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

.reward-list-item .value .points {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.92rem;
}

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

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

/* Quiet stat row (Member Area — replaces stat-grid cards) */
.quiet-stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 50px;
}

.quiet-stat-row .qstat {
    text-align: center;
    padding: 26px 12px;
    border-left: 1px solid var(--border);
}

.quiet-stat-row .qstat:first-child {
    border-left: none;
}

.quiet-stat-row .qstat .num {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.quiet-stat-row .qstat .label {
    font-size: 0.72rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 640px) {
    .quiet-stat-row {
        grid-template-columns: 1fr 1fr;
    }
    .quiet-stat-row .qstat:nth-child(2) {
        border-left: 1px solid var(--border);
    }
    .quiet-stat-row .qstat:nth-child(3) {
        border-left: none;
        border-top: 1px solid var(--border);
    }
    .quiet-stat-row .qstat:nth-child(4) {
        border-top: 1px solid var(--border);
    }
}
