/* KJ WELLNESS — SITE.CSS v5 (Mobile Responsive) */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --dg: #04160d;
    --fg: #0b2e1c;
    --mg: #124a2a;
    --ag: #1f7a45;
    --lg: #e8f5ed;
    --gold: #f4c430;
    --gold-l: #ffe08a;
    --gold-d: #c99a1e;
    --text: #1a1a1a;
    --text2: #555;
    --white: #fff;
    --subtle: #f5faf7;
    --r: 14px;
    --sh: 0 4px 24px rgba(11,46,28,.10);
    --sh-lg: 0 12px 48px rgba(11,46,28,.18);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%
}

body {
    font-family: 'Inter','Segoe UI',Arial,sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.65
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

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

ul {
    list-style: none
}

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

.bg-white {
    background: #fff
}

.bg-subtle {
    background: var(--subtle)
}

.bg-dark {
    background: var(--fg)
}

.section-pad {
    padding: 96px 0
}

.text-center {
    text-align: center
}

/* ── TYPOGRAPHY ──────────────────────────────────────── */
.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ag);
    background: rgba(31,122,69,.10);
    padding: 4px 14px;
    border-radius: 0;
    margin-bottom: 14px
}

.section-h2 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(22px,4vw,42px);
    font-weight: 700;
    color: var(--fg);
    line-height: 1.2;
    margin-bottom: 14px
}

    .section-h2 span {
        color: var(--gold-d)
    }

.section-desc {
    color: var(--text2);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto
}

.section-head {
    text-align: center;
    margin-bottom: 56px
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-gold-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg,var(--gold-d),var(--gold));
    color: var(--dg);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: 0;
    transition: .2s;
    box-shadow: 0 4px 18px rgba(199,154,30,.35)
}

    .btn-gold-lg:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(199,154,30,.45)
    }

.btn-outline-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 2px solid rgba(255,255,255,.55);
    font-weight: 600;
    font-size: 15px;
    padding: 11px 28px;
    border-radius: 0;
    transition: .2s
}

    .btn-outline-lg:hover {
        background: rgba(255,255,255,.22);
        border-color: #fff
    }

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg,var(--fg),var(--mg));
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 0;
    border: 1px solid rgba(244,196,48,.25);
    transition: .2s
}

    .btn-primary-lg:hover {
        background: linear-gradient(135deg,var(--mg),var(--ag));
        transform: translateY(-2px)
    }

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.4);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 0;
    font-size: 15px;
    transition: .2s
}

    .btn-outline-dark:hover {
        border-color: var(--gold);
        color: var(--gold)
    }

/* ── TOP BAR ─────────────────────────────────────────── */
.top-bar {
    background: var(--dg);
    color: var(--gold-l);
    font-size: 12.5px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(244,196,48,.2)
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px
}

.tb-left {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: .75;
    font-size: 12px
}

.tb-right {
    display: flex;
    gap: 20px;
    align-items: center
}

    .tb-right a {
        color: var(--gold-l);
        display: flex;
        align-items: center;
        gap: 5px;
        transition: color .2s;
        font-size: 12px
    }

        .tb-right a:hover {
            color: var(--gold)
        }

.tb-icon {
    width: 13px;
    height: 13px;
    flex-shrink: 0
}

/* ── HEADER ──────────────────────────────────────────── */
.main-header {
    background: linear-gradient(90deg,var(--dg) 0%,var(--fg) 5%);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow .3s;
    box-shadow: 0 2px 16px rgba(0,0,0,.25)
}

    .main-header.scrolled {
        box-shadow: 0 4px 28px rgba(0,0,0,.4)
    }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    gap: 20px
}

/* ── LOGO ────────────────────────────────────────────── */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0
}

.logo-img {
    height: 130px;
    width: 130px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
    box-shadow: 0 0 0 2px var(--gold-d);
    transition: transform .3s
}

.logo-link:hover .logo-img {
    transform: scale(1.06) rotate(-3deg)
}

.logo-txt {
    display: flex;
    flex-direction: column
}

.logo-brand {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    line-height: 1
}

.logo-sub {
    font-size: 10px;
    color: var(--gold-l);
    letter-spacing: .5px;
    margin-top: 4px;
    opacity: .85
}

/* ── NAV ─────────────────────────────────────────────── */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center
}

    .main-nav > ul {
        display: flex;
        align-items: center;
        gap: 2px
    }

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 9px 13px;
    color: rgba(255,255,255,.88);
    font-weight: 500;
    font-size: 14px;
    border-radius: 0;
    transition: color .2s,background .2s;
    white-space: nowrap;
    position: relative
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 13px;
        right: 13px;
        height: 2px;
        background: var(--gold);
        border-radius: 0;
        transform: scaleX(0);
        transition: transform .2s
    }

    .nav-link:hover {
        color: var(--gold);
        background: rgba(255,255,255,.06)
    }

        .nav-link:hover::after {
            transform: scaleX(1)
        }

    .nav-link.active {
        color: var(--gold);
        background: rgba(255,255,255,.08)
    }

        .nav-link.active::after {
            transform: scaleX(1)
        }

.has-dropdown.active > .nav-link {
    color: var(--gold);
    background: rgba(255,255,255,.08)
}

    .has-dropdown.active > .nav-link::after {
        transform: scaleX(1)
    }

.nav-chevron {
    width: 14px;
    height: 14px;
    opacity: .7;
    transition: transform .2s
}

.has-dropdown:hover .nav-chevron {
    transform: rotate(180deg)
}

/* ── MEGA DROPDOWN ───────────────────────────────────── */
.has-dropdown {
    position: relative
}

.dropdown-mega {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: -10px;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 16px 48px rgba(0,0,0,.18);
    min-width: 260px;
    z-index: 999;
    border-top: 3px solid var(--gold);
    padding: 8px 0;
    animation: ddFade .18s ease
}

@keyframes ddFade {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.has-dropdown:hover .dropdown-mega {
    display: block
}

.dropdown-mega a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    color: var(--fg);
    transition: background .15s
}

    .dropdown-mega a:hover {
        background: var(--subtle)
    }

.dd-icon-wrap {
    width: 38px;
    height: 38px;
    background: var(--lg);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s
}

.dropdown-mega a:hover .dd-icon-wrap {
    background: linear-gradient(135deg,var(--gold-d),var(--gold))
}

.dd-lucide {
    width: 18px;
    height: 18px;
    color: var(--ag)
}

.dropdown-mega a:hover .dd-lucide {
    color: var(--dg)
}

.dd-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--fg)
}

.dd-text small {
    display: block;
    font-size: 11px;
    color: var(--text2);
    margin-top: 1px
}

/* ── HAMBURGER ───────────────────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0
}

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--gold);
        border-radius: 0;
        transition: .35s cubic-bezier(.16,1,.3,1)
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg)
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg)
    }

/* ── JOIN BTN ────────────────────────────────────────── */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px
}

.btn-join {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg,var(--gold-d),var(--gold));
    color: var(--dg);
    padding: 10px 22px;
    border-radius: 0;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: .2s;
    box-shadow: 0 3px 12px rgba(199,154,30,.4)
}

    .btn-join:hover {
        transform: scale(1.04);
        box-shadow: 0 6px 20px rgba(199,154,30,.5)
    }

/* ── PAGE BANNER ─────────────────────────────────────── */
.page-banner {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 470px;
    display: flex;
    align-items: center
}

.pb-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1
}

.pb-overlay {
    display: none
}

.pb-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 52px;
    background: #fff;
    clip-path: ellipse(52% 100% at 50% 100%)
}

.pb-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 72px 24px 90px;
    width: 100%
}

    .pb-content h1 {
        font-family: 'Playfair Display',serif;
        font-size: clamp(24px,4vw,52px);
        color: #fff;
        margin-bottom: 12px;
        text-shadow: 0 2px 14px rgba(0,0,0,.55)
    }

        .pb-content h1 span {
            color: var(--gold)
        }

    .pb-content p {
        color: #fff;
        font-size: 16px;
        text-shadow: 0 2px 10px rgba(0,0,0,.55)
    }

/* ── HERO ────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dg)
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    animation: heroPan 18s ease-in-out infinite alternate
}

@keyframes heroPan {
    from {
        transform: scale(1.05) translateX(0)
    }

    to {
        transform: scale(1.12) translateX(-2%)
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,rgba(4,22,13,.96) 0%,rgba(11,46,28,.82) 50%,rgba(18,74,42,.60) 100%)
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .15;
    pointer-events: none;
    animation: pFloat 10s ease-in-out infinite alternate
}

.p1 {
    width: 500px;
    height: 500px;
    background: var(--gold);
    top: -100px;
    right: 5%;
    animation-duration: 12s
}

.p2 {
    width: 320px;
    height: 320px;
    background: var(--ag);
    bottom: -60px;
    left: 3%;
    animation-duration: 9s;
    animation-delay: -4s
}

.p3 {
    width: 200px;
    height: 200px;
    background: var(--gold-l);
    top: 50%;
    left: 40%;
    animation-duration: 14s;
    animation-delay: -2s
}

@keyframes pFloat {
    from {
        transform: translate(0,0) scale(1)
    }

    to {
        transform: translate(24px,32px) scale(1.15)
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 120px 0 80px;
    width: 100%
}

.hero-content {
    flex: 1.1
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244,196,48,.15);
    border: 1px solid rgba(244,196,48,.35);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 0;
    margin-bottom: 22px
}

.hero-h1 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(28px,5.5vw,66px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 22px
}

.hero-highlight {
    background: linear-gradient(90deg,var(--gold-l),var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-p {
    font-size: 17px;
    color: rgba(255,255,255,.78);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.75
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.trust-item {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.75);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 0
}

/* Hero Float Card */
.hero-card-wrap {
    flex-shrink: 0
}

.hero-float-card {
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(244,196,48,.25);
    border-radius: 0;
    padding: 34px 28px;
    width: 270px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    animation: cardFloat 5s ease-in-out infinite alternate
}

@keyframes cardFloat {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-14px)
    }
}

.hfc-logo-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 6px;
    margin: 0 auto 10px;
    box-shadow: 0 0 0 2px var(--gold-d)
}

.hfc-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-l);
    letter-spacing: 2px;
    margin-bottom: 4px
}

.hfc-sub {
    font-size: 12px;
    color: rgba(255,255,255,.6);
    margin-bottom: 16px
}

.hfc-divider {
    height: 1px;
    background: rgba(244,196,48,.25);
    margin: 14px 0
}

.hfc-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px
}

.hfc-num {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--gold)
}

.hfc-label {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,.5);
    margin-top: 2px
}

.hfc-website {
    font-size: 11px;
    color: var(--gold-l);
    letter-spacing: 1px
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.4);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2.5s ease-in-out infinite
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom,var(--gold),transparent)
}

@keyframes scrollBounce {
    0%,100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(8px)
    }
}

/* ── STATS BAR ───────────────────────────────────────── */
.stats-bar {
    background: linear-gradient(135deg,var(--gold-d),var(--gold));
    padding: 32px 0
}

.stats-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0
}

.stat-item {
    text-align: center;
    padding: 12px 28px
}

.stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--dg);
    font-family: 'Playfair Display',serif
}

.stat-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(4,22,13,.7);
    margin-top: 2px;
    letter-spacing: .5px
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(4,22,13,.2)
}

/* ── ALT LAYOUT ──────────────────────────────────────── */
.alt-layout {
    display: flex;
    align-items: center;
    gap: 72px
}

.alt-rev {
    flex-direction: row-reverse
}

.alt-img {
    flex: 1
}

.alt-text {
    flex: 1
}

    .alt-text p {
        color: var(--text2);
        font-size: 16px;
        margin-bottom: 16px
    }

.img-frame {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--sh-lg)
}

    .img-frame img {
        width: 100%;
        transition: transform .5s ease
    }

    .img-frame:hover img {
        transform: scale(1.04)
    }

    .img-frame.img-frame-round {
        border-radius: 28px;
        padding: 22px;
        background: radial-gradient(circle at 50% 45%,var(--lg) 0%,#fdfefd 68%)
    }

        .img-frame.img-frame-round img {
            border-radius: 18px;
            transform: scale(1.06)
        }

        .img-frame.img-frame-round:hover img {
            transform: scale(1.13)
        }

.product-row .alt-img {
    flex: 1.15
}

.product-row .alt-text {
    flex: .95
}

.img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg,var(--gold-d),var(--gold));
    border-radius: 0;
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.2)
}

.ib-num {
    display: block;
    font-size: 20px;
    font-weight: 900;
    color: var(--dg)
}

.ib-txt {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--dg);
    opacity: .75
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 22px 0 30px
}

.fi {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--fg)
}

    .fi svg {
        width: 20px;
        height: 20px;
        color: var(--ag);
        flex-shrink: 0
    }

/* ── WHY CARDS ───────────────────────────────────────── */
.cards-4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px
}

.card-why {
    background: #fff;
    border-radius: 0;
    padding: 30px 22px;
    box-shadow: var(--sh);
    border-top: 4px solid var(--gold);
    transition: .35s cubic-bezier(.16,1,.3,1)
}

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

.cw-icon {
    width: 54px;
    height: 54px;
    background: var(--subtle);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: .35s cubic-bezier(.16,1,.3,1)
}

    .cw-icon svg {
        width: 26px;
        height: 26px;
        color: var(--ag)
    }

.card-why:hover .cw-icon {
    background: linear-gradient(135deg,var(--gold-d),var(--gold))
}

    .card-why:hover .cw-icon svg {
        color: var(--dg)
    }

.card-why h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 10px
}

.card-why p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.6
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 14px;
    color: var(--ag);
    font-weight: 600;
    font-size: 14px;
    transition: .2s
}

    .card-link:hover {
        color: var(--gold-d)
    }

    .card-link svg {
        width: 14px;
        height: 14px
    }

/* ── PRODUCT ─────────────────────────────────────────── */
.product-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(31,122,69,.1);
    border: 1px solid rgba(31,122,69,.25);
    color: var(--ag);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 0;
    margin-bottom: 14px
}

    .product-badge-inline svg {
        width: 13px;
        height: 13px
    }

.product-title-lg {
    font-family: 'Playfair Display',serif;
    font-size: 30px;
    color: var(--fg);
    margin-bottom: 8px
}

.product-subtitle-lg {
    color: var(--text2);
    font-size: 14px;
    margin-bottom: 18px
}

.price-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    flex-wrap: wrap
}

.price-mrp {
    font-size: 16px;
    color: #aaa;
    text-decoration: line-through
}

.price-dp {
    font-size: 26px;
    font-weight: 800;
    color: var(--fg)
}

.price-save {
    background: #e7f9ee;
    color: var(--ag);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 0
}

.product-bullets {
    margin-bottom: 26px
}

    .product-bullets li {
        padding: 9px 0;
        border-bottom: 1px solid #eee;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 10px
    }

        .product-bullets li svg {
            width: 16px;
            height: 16px;
            color: var(--ag);
            flex-shrink: 0
        }

        .product-bullets li:last-child {
            border: none
        }

/* ── INCOME SECTION ──────────────────────────────────── */
.income-section {
    background: var(--fg);
    position: relative;
    overflow: hidden;
    padding: 96px 0
}

.income-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle,rgba(244,196,48,.06) 1px,transparent 1px);
    background-size: 32px 32px
}

.income-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    position: relative;
    z-index: 1
}

.income-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(244,196,48,.2);
    border-radius: 0;
    padding: 24px 18px;
    text-align: center;
    transition: .35s cubic-bezier(.16,1,.3,1)
}

    .income-card:hover {
        background: rgba(255,255,255,.10);
        transform: translateY(-4px)
    }

.ic-hl {
    background: rgba(244,196,48,.12) !important;
    border-color: var(--gold) !important
}

.ic-level {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase
}

.ic-amt {
    font-size: 26px;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Playfair Display',serif
}

    .ic-amt span {
        font-size: 12px;
        color: rgba(255,255,255,.45);
        font-weight: 400;
        font-family: 'Inter',sans-serif
    }

/* ── MILESTONE ───────────────────────────────────────── */
.milestone-track {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px
}

.ms-item {
    background: #fff;
    border-radius: 0;
    padding: 18px 18px;
    text-align: center;
    box-shadow: var(--sh);
    min-width: 98px;
    border-bottom: 3px solid var(--ag);
    transition: .35s cubic-bezier(.16,1,.3,1)
}

    .ms-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--sh-lg)
    }

.ms-gold {
    border-bottom-color: var(--gold-d);
    background: linear-gradient(135deg,#fffde7,#fff9c4)
}

.ms-amt {
    font-size: 15px;
    font-weight: 800;
    color: var(--fg)
}

.ms-label {
    font-size: 11px;
    color: var(--text2);
    margin-top: 3px
}

.ms-arrow {
    font-size: 16px;
    color: var(--ag);
    flex-shrink: 0
}

/* ── COMPLIANCE ──────────────────────────────────────── */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px
}

.comp-card {
    background: #fff;
    border-radius: 0;
    padding: 28px 24px;
    box-shadow: var(--sh);
    border-left: 4px solid var(--ag);
    transition: .35s cubic-bezier(.16,1,.3,1)
}

    .comp-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--sh-lg)
    }

.comp-icon {
    width: 48px;
    height: 48px;
    background: var(--subtle);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px
}

    .comp-icon svg {
        width: 24px;
        height: 24px;
        color: var(--ag)
    }

.comp-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 8px
}

.comp-card p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.6
}

/* ── TESTIMONIALS ────────────────────────────────────── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px
}

.testi-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 0;
    padding: 28px 24px;
    transition: .35s cubic-bezier(.16,1,.3,1)
}

    .testi-card:hover {
        background: rgba(255,255,255,.11);
        transform: translateY(-4px)
    }

.testi-stars {
    color: var(--gold);
    font-size: 15px;
    margin-bottom: 14px
}

.testi-card p {
    color: rgba(255,255,255,.78);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--gold-d),var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--dg);
    font-size: 18px;
    flex-shrink: 0
}

.testi-author strong {
    display: block;
    color: #fff;
    font-size: 14px
}

.testi-author span {
    color: rgba(255,255,255,.5);
    font-size: 12px
}

/* ── VISION ──────────────────────────────────────────── */
.vm-box {
    background: var(--subtle);
    border-radius: 0;
    padding: 20px 22px;
    border-left: 4px solid var(--gold-d);
    margin-bottom: 14px
}

    .vm-box h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--fg);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px
    }

        .vm-box h4 svg {
            width: 18px;
            height: 18px;
            color: var(--ag)
        }

    .vm-box p {
        font-size: 14px;
        color: var(--text2);
        line-height: 1.7
    }

.vision-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.vc-card {
    background: #fff;
    border-radius: 0;
    padding: 26px 20px;
    box-shadow: var(--sh);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--fg);
    font-size: 15px;
    transition: .35s cubic-bezier(.16,1,.3,1)
}

    .vc-card:hover {
        transform: translateY(-5px) scale(1.03);
        box-shadow: var(--sh-lg)
    }

.vc-icon {
    width: 52px;
    height: 52px;
    border-radius: 0;
    background: var(--subtle);
    display: flex;
    align-items: center;
    justify-content: center
}

    .vc-icon svg {
        width: 26px;
        height: 26px;
        color: var(--ag)
    }

.vc1 {
    border-top: 3px solid var(--ag)
}

.vc2 {
    border-top: 3px solid var(--gold-d)
}

.vc3 {
    border-top: 3px solid var(--ag)
}

.vc4 {
    border-top: 3px solid var(--gold-d)
}

/* ── CTA ─────────────────────────────────────────────── */
.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg,var(--dg) 0%,var(--fg) 55%,rgba(199,154,30,.25) 100%);
    padding: 96px 0
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%,rgba(244,196,48,.14) 0%,transparent 65%)
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap
}

.cta-text h2 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(20px,3.5vw,40px);
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px
}

    .cta-text h2 span {
        color: var(--gold)
    }

.cta-text p {
    color: rgba(255,255,255,.65);
    font-size: 16px
}

.cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center
}

/* ── CONTACT ─────────────────────────────────────────── */
.contact-section {
    padding: 80px 0
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

.contact-info h2 {
    font-family: 'Playfair Display',serif;
    font-size: 32px;
    color: var(--fg);
    margin-bottom: 12px
}

.contact-info > p {
    color: var(--text2);
    font-size: 16px;
    margin-bottom: 28px
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px
}

.ci-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg,var(--gold-d),var(--gold));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(199,154,30,.3)
}

    .ci-icon svg {
        width: 20px;
        height: 20px;
        color: var(--dg)
    }

.contact-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 3px
}

.contact-item p,
.contact-item a {
    font-size: 14px;
    color: var(--text2)
}

    .contact-item a:hover {
        color: var(--ag)
    }

.contact-form-wrap {
    background: #f5faf7;
    border-radius: 0;
    padding: 36px;
    box-shadow: var(--sh)
}

    .contact-form-wrap h3 {
        font-family: 'Playfair Display',serif;
        font-size: 22px;
        color: var(--fg);
        margin-bottom: 22px
    }

.form-input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #d0e4d8;
    border-radius: 0;
    font-size: 15px;
    font-family: inherit;
    margin-bottom: 14px;
    transition: border-color .2s;
    outline: none;
    background: #fff;
    color: var(--text)
}

    .form-input:focus {
        border-color: var(--ag)
    }

textarea.form-input {
    resize: vertical;
    min-height: 110px
}

.form-input-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg,var(--fg),var(--mg));
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

    .form-input-btn:hover {
        background: linear-gradient(135deg,var(--mg),var(--ag));
        transform: translateY(-1px)
    }

.form-success {
    background: #e7f9ee;
    border: 1px solid var(--ag);
    color: var(--fg);
    padding: 12px 16px;
    border-radius: 0;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px
}

    .form-success svg {
        width: 16px;
        height: 16px;
        color: var(--ag)
    }

/* ── ABOUT PAGE ──────────────────────────────────────── */
.about-profile {
    padding: 80px 0
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.profile-img {
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--sh-lg)
}

    .profile-img img {
        width: 100%
    }

.about-quote {
    background: linear-gradient(135deg,var(--fg),var(--mg));
    color: #fff;
    border-radius: 0;
    padding: 28px;
    margin-top: 28px;
    border-left: 4px solid var(--gold)
}

    .about-quote p {
        font-size: 18px;
        line-height: 1.7;
        font-style: italic
    }

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.legal-card {
    background: #fff;
    border-radius: 0;
    padding: 28px 24px;
    box-shadow: var(--sh);
    border-top: 4px solid var(--gold)
}

    .legal-card h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--fg);
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px
    }

        .legal-card h3 svg {
            width: 20px;
            height: 20px;
            color: var(--ag)
        }

    .legal-card ul li {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
        font-size: 14px;
        display: flex;
        align-items: flex-start;
        gap: 8px
    }

        .legal-card ul li svg {
            width: 15px;
            height: 15px;
            color: var(--ag);
            flex-shrink: 0;
            margin-top: 2px
        }

        .legal-card ul li:last-child {
            border: none
        }

/* ── OPPORTUNITY PAGE ────────────────────────────────── */
.opp-hero-section {
    padding: 80px 0 60px
}

.income-table-section {
    padding: 0 0 80px
}

.opp-intro-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-bottom: 60px
}

.opp-intro-card {
    background: #fff;
    border-radius: 0;
    padding: 28px;
    box-shadow: var(--sh);
    text-align: center;
    border-bottom: 4px solid var(--ag)
}

.oic-icon {
    width: 60px;
    height: 60px;
    background: var(--subtle);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px
}

    .oic-icon svg {
        width: 28px;
        height: 28px;
        color: var(--ag)
    }

.oic-num {
    font-family: 'Playfair Display',serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--fg)
}

.oic-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
    margin-top: 4px
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--sh);
    margin-bottom: 50px
}

    .styled-table th {
        background: linear-gradient(135deg,var(--gold-d),var(--gold));
        color: var(--dg);
        padding: 14px 18px;
        text-align: left;
        font-weight: 700;
        font-size: 14px
    }

    .styled-table td {
        padding: 13px 18px;
        border-bottom: 1px solid #e8f0eb;
        font-size: 14px
    }

    .styled-table tr:nth-child(even) {
        background: #f6faf7
    }

    .styled-table tr:hover {
        background: #eef7f1
    }

.td-amt {
    color: var(--fg);
    font-weight: 800;
    font-size: 17px
}

.terms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto
}

.term-card {
    background: #fff;
    border-radius: 0;
    padding: 20px;
    box-shadow: var(--sh);
    display: flex;
    align-items: flex-start;
    gap: 14px
}

.term-icon {
    width: 40px;
    height: 40px;
    background: var(--subtle);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

    .term-icon svg {
        width: 20px;
        height: 20px;
        color: var(--ag)
    }

.term-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 4px
}

.term-card p {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6
}

/* ── UNDER CONSTRUCTION ──────────────────────────────── */
.uc-page {
    text-align: center;
    padding: 100px 24px
}

.uc-icon {
    width: 80px;
    height: 80px;
    background: var(--subtle);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: ucSpin 12s linear infinite
}

    .uc-icon svg {
        width: 40px;
        height: 40px;
        color: var(--ag)
    }

@keyframes ucSpin {
    to {
        transform: rotate(360deg)
    }
}

.uc-page h2 {
    font-family: 'Playfair Display',serif;
    font-size: 30px;
    color: var(--fg);
    margin-bottom: 12px
}

.uc-page p {
    color: var(--text2);
    font-size: 16px;
    margin-bottom: 28px
}

/* ── FOOTER ──────────────────────────────────────────── */
.main-footer {
    background: linear-gradient(175deg,var(--fg) 0%,var(--dg) 100%);
    color: rgba(207,224,212,.85);
    padding-top: 64px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 10px
}

.footer-quote {
    font-style: italic;
    color: var(--gold-l) !important;
    font-size: 14px
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px
}

.f-badge {
    background: rgba(244,196,48,.12);
    border: 1px solid rgba(244,196,48,.25);
    color: var(--gold-l);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 0;
    letter-spacing: .5px
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px
}

.footer-logo-img {
    width: 144px;
    height: 144px;
    object-fit: contain;
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 0 0 2px var(--gold-d)
}

.footer-logo-brand {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px
}

.footer-logo-tag {
    display: block;
    font-size: 10px;
    color: var(--gold-l)
}

.footer-col h4 {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px
}

.footer-col ul li {
    margin-bottom: 9px
}

.footer-col a {
    color: rgba(207,224,212,.75);
    font-size: 13px;
    transition: color .2s
}

    .footer-col a:hover {
        color: var(--gold)
    }

.fc-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px
}

.fc-icon {
    width: 15px;
    height: 15px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px
}

.fc-item a,
.fc-item span {
    color: rgba(207,224,212,.75);
    font-size: 13px;
    line-height: 1.5;
    transition: color .2s
}

    .fc-item a:hover {
        color: var(--gold)
    }

.footer-bottom {
    border-top: 1px solid rgba(244,196,48,.12);
    padding: 18px 0;
    text-align: center
}

    .footer-bottom p {
        font-size: 12.5px;
        color: rgba(207,224,212,.45)
    }

        .footer-bottom p:first-child {
            margin-bottom: 4px
        }

/* ── ANIMATIONS ──────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.16,1,.3,1),transform .8s cubic-bezier(.16,1,.3,1)
}

.reveal-l {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .8s cubic-bezier(.16,1,.3,1),transform .8s cubic-bezier(.16,1,.3,1)
}

.reveal-r {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .8s cubic-bezier(.16,1,.3,1),transform .8s cubic-bezier(.16,1,.3,1)
}

.reveal-up {
    opacity: 0;
    transform: translateY(24px) scale(.98);
    transition: opacity .7s cubic-bezier(.16,1,.3,1),transform .7s cubic-bezier(.16,1,.3,1)
}

    .reveal.visible,
    .reveal-l.visible,
    .reveal-r.visible,
    .reveal-up.visible {
        opacity: 1;
        transform: translate(0) scale(1)
    }

.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s cubic-bezier(.16,1,.3,1),transform .6s cubic-bezier(.16,1,.3,1)
}

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0)
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }
}

/* ── MODAL ───────────────────────────────────────────── */
.btn-outline-join {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold-l);
    box-shadow: none
}

    .btn-outline-join:hover {
        background: rgba(244,196,48,.1);
        transform: scale(1.04)
    }

body.kjw-modal-open {
    overflow: hidden
}

.kjw-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4,22,13,.72);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
    z-index: 9998
}

    .kjw-modal-overlay.active {
        opacity: 1;
        visibility: visible
    }

.kjw-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(.96);
    transition: opacity .25s ease,transform .25s ease,visibility .25s;
    z-index: 9999
}

    .kjw-modal.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: scale(1)
    }

.kjw-modal-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: min(640px,88vh);
    background: var(--white);
    border-radius: var(--r);
    box-shadow: var(--sh-lg);
    border-top: 4px solid var(--gold);
    overflow: hidden
}

.kjw-modal-box-lg {
    max-width: 960px;
    height: min(760px,90vh)
}

.kjw-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: var(--dg);
    color: var(--gold-l);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s
}

    .kjw-modal-close:hover {
        background: var(--mg);
        transform: rotate(90deg)
    }

.kjw-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    background: var(--white)
}

.kjw-modal-loading {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--white);
    color: var(--mg);
    font-weight: 600;
    font-size: 14px;
    z-index: 1
}

.kjw-modal.is-loading .kjw-modal-loading {
    display: flex
}

.kjw-spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid var(--lg);
    border-top-color: var(--ag);
    border-radius: 50%;
    animation: kjwSpin .7s linear infinite
}

@keyframes kjwSpin {
    to {
        transform: rotate(360deg)
    }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════ */

/* ── 1100px ───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .cards-4,
    .income-grid,
    .compliance-grid,
    .testi-grid {
        grid-template-columns: repeat(2,1fr)
    }

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

/* ── 1024px ───────────────────────────────────────────── */
@media (max-width: 1024px) {

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dg);
        padding: 12px 16px 20px;
        z-index: 999;
        border-top: 2px solid rgba(244,196,48,.25);
        box-shadow: 0 12px 32px rgba(0,0,0,.4)
    }

        .main-nav.open {
            display: block
        }

        .main-nav > ul {
            flex-direction: column;
            gap: 2px
        }

    .nav-link {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(255,255,255,.07)
    }

        .nav-link::after {
            display: none
        }

        .nav-link.active {
            border-left: 3px solid var(--gold);
            padding-left: 13px
        }

    .has-dropdown.open .dropdown-mega {
        display: block;
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: rgba(255,255,255,.05);
        border-top: none;
        padding: 4px 0;
        margin: 4px 0;
        animation: none
    }

    .dropdown-mega a {
        color: rgba(255,255,255,.8)
    }

    .dd-icon-wrap {
        background: rgba(255,255,255,.1)
    }

    .dd-lucide {
        color: var(--gold-l)
    }

    .dd-text strong,
    .dd-text small {
        color: rgba(255,255,255,.8)
    }

    .nav-toggle {
        display: flex
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 60px
    }

    .hero-btns, .hero-trust {
        justify-content: center
    }

    .hero-p {
        margin: 0 auto 32px
    }

    .hero-card-wrap {
        display: flex;
        justify-content: center;
        width: 100%
    }

    .alt-layout {
        flex-direction: column;
        gap: 40px
    }

    .alt-rev {
        flex-direction: column
    }

    .product-row .alt-img,
    .product-row .alt-text {
        flex: 1
    }

    .vision-cards {
        max-width: 480px;
        margin: 0 auto
    }

    .contact-grid,
    .profile-grid,
    .legal-grid,
    .terms-grid {
        grid-template-columns: 1fr
    }
}

/* ── 900px ────────────────────────────────────────────── */
@media (max-width: 900px) {
    .styled-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: var(--sh)
    }

    .styled-table {
        min-width: 560px
    }

    .opp-intro-grid {
        grid-template-columns: 1fr 1fr
    }
}

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

    .section-pad {
        padding: 56px 0
    }

    .container {
        padding: 0 16px
    }

    .section-head {
        margin-bottom: 36px
    }

    /* Top bar — compact & centered */
    .top-bar {
        padding: 5px 0
    }

    .top-bar-inner {
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px
    }

    .tb-left {
        display: none
    }
    /* hide left tagline */

    .tb-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 12px
    }

        .tb-right a {
            font-size: 11px
        }

    /* Grids */
    .cards-4,
    .income-grid,
    .compliance-grid,
    .testi-grid,
    .opp-intro-grid {
        grid-template-columns: 1fr
    }

    .milestone-track {
        flex-direction: column;
        align-items: center
    }

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

    .cta-inner {
        flex-direction: column;
        text-align: center
    }

    .cta-btns {
        justify-content: center
    }

    .cta-section {
        padding: 56px 0
    }

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

    .stat-divider {
        display: none
    }

    .stat-item {
        padding: 12px 18px
    }

    /* Logo */
    .logo-img {
        height: 60px;
        width: 60px
    }

    .logo-brand {
        font-size: 15px
    }

    .logo-sub {
        font-size: 9px
    }

    /* Hero */
    .hero {
        min-height: auto
    }

    .hero-inner {
        padding: 80px 0 50px
    }

    .hero-float-card {
        width: 260px;
        padding: 26px 22px
    }

    /* Contact */
    .contact-section {
        padding: 50px 0
    }

    .contact-form-wrap {
        padding: 24px 18px
    }

    /* Page banner */
    .page-banner {
        min-height: 320px
    }

    .pb-content {
        padding: 50px 16px 70px
    }

    /* Misc */
    .about-quote p {
        font-size: 15px
    }

    .feature-list {
        grid-template-columns: 1fr
    }

    .product-title-lg {
        font-size: 24px
    }

    .opp-hero-section {
        padding: 50px 0 36px
    }

    .income-table-section {
        padding: 0 0 50px
    }

    .footer-logo-img {
        width: 80px;
        height: 80px
    }
}

/* ── 600px ────────────────────────────────────────────── */
@media (max-width: 600px) {
    .kjw-modal {
        padding: 0
    }

    .kjw-modal-box,
    .kjw-modal-box-lg {
        max-width: 100%;
        height: 100%;
        border-radius: 0
    }
}

/* ── 480px ────────────────────────────────────────────── */
@media (max-width: 480px) {

    .header-inner {
        padding: 8px 12px
    }

    .btn-join {
        padding: 8px 12px;
        font-size: 12px
    }

    /* Top bar links — show text but truncate long email */
    .tb-right {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 8px
    }

        .tb-right a {
            font-size: 10px;
            gap: 3px
        }

            .tb-right a span {
                display: inline;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                max-width: 110px
            }

    .tb-icon {
        width: 11px;
        height: 11px
    }

    /* Income grid 2-col */
    .income-grid {
        grid-template-columns: repeat(2,1fr)
    }

    /* Hero buttons full-width stack */
    .hero-btns {
        flex-direction: column;
        align-items: center
    }

    .btn-gold-lg,
    .btn-outline-lg,
    .btn-primary-lg,
    .btn-outline-dark {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 12px 20px
    }

    /* CTA buttons stack */
    .cta-btns {
        flex-direction: column;
        width: 100%
    }

        .cta-btns .btn-gold-lg,
        .cta-btns .btn-outline-dark {
            width: 100%;
            justify-content: center
        }

    /* Stats */
    .stats-bar-inner {
        gap: 0
    }

    .stat-item {
        padding: 10px 14px
    }

    .stat-num {
        font-size: 22px
    }

    .stat-label {
        font-size: 11px
    }

    /* Single col */
    .terms-grid {
        grid-template-columns: 1fr
    }

    .vision-cards {
        grid-template-columns: 1fr
    }

    .section-head {
        margin-bottom: 28px
    }

    /* UC page */
    .uc-page {
        padding: 60px 16px
    }

        .uc-page h2 {
            font-size: 22px
        }

    /* Footer */
    .footer-logo-img {
        width: 60px;
        height: 60px
    }

    /* Card padding */
    .card-why {
        padding: 22px 16px
    }

    .income-card {
        padding: 18px 12px
    }

    .ic-amt {
        font-size: 20px
    }
}

/* ── 360px ────────────────────────────────────────────── */
@media (max-width: 360px) {

    /* Top bar completely hidden — no space at all */
    .top-bar {
        display: none
    }

    .logo-brand {
        font-size: 13px;
        letter-spacing: 1.5px
    }

    .hero-float-card {
        width: 240px
    }

    .income-grid {
        grid-template-columns: 1fr
    }

    .hero-h1 {
        font-size: 26px
    }

    .section-h2 {
        font-size: 20px
    }
}
