:root {
    --yellow: #ffda00;
    --red: #ec1231;
    --black: #101010;
    --paper: #faf9f5;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: Arial,Helvetica,sans-serif;
    color: var(--black);
    background: var(--paper);
    font-size: 16px;
    line-height: 1.55;
}

a {
    color: inherit;
}

button,a {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,button:focus-visible,summary:focus-visible {
    outline: 3px solid #128cfa;
    outline-offset: 5px;
}

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

.wrap {
    width: min(1160px,92%);
    margin: auto;
}

.nav {
    background: #090909;
    color: white;
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav .wrap {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    text-decoration: none;
    color: var(--yellow);
    font-size: 25px;
    line-height: .92;
    font-style: italic;
    font-weight: 950;
    letter-spacing: -1px;
}

.brand img {
    display: block;
    height: 46px;
    width: auto;
}

.brand small {
    font-size: 11px;
    letter-spacing: 1px;
    display: block;
    margin-top: 7px;
}

.links {
    display: flex;
    gap: 26px;
}

.links a {
    text-decoration: none;
    font-size: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 12px 25px;
    border: 0;
    border-radius: 40px;
    background: var(--yellow);
    color: #080808;
    font: 800 15px Arial;
    text-decoration: none;
    cursor: pointer;
}

.hero {
    overflow: hidden;
    background: #f1e8d8 url(../images/hero-bg.jpg) center / cover no-repeat;
    min-height: calc(100vh - 72px);
    min-height: calc(100svh - 72px);
    display: flex;
    flex-direction: column;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 15px;
    padding-top: 35px;
    flex: 1;
}

.hero-people {
    position: relative;
    align-self: end;
    justify-self: center;
    width: auto;
    max-width: 100%;
}

.hero-people .people {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.sticker {
    position: absolute;
    z-index: 2;
}

.sticker-text {
    left: -15px;
    top: 4%;
    width: 20%;
    transform: rotate(-8deg);
}

.sticker-note {
    left: -15px;
    top: 28%;
    width: 18%;
    transform: rotate(-6deg);
}

.hero-copy {
    padding: 10px 0 36px;
}

.headline {
    width: 100%;
}

.hero-copy p {
    max-width: 480px;
    margin: 20px auto;
    text-align: center;
    font-weight: 600;
}

.hero-action {
    text-align: center;
}

.benefit-bar {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    padding: 20px 28px;
    background: rgba(255,255,255,.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    margin: 0 auto 25px;
    box-shadow: 0 8px 32px #0000000a;
}

.mini {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    line-height: 1.35;
}

.mini img {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
}

.icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
}

.dark {
    background: #101010;
    color: white;
}

.features {
    display: grid;
    grid-template-columns: 1.1fr 3fr 1fr;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 10px;
    text-align: center;
}

.feature-list > div {
    flex: 1 1 0;
    min-width: 0;
}

.feature-list img {
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
}

.feature-list p {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 6px #000;
}

.editorial {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    overflow: hidden;
    background: #e9e7e3 url(../images/moment-bg.png) center / cover no-repeat;
}

.moment {
    position: relative;
    align-self: end;
}

.moment img {
    width: 100%;
}

.moment-copy {
    padding: 40px 7% 22px;
}

.eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #776418;
}

h1 {
    margin: 0;
}

h2 {
    font-size: clamp(29px,4vw,48px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    font-weight: 950;
    margin: 12px 0 20px;
}

h2 em {
    font-style: italic;
}

.underline {
    display: block;
    width: 100px;
    height: 6px;
    background: var(--red);
    transform: rotate(-4deg);
    margin-top: 18px;
}

.product {
    padding: 0;
}

.product img {
    display: block;
    width: 100%;
    height: auto;
}

.section {
    padding: 64px 0;
}

.steps-layout {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 35px;
    align-items: center;
}

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

.step {
    background: #fff;
    border: 1px solid #e5e2da;
    border-radius: 18px;
    padding: 22px;
    position: relative;
}

.number {
    display: grid;
    place-items: center;
    background: var(--red);
    color: white;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    font-weight: 800;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 18px;
    margin: 0 0 8px;
}

.step p {
    font-size: 14px;
    margin: 0;
    color: #555;
}

.howto {
    display: block;
    width: 100%;
    height: auto;
}

/* Versi mobile Cara pakai (gambar dipecah per elemen) hanya tampil di layar kecil */
.howto-mobile {
    display: none;
}

/* Cara pakai: full-bleed di desktop; di mobile diganti versi elemen terpisah */
@media (min-width: 561px) {
    #cara-pakai .wrap {
        width: 100%;
    }
}

.order-headline {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
}

.note {
    font-size: 14px;
    color: #555;
    margin-top: 22px;
}

.order {
    background: var(--yellow);
    border-top: 1px solid #e4c800;
    border-bottom: 1px solid #e4c800;
}

.order-layout {
    display: grid;
    grid-template-columns: 1.1fr .8fr 1.1fr;
    gap: 35px;
    align-items: center;
}

.price-card {
    background: white;
    border: 4px solid #101010;
    box-shadow: 7px 7px 0 #101010;
    transform: rotate(-3deg);
    padding: 22px;
    text-align: center;
}

.price-card .label {
    background: var(--red);
    color: white;
    display: block;
    font-weight: 900;
    padding: 8px;
    margin: -26px -16px 16px;
    transform: rotate(2deg);
}

del {
    font-size: 20px;
    text-decoration-color: var(--red);
}

.price {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 950;
    color: var(--red);
    letter-spacing: -2px;
    margin: 10px 0;
}

.price small {
    font-size: 20px;
}

.order-actions {
    display: grid;
    gap: 12px;
}

.green {
    background: #137d31;
    color: white;
    box-shadow: 0 4px 0 #0c5720;
}

.orange {
    background: #e9460b;
    color: white;
    box-shadow: 0 4px 0 #a9330b;
}

.status {
    font-size: 14px;
    margin: 0;
    min-height: 22px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

details {
    border-bottom: 1px solid #d8d6cf;
    padding: 16px 0;
}

summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 25px;
    font-weight: 400;
}

details[open] summary::after {
    content: '−';
}

details p {
    color: #555;
    margin-bottom: 0;
    font-size: 15px;
}

.footer {
    padding: 28px 0;
    background: #080808;
    color: white;
}

/* Footer: banner hampir full-bleed, sejajar dengan lebar bagian produk */
.footer .wrap {
    width: min(1800px, 96%);
}

.footer-banner {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.mobile-cta {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

@media (min-width: 801px) {
    .hero .wrap {
        width: min(1800px, 96%);
    }

    .headline {
        display: block;
        width: auto;
        max-width: 100%;
        max-height: max(220px, calc(100svh - 431px));
        margin: 0 auto;
    }

    .hero-people {
        aspect-ratio: 1230 / 1279;
        max-height: max(280px, calc(100svh - 160px));
        margin-bottom: -80px;
        margin-left: 18%;
        max-width: 82%;
    }

    .sticker-text {
        left: -14%;
        top: 3%;
        width: 22%;
    }

    .features {
        width: min(1800px, 96%);
        gap: 30px;
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .feature-list {
        gap: 16px 12px;
    }

    .feature-list img {
        width: clamp(80px, 6.5vw, 124px);
        height: auto;
        margin-bottom: 14px;
    }

    .feature-list p {
        font-size: clamp(13px, 1.05vw, 17px);
    }

    .sticker-note {
        left: -17%;
        top: 50%;
        width: 20%;
    }

    .editorial {
        grid-template-columns: 1fr 1fr;
        align-items: end;
    }
}

@media (min-width: 801px) and (max-width: 1100px) {
    .sticker-text {
        left: -12%;
        width: 20%;
    }

    .sticker-note {
        left: -14%;
        width: 18%;
    }
}

@media (max-width: 800px) {
    .links {
        gap: 14px;
    }

    .links a {
        font-size: 13px;
    }

    .hero-grid {
        gap: 0;
    }

    .features {
        grid-template-columns: 1fr 2fr;
    }

    .feature-list > div {
        flex: 0 0 calc(33.333% - 7px);
    }

    .feature-list img {
        width: 64px;
        height: 64px;
    }

    .manifesto {
        display: none;
    }

    .steps-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .order-layout {
        grid-template-columns: 1fr 1fr;
    }

    .order-actions {
        grid-column: 1/-1;
        grid-template-columns: 1fr 1fr;
    }

    .status {
        grid-column: 1/-1;
    }

    .faq-grid {
        gap: 30px;
    }

    .section {
        padding: 45px 0;
    }
}

@media (max-width: 560px) {
    body {
        padding-bottom: 74px;
    }

    .nav .wrap {
        min-height: 62px;
    }

    .nav .button {
        font-size: 12px;
        padding: 10px 16px;
        min-height: 39px;
    }

    .brand {
        font-size: 22px;
    }

    .brand img {
        height: 38px;
    }

    .links {
        display: none;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        padding-top: 20px;
    }

    .hero-copy {
        order: -1;
        padding: 0 0 15px;
    }

    .headline {
        max-width: 420px;
        margin: auto;
    }

    .hero-copy p {
        font-size: 14px;
        margin: 8px 15px 12px;
    }

    .hero-action {
        display: none;
    }

    .hero-people {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .sticker-text {
        width: 19%;
        left: 0;
    }

    .sticker-note {
        width: 17%;
        left: 0;
    }

    .benefit-bar {
        grid-template-columns: 1fr 1fr;
        padding: 16px 12px;
        gap: 14px 10px;
        border-radius: 16px;
        margin-top: -3px;
    }

    .mini {
        font-size: 12px;
        gap: 8px;
    }

    .mini img {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 18px;
    }

    .features {
        grid-template-columns: 1fr;
        padding: 25px 0 30px;
        gap: 18px;
    }

    .why {
        width: 220px;
        margin: auto;
    }

    .howto-scroll {
        display: none;
    }

    .howto-mobile {
        display: grid;
        gap: 18px;
    }

    .howto-mobile img {
        display: block;
        width: 100%;
        height: auto;
    }

    .hm-top {
        display: grid;
        grid-template-columns: 1.25fr 1fr;
        align-items: center;
        gap: 12px;
    }

    .hm-steps,
    .hm-bpom,
    .hm-reviews {
        display: grid;
        gap: 8px;
        justify-items: center;
    }

    .hm-steps img {
        max-width: 270px;
    }

    .hm-bpom-title {
        max-width: 165px;
    }

    .hm-sticker {
        max-width: 160px;
    }

    .hm-reviews img:not(.hm-sticker) {
        max-width: 300px;
    }

    .feature-list {
        gap: 14px 8px;
    }

    .feature-list > div {
        flex: 0 0 calc(33.333% - 6px);
    }

    .feature-list img {
        width: 58px;
        height: 58px;
        margin-bottom: 8px;
    }

    .feature-list p {
        font-size: 12px;
    }

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

    .moment-copy {
        padding: 30px 6% 15px;
    }

    .moment-copy h2 {
        font-size: 35px;
    }

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

    .step {
        display: grid;
        grid-template-columns: 35px 1fr;
        gap: 0 15px;
        padding: 18px;
    }

    .number {
        grid-row: 1/3;
        margin: 0;
    }

    .step h3 {
        font-size: 17px;
    }

    .steps-layout h2 {
        margin-top: 0;
    }

    .order-layout {
        gap: 30px 18px;
    }

    .order-layout>div:first-child {
        grid-column: 1/-1;
    }

    .order-layout h2 {
        margin-top: 0;
        margin-bottom: 12px;
    }

    .price-card {
        grid-column: 1/-1;
        width: 245px;
        margin: 10px auto;
    }

    .order-actions {
        grid-template-columns: 1fr;
    }

    .order-actions .button {
        font-size: 16px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer {
        padding: 22px 0 26px;
    }

    /* Footer: banner dipaskan ke lebar layar di mobile */
    .footer .wrap {
        width: 100%;
    }

    .footer-scroll {
        padding: 0 4%;
    }

    .footer-banner {
        width: 100%;
    }

    .mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 5%;
        padding-bottom: max(10px,env(safe-area-inset-bottom));
        background: #080808;
        color: white;
        z-index: 30;
        box-shadow: 0 -3px 15px #0002;
    }

    .mobile-cta strong {
        color: var(--yellow);
        display: block;
        font-size: 18px;
    }

    .mobile-cta span {
        font-size: 12px;
    }

    .mobile-cta .button {
        min-height: 42px;
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* ---------- Testimoni ---------- */
.testimonials {
    background: #f1eee6;
}

.testi-head {
    margin-bottom: 26px;
}

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

.testi-card {
    background: #fff;
    border: 1px solid #e3dfd4;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 6px 24px #0000000a;
}

.testi-card.is-hidden {
    display: none;
}

.testi-stars {
    color: #f2b100;
    font-size: 16px;
    letter-spacing: 2px;
}

.testi-stars span {
    color: #ddd;
}

.testi-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    flex: 1;
}

.testi-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.testi-meta small {
    display: block;
    color: #666;
    font-size: 12px;
}

.testi-avatar {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    background: var(--yellow);
    display: grid;
    place-items: center;
    font-weight: 900;
}

.testi-more {
    text-align: center;
    margin-top: 26px;
}

.testi-more .button {
    border: 0;
}

/* ---------- Notifikasi order (pojok kiri bawah) ---------- */
.order-toast {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: min(360px, calc(100vw - 36px));
    padding: 12px 14px;
    background: #fff;
    color: var(--black);
    border: 1px solid #e3dfd4;
    border-left: 5px solid var(--yellow);
    border-radius: 14px;
    box-shadow: 0 12px 34px #00000026;
    font-size: 14px;
    line-height: 1.35;
    transform: translateY(20px);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
}

.order-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.order-toast-icon {
    font-size: 26px;
    flex: 0 0 auto;
}

.order-toast-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.order-toast-body span {
    color: #666;
    font-size: 12px;
}

.order-toast-close {
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 2px 4px;
}

.order-toast-close:hover {
    color: var(--black);
}

@media (max-width: 800px) {
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .testi-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .order-toast {
        left: 10px;
        bottom: 78px;
        max-width: calc(100vw - 20px);
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .order-toast {
        transition: none;
        transform: none;
    }
}
