:root {
    --bg: #f7f9fc;
    --surface: #fff;
    --ink: #172033;
    --muted: #64748b;
    --line: #e7ebf2;
    --primary: #ff6b00;
    --primary2: #ff9d2e;
    --dark: #111827;
    --shadow: 0 16px 45px rgba(15, 23, 42, .09);
    --radius: 22px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65
}

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

.container {
    width: min(1180px, calc(100% - 32px));
    margin: auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line)
}

.nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.brand img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 12px
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.05
}

.brand strong {
    font-size: 14px;
    letter-spacing: .7px
}

.brand small {
    font-size: 11px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: 3px
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 700
}

.main-nav>a,
.mega-trigger {
    padding: 11px 13px;
    border-radius: 10px;
    color: #334155
}

.main-nav>a:hover,
.mega-trigger:hover {
    background: #fff4e9;
    color: var(--primary)
}

.nav-btn {
    background: var(--primary);
    color: #fff !important;
    border-radius: 12px !important
}

.mobile-menu-btn {
    display: none;
    border: 0;
    background: #fff;
    font-size: 25px
}

.visual-ribbon {
    background: #fff;
    border-bottom: 1px solid var(--line)
}

.visual-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 76px
}

.visual-brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.visual-brand img {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    object-fit: cover
}

.visual-brand b,
.visual-brand span {
    display: block
}

.visual-brand b {
    font-size: 14px
}

.visual-brand span {
    font-size: 11px;
    color: var(--muted)
}

.visual-figures {
    display: flex;
    gap: 10px;
    align-items: center
}

.visual-figures img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12)
}

.hero {
    background: radial-gradient(circle at 80% 10%, #fff0df 0, #fff 40%, #f7f9fc 100%);
    padding: 75px 0 65px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center
}

.eyebrow {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    color: var(--primary);
    text-transform: uppercase
}

.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.06;
    margin: 14px 0 18px;
    letter-spacing: -2.5px
}

.hero h1 span,
.section h2 span {
    color: var(--primary)
}

.hero-copy {
    font-size: 17px;
    color: var(--muted);
    max-width: 700px
}

.price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 22px 0
}

.price small {
    font-weight: 800
}

.price b {
    font-size: 52px;
    line-height: 1;
    color: var(--primary)
}

.price span {
    font-weight: 800;
    color: var(--muted)
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}
.hero p {
    font-size: 18px;
    color: #FFF !important;
    margin-top: 15px;
}

.hero .eyebrow {
    font-size: 24px;
    color: #ffd166;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .12);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 12px;
    font-weight: 800;
    border: 1px solid transparent
}

.btn.primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(255, 107, 0, .22)
}

.btn.ghost {
    border-color: #dfe5ee;
    background: #fff
}

.btn.whatsapp {
    background: #16a34a;
    color: #fff
}

.trust-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 22px
}

.trust-row span {
    background: #fff;
    border: 1px solid var(--line);
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700
}

.url-line {
    font-size: 12px;
    color: var(--muted);
    margin-top: 16px
}

.hero-visual {
    display: flex;
    justify-content: center
}

.hero-card {
    width: min(390px, 100%);
    background: linear-gradient(150deg, #171d2a, #252d3d);
    border-radius: 30px;
    padding: 18px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, .23);
    transform: rotate(1.5deg)
}

.card-top,
.card-bottom {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 11px;
    letter-spacing: .8px
}

.card-top b {
    font-size: 20px;
    color: #ffb15b
}

.device {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    margin: 16px 0
}

.device-head {
    font-size: 13px;
    color: #64748b
}

.device-head strong {
    font-size: 24px;
    color: #172033
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 22px 0
}

.mini-grid i {
    font-style: normal;
    text-align: center;
    background: #f5f7fb;
    border-radius: 12px;
    padding: 10px 4px;
    font-size: 22px
}

.mini-grid small {
    display: block;
    font-size: 9px;
    color: #64748b;
    margin-top: 4px;
    font-weight: 700
}

.mini-line {
    height: 9px;
    background: #eef1f6;
    border-radius: 20px;
    margin-top: 9px
}

.mini-line.short {
    width: 65%
}

.stats {
    background: #fff;
    border-block: 1px solid var(--line)
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 22px 0
}

.stat-grid>div {
    text-align: center;
    border-right: 1px solid var(--line)
}

.stat-grid>div:last-child {
    border: 0
}

.stat-grid b {
    display: block;
    font-size: 26px;
    color: var(--primary)
}

.stat-grid span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 700
}

.section {
    padding: 82px 0
}

.section.soft {
    background: #fff
}

.section.dark {
    background: #111827;
    color: #fff
}

.section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px
}

.section-head h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin: 10px 0
}

.section-head p {
    color: var(--muted)
}

.dark .section-head p,
.dark p {
    color: #aeb8ca
}

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

.feature {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
    transition: .2s
}

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

.feature>span {
    font-size: 29px
}

.feature h3 {
    font-size: 16px;
    margin: 12px 0 6px
}

.feature p {
    font-size: 13px;
    color: var(--muted);
    margin: 0
}

.about {
    background: linear-gradient(180deg, #fff, #f7f9fc)
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 55px;
    align-items: center
}

.about h2,
.register h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1
}

.about-grid>div>p {
    color: var(--muted)
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px
}

.about-points div {
    background: #fff;
    border: 1px solid var(--line);
    padding: 16px;
    border-radius: 16px
}

.about-points b {
    font-size: 14px
}

.about-points p {
    font-size: 12px;
    color: var(--muted);
    margin: 5px 0 0
}

.about-art {
    background: linear-gradient(145deg, #fff1e5, #fff);
    border-radius: 30px;
    padding: 35px;
    text-align: center;
    border: 1px solid #ffe0c5
}

.about-art img {
    width: 180px;
    max-width: 80%;
    border-radius: 28px;
    box-shadow: var(--shadow)
}

.art-caption {
    font-weight: 800;
    color: #7c4a22;
    margin-top: 18px
}

.growth-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px;
    align-items: start
}

.dark h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1
}

.growth-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px
}

.growth-cards>div {
    border: 1px solid #2c3545;
    background: #192131;
    border-radius: 17px;
    padding: 19px
}

.growth-cards b {
    font-size: 25px
}

.growth-cards h3 {
    font-size: 15px;
    margin: 10px 0 5px
}

.growth-cards p {
    font-size: 12px;
    margin: 0
}

.funnel {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap
}

.funnel b {
    background: #1c2637;
    padding: 11px 16px;
    border-radius: 999px
}

.funnel i {
    color: #ff9d2e;
    font-style: normal;
    font-size: 20px
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 27px;
    box-shadow: 0 8px 25px rgba(15, 23, 42, .04)
}

.panel-icon {
    font-size: 35px
}

.panel h3 {
    font-size: 22px;
    margin: 8px 0 12px
}

.panel ul {
    margin: 0;
    padding-left: 19px;
    color: #526071
}

.panel li {
    margin: 7px 0;
    font-size: 13px
}

.flow-box {
    margin: 22px auto 0;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--line);
    padding: 15px;
    border-radius: 18px;
    font-size: 13px
}

.flow-box b {
    background: #fff4e9;
    color: var(--primary);
    padding: 7px 11px;
    border-radius: 10px
}

.notice {
    margin-top: 20px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 16px;
    padding: 15px;
    color: #7c4a22;
    font-size: 13px
}

.notice.big {
    margin-top: 25px
}

.quote {
    text-align: center;
    font-weight: 800;
    color: var(--primary) !important
}

.reward-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: auto
}

.reward-table>* {
    padding: 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
    font-size: 13px
}

.reward-table>*:nth-child(4n) {
    border-right: 0
}

.reward-table .th {
    font-weight: 900;
    background: #172033;
    color: #fff
}

.reward-highlight {
    text-align: center;
    background: #fff4e9;
    color: #7c4a22;
    padding: 18px;
    border-radius: 16px;
    margin: 20px auto;
    max-width: 700px
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 30px
}

.steps div {
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px
}

.steps b {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin: 0 auto 8px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%
}

.steps span {
    font-size: 12px;
    font-weight: 800
}

.cycle,
.ref-benefits {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px
}

.cycle span,
.ref-benefits span {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 800
}

.categories {
    background: #fff
}

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

.cat {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    background: #fbfcfe
}

.cat-title {
    display: flex;
    align-items: center;
    gap: 10px
}

.cat-title span {
    font-size: 26px
}

.cat-title b {
    font-size: 16px
}

.cat p {
    font-size: 12px;
    color: #64748b;
    margin: 10px 0 0
}

.faq-grid {
    display: grid;
    gap: 12px;
    max-width: 900px;
    margin: auto
}

.faq details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 17px 20px
}

.faq summary {
    font-weight: 800;
    cursor: pointer
}

.faq details p {
    color: var(--muted);
    font-size: 13px
}

.contact {
    padding-top: 0
}

.contact-card {
    background: #000 !important;
    color: #fff;
    border-radius: 25px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 20px;
    align-items: center;
    box-shadow: var(--shadow)
}


.contact-card h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 5px 0
}

.contact-card p {
    color: #aeb8ca
}

.contact-item {
    padding-left: 16px;
    border-left: 1px solid #394557
}

.contact-item b,
.contact-item span {
    display: block
}

.contact-item b {
    font-size: 13px
}

.contact-item span {
    font-size: 11px;
    color: #9eabbf;
    margin-top: 3px
}

.register {
    background: linear-gradient(135deg, #fff0e1, #fff)
}

.register-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    background: #fff;
    border: 1px solid #ffd9b7;
    border-radius: 25px;
    padding: 35px;
    box-shadow: var(--shadow)
}

.register h2 {
    margin: 10px 0
}

.register p {
    color: var(--muted);
    font-size: 13px
}

.register-actions {
    display: flex;
    gap: 10px;
    flex-direction: column;
    min-width: 200px
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px
}

.extra-grid span {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    font-size: 12px;
    font-weight: 700
}

.extra {
    background: #fff
}

.footer {
    padding: 35px 0;
    text-align: center
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px
}

.footer-brand img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 12px
}

.footer-brand strong,
.footer-brand small {
    display: block
}

.footer-brand strong {
    font-size: 14px
}

.footer-brand small {
    font-size: 11px;
    color: var(--primary)
}

footer p {
    color: var(--muted);
    font-size: 13px
}

footer>small {
    color: #94a3b8;
    font-size: 11px
}

@media(max-width:1050px) {
    .main-nav>a:nth-last-of-type(-n+2) {
        display: none
    }

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

    .contact-card {
        grid-template-columns: 1fr 1fr
        
    }

    .contact-item {
        border-left: 0;
        border-top: 1px solid #394557;
        padding: 14px 0 0
    }

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

@media(max-width:800px) {
    .main-nav {
        display: none
    }

    .mobile-menu-btn {
        display: block
    }

    .visual-grid {
        padding: 10px 0
    }

    .visual-figures {
        display: none
    }

    .hero {
        padding: 48px 0
    }

    .hero-grid,
    .about-grid,
    .growth-grid,
    .two-col,
    .register-box {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 43px
    }

    .hero-card {
        max-width: 380px
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px
    }

    .stat-grid>div {
        border: 0
    }

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

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

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

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

    .reward-table {
        font-size: 12px
    }

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

    .register-actions {
        flex-direction: row;
        flex-wrap: wrap
    }

    .about-points {
        grid-template-columns: 1fr
    }

    .contact-card {
        grid-template-columns: 1fr
    }

    .contact-item {
        border-top: 1px solid #394557;
        padding-top: 14px
    }

    .mega-dropdown {
        right: -15px;
        max-width: calc(100vw - 32px)
    }
}

@media(max-width:520px) {
    .container {
        width: min(100% - 22px, 1180px)
    }

    .hero h1 {
        font-size: 36px;
        letter-spacing: -1.5px
    }

    .feature-grid,
    .growth-cards,
    .extra-grid {
        grid-template-columns: 1fr
    }

    .reward-table>* {
        padding: 10px 5px;
        font-size: 11px
    }

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

    .funnel {
        gap: 8px
    }

    .funnel i {
        display: none
    }

    .section {
        padding: 60px 0
    }

    .price b {
        font-size: 44px
    }

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


/* ===== Floating Right-Middle Mega Offer ===== */
.mega-floating {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    align-items: center
}

.mega-floating .mega-trigger {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 42px;
    height: 142px;
    padding: 12px 9px;
    border: 0;
    border-radius: 14px 0 0 14px;
    background: linear-gradient(180deg, #ff7a00, #ff4d00);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .2px;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(255, 77, 0, .30)
}

.mega-floating .mega-trigger b {
    font-size: 14px;
    line-height: 1
}

.mega-floating .mega-dropdown {
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    width: 255px;
    max-height: 75vh;
    overflow: auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, .20);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease
}

.mega-floating:hover .mega-dropdown,
.mega-floating.open .mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0)
}

.mega-floating .mega-head {
    padding: 12px 12px 10px;
    margin-bottom: 5px;
    border-radius: 13px;
    background: linear-gradient(135deg, #fff3e8, #fff);
    border: 1px solid #ffd8ba
}

.mega-floating .mega-head strong {
    display: block;
    color: #e65100;
    font-size: 13px
}

.mega-floating .mega-head small {
    display: block;
    color: #64748b;
    font-size: 10px;
    margin-top: 3px
}

.mega-floating .mega-dropdown>a {
    display: block;
    padding: 10px 11px;
    border-radius: 10px;
    color: #253044;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: .15s
}

.mega-floating .mega-dropdown>a:hover {
    background: #fff3e8;
    color: #e65100;
    transform: translateX(-2px)
}

.mega-floating .mega-dropdown .mega-cta {
    margin-top: 6px;
    background: #ff6500;
    color: #fff;
    text-align: center
}

.mega-floating .mega-dropdown .mega-cta:hover {
    background: #e95700;
    color: #fff
}

.mega-floating .mega-trigger:focus-visible {
    outline: 3px solid rgba(255, 122, 0, .25);
    outline-offset: 2px
}

@media(max-width:800px) {
    .mega-floating {
        top: auto;
        bottom: 22px;
        transform: none
    }

    .mega-floating .mega-trigger {
        writing-mode: horizontal-tb;
        transform: none;
        min-width: auto;
        width: auto;
        height: 42px;
        border-radius: 999px;
        padding: 0 15px;
        gap: 5px;
        box-shadow: 0 10px 25px rgba(255, 77, 0, .28)
    }

    .mega-floating .mega-dropdown {
        right: 0;
        top: auto;
        bottom: 52px;
        transform: translateY(8px);
        width: min(280px, calc(100vw - 24px));
        max-height: 70vh
    }

    .mega-floating:hover .mega-dropdown,
    .mega-floating.open .mega-dropdown {
        transform: translateY(0)
    }
}