@font-face {
    font-family: 'Behove';
    src: url('font/Behove/Behove.otf') format(truetype);
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* 1. Global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Behove', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: 'Baloo 2', cursive;

    background-color: #efe3cf;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0.15)),
        url('https://www.transparenttextures.com/patterns/rice-paper.png');

    background-repeat: repeat;

    color: #3b2416;
}

/* 2. Animasi ticker */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-container {
    width: 100%;
    padding: 12px 0;
    overflow: hidden;
    background: #000;
    color: #fff;
    border-top: 2px solid #8C5A3C;
}

.ticker-text {
    display: flex;
    width: max-content;
    white-space: nowrap;
    animation: scroll 25s linear infinite;
}

.ticker-text span {
    display: inline-block;
    padding: 0 50px;
    font-size: 14px;
    font-weight: 500;
}

/* 3. Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 5%;

    background: #8C5A3C;
    border-bottom: 3px solid #2c1a08;
}

.nav-left,
.nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    flex: 0;
    text-align: center;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #EDE9E6;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;

    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* LOGIN */

.login-link {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #EDE9E6 !important;
}

.user-icon {
    width: 22px;
    height: 22px;

    stroke: #00BFFF;
    stroke-width: 2px;
}

/* CART */

.cart-icon {
    position: relative;
    font-size: 20px;
    cursor: pointer;
    transition: transform .2s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;

    padding: 2px 5px;

    border-radius: 50%;

    background: red;
    color: white;

    font-size: 10px;
    font-weight: bold;
}

/* CART POPUP */

.cart-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.cart-popup.active {
    display: flex;
}

.cart-box {
    width: 90%;
    max-width: 400px;
    background: #F5EBDD;
    border-radius: 28px;
    padding: 30px;
    text-align: center;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .15);
    animation: fadeUp .3s ease;
}

.cart-box h2 {
    font-family: 'Baloo 2', cursive;
    color: #2C1A08;
    margin-bottom: 12px;
}

.cart-box p {
    font-family: 'Baloo 2', sans-serif;
    color: #5A3A22;
    line-height: 1.6;
}

.cart-actions {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.cart-actions button {
    flex: 1;
    border: none;
    border-radius: 18px;
    padding: 12px;
    cursor: pointer;
    font-family: 'Baloo 2', sans-serif;
    font-size: 16px;
    transition: .2s ease;
}

#closeCart {
    background: #D8C2AE;
    color: #2C1A08;
}

#checkoutBtn {
    background: #8C5A3C;
    color: white;
}

.cart-actions button:hover {
    transform: translateY(-2px);
}

.profile-box {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 16px;
}

.profile-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LOGO */
.logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 90px;
    text-decoration: none;
}

/* SEMUA GAMBAR */
.logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

/* PNG */

.logo-static {
    width: 260px;
    height: auto;
    opacity: 1;
    z-index: 2;
}

/* GIF */
.logo-hover {
    width: 260px;
    height: auto;
    opacity: 0;
    z-index: 1;
}

/* HOVER */
.logo:hover .logo-static {
    opacity: 0;
}

.logo:hover .logo-hover {
    opacity: 1;
}

/* 4. Hero section */
/* HERO */

.hero {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;

    align-items: center;

    min-height: 85vh;

    padding: 40px 0;

    overflow: hidden;
}

/* KIRI & KANAN */

.hero-side {
    display: flex;
    align-items: center;
}

.left-side {
    justify-content: flex-start;
}

.right-side {
    justify-content: flex-end;
}

/* TENGAH */

.hero-center {
    padding: 60px 40px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.since-tag {
    display: block;
    margin-bottom: 15px;
    color: #888;
    font-size: 12px;
    font-weight: bold;
}

.hero-center h1 {
    margin-bottom: 20px;
    color: #000;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
}

.hero-description {
    max-width: 430px;
    margin: 0 auto 30px;
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

/* HERO IMAGE TERPISAH */

.hero-img-left {
    width: 100%;
    max-width: 950px;
    height: auto;

    margin-left: -120px;

    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .18));
    transition: .4s ease;
}

.hero-img-right {
    width: 100%;
    max-width: 520px;
    height: auto;

    margin-right: -90px;

    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .18));
    transition: .4s ease;
}

.hero-img-left:hover,
.hero-img-right:hover {
    transform: scale(1.03);
}

/* BUTTON */

.btn-order {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    background: #000;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-order:hover {
    background: #F5BABB;
    color: #000;
    transform: translateY(-3px);
}

/* GAMBAR */

.hero-img-left {
    width: 100%;
    max-width: 950px;
    height: auto;
    margin-left: -120px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .18));
    transition: .4s ease;
}

.hero-img-right {
    width: 100%;
    max-width: 520px;
    height: auto;
    margin-right: -90px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .18));
    transition: .4s ease;
}

.hero-img-left:hover,
.hero-img-right:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {

    .hero-img-left,
    .hero-img-right {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }

    .hero-side {
        justify-content: center !important;
    }

    .left-side .floating-img,
    .right-side .floating-img {
        margin: 0;
        max-width: 420px;
    }

    .hero-center {
        order: -1;
    }
}

/* 5. Buttons and images */
.btn-order {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    background: #000;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-order:hover {
    background: #F5BABB;
    color: #000;
    transform: translateY(-3px);
}

.floating-img {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.left-img {
    width: 100%;
}

.right-img {
    width: 120%;
}

.floating-img:hover {
    transform: scale(1.05) rotate(3deg);
}

/* 6. Responsiveness */
@media (max-width: 992px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-left,
    .nav-right {
        width: 100%;
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-side {
        order: 2;
    }

    .hero-center {
        order: 1;
        padding: 40px 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* MOBILE RESPONSIVE */
@media screen and (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-left,
    .nav-right {
        width: 100%;
        justify-content: center;
    }

    .nav-links {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 16px;
    }

    /* LOGO */
    .logo {
        width: 220px;
        height: 70px;
    }

    .logo-static,
    .logo-hover {
        width: 200px;
    }

    /* HERO */
    .hero {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px 50px;
        min-height: auto;
    }

    /* BOX PUTIH */
    .hero-center {
        width: 100%;
        padding: 35px 25px;
        order: 1;
        border-radius: 20px;
    }

    .hero-center h1 {
        font-size: 48px;
        line-height: 0.95;
    }

    .hero-description {
        font-size: 15px;
    }

    /* BROWNIES KIRI */
    .hero-side:first-child {
        order: 2;
    }

    .hero-side:first-child .floating-img {
        width: 90%;
        transform: none;
    }

    /* BOX KANAN */
    .hero-side:last-child {
        order: 3;
        justify-content: center;
    }

    .hero-side:last-child .floating-img {
        width: 130%;
        max-width: 500px;
        transform: translateX(40px);
    }

    /* BUTTON */
    .btn-order {
        width: 100%;
        text-align: center;
        padding: 16px;
        font-size: 16px;
    }

    /* TICKER */
    .ticker-text span {
        font-size: 12px;
        padding: 0 25px;
    }

}

/* VAR */
:root {
    --pc-bg: #F5EBDD;
    --pc-ink: #2C1A08;
    --pc-brown: #8C5A3C;
    --pc-dark: #1a0d00;
    --pc-cream: #FDF6EC;
    --pc-tan: #E2C9A8;
    --pc-r: 0px;
    --pc-r-pill: 50px;
}

.pc-section-num {
    display: inline-block;
    font-family: 'Baloo 2', sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .2em;
    color: #aaa;
    margin-bottom: 14px;
}

/* ══════════════════════════════════════
   SECTION 1 
══════════════════════════════════════ */
.pc-intro {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 18px 5%;
    border-top: 1px solid rgba(44, 26, 8, .12);
    border-bottom: 1px solid rgba(44, 26, 8, .12);
    background: var(--pc-bg);
}

.pc-intro-left {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

.pc-intro-center {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.pc-intro-right {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.pc-meta-item {
    font-family: 'Baloo 2', sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #888;
}

.pc-meta-year {
    color: var(--pc-ink);
}

.pc-meta-dot {
    color: #ccc;
}

/* ══════════════════════════════════════
   SECTION 2 
══════════════════════════════════════ */
.pc-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    background: var(--pc-bg);
}

/* LEFT TEXT */
.pc-story-left {
    padding: 80px 6% 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(44, 26, 8, .1);
}

.pc-story-heading {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.0;
    color: var(--pc-ink);
    margin-bottom: 22px;
    letter-spacing: -.01em;
}

.pc-story-body {
    font-family: 'Baloo 2', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    max-width: 400px;
    margin-bottom: 28px;
}

.pc-link-arrow {
    font-family: 'Baloo 2', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: var(--pc-ink);
    text-decoration: none;
    letter-spacing: .06em;
    border-bottom: 1.5px solid var(--pc-ink);
    padding-bottom: 2px;
    transition: opacity .2s;
    display: inline-block;
}

.pc-link-arrow:hover {
    opacity: .5;
}

/* RIGHT IMAGE */
.pc-story-right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pc-cream);
    overflow: hidden;
    position: relative;
}

.pc-story-img-wrap {
    position: relative;
    width: 85%;
    max-width: 420px;
}

.pc-story-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(44, 26, 8, .2));
    transition: transform .5s ease;
}

.pc-story-img:hover {
    transform: scale(1.04);
}

.pc-story-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--pc-ink);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.psb-line1,
.psb-line2,
.psb-line3 {
    font-family: 'Baloo 2', sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
}

/* ══════════════════════════════════════
   SECTION 3
══════════════════════════════════════ */
.pc-categories {
    background: #fff;
    padding: 80px 5%;
    border-top: 1px solid rgba(44, 26, 8, .08);
}

.pc-cat-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 48px;
}

.pc-cat-heading {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--pc-ink);
    letter-spacing: -.01em;
    max-width: 460px;
}

.pc-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(44, 26, 8, .1);
}

.pc-cat-card {
    display: flex;
    flex-direction: column;
    padding: 32px 24px 28px;
    border-right: 1px solid rgba(44, 26, 8, .1);
    text-decoration: none;
    color: var(--pc-ink);
    transition: background .22s;
    cursor: pointer;
}

.pc-cat-card:last-child {
    border-right: none;
}

.pc-cat-card:hover {
    background: var(--pc-bg);
}

.pc-cat-img-wrap {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.pc-cat-img {
    max-height: 140px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .12));
    transition: transform .4s ease;
}

.pc-cat-card:hover .pc-cat-img {
    transform: scale(1.06) rotate(-2deg);
}

.pc-cat-emoji {
    font-size: 72px;
    line-height: 1;
    transition: transform .4s ease;
}

.pc-cat-card:hover .pc-cat-emoji {
    transform: scale(1.12) rotate(-3deg);
}

.pc-cat-label {
    font-family: 'Baloo 2', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: var(--pc-ink);
    margin-bottom: 10px;
    letter-spacing: .02em;
}

.pc-cat-desc {
    font-family: 'Baloo 2', sans-serif;
    font-size: 12.5px;
    line-height: 1.65;
    color: #888;
}

.pc-cat-cta {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
}

.pc-btn-full {
    font-family: 'Baloo 2', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: var(--pc-ink);
    text-decoration: none;
    letter-spacing: .06em;
    border-bottom: 1.5px solid var(--pc-ink);
    padding-bottom: 2px;
    transition: opacity .2s;
}

.pc-btn-full:hover {
    opacity: .5;
}

/* ══════════════════════════════════════
   SECTION 4 
══════════════════════════════════════ */
.pc-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.pc-feat-left {
    background: var(--pc-dark);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 60px 5%;
    position: relative;
    overflow: hidden;
}

.pc-feat-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(140, 90, 60, .35) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 20%, rgba(80, 40, 10, .4) 0%, transparent 50%);
    pointer-events: none;
}

.pc-feat-logo-big {
    font-family: 'Behove', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 900;
    line-height: .9;
    color: rgba(255, 255, 255, .08);
    position: absolute;
    top: 40px;
    left: 5%;
    letter-spacing: -.02em;
    pointer-events: none;
    user-select: none;
}

.pc-feat-tagline {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    letter-spacing: -.01em;
}

/* Light right panel */
.pc-feat-right {
    background: var(--pc-cream);
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pc-feat-tag {
    font-family: 'Baloo 2', sans-serif;
    font-size: 13px;
    font-weight: bold;
    color: #aaa;
    letter-spacing: .1em;
    margin-bottom: 20px;
}

.pc-feat-img {
    max-width: 380px;
    width: 100%;
    height: auto;
    margin-bottom: 28px;
    filter: drop-shadow(0 16px 32px rgba(44, 26, 8, .18));
    transition: transform .5s ease;
}

.pc-feat-img:hover {
    transform: scale(1.04) rotate(1deg);
}

.pc-feat-name {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 900;
    color: var(--pc-ink);
    margin-bottom: 14px;
    line-height: 1.1;
}

.pc-feat-desc {
    font-family: 'Baloo 2', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #666;
    max-width: 400px;
    margin-bottom: 24px;
}

/* ══════════════════════════════════════
   SECTION 5
══════════════════════════════════════ */
.pc-process {
    background: var(--pc-bg);
    padding: 80px 5%;
    border-top: 1px solid rgba(44, 26, 8, .08);
}

.pc-process-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 52px;
}

.pc-process-heading {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--pc-ink);
    letter-spacing: -.01em;
}

.pc-process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.pc-step {
    flex: 1;
    padding: 32px 28px;
    border: 1px solid rgba(44, 26, 8, .1);
    background: #fff;
    transition: background .2s;
}

.pc-step:hover {
    background: var(--pc-cream);
}

.pc-step+.pc-step {
    border-left: none;
}

.pc-step-num {
    font-family: 'Behove', sans-serif;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: .18em;
    color: #bbb;
    margin-bottom: 14px;
}

.pc-step-icon {
    font-size: 36px;
    margin-bottom: 14px;
    line-height: 1;
}

.pc-step-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 17px;
    font-weight: 900;
    color: var(--pc-ink);
    margin-bottom: 10px;
}

.pc-step-desc {
    font-family: 'Baloo 2', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: #888;
}

.pc-step-arrow {
    font-size: 22px;
    color: #ccc;
    display: flex;
    align-items: center;
    padding: 0 4px;
    align-self: center;
    flex-shrink: 0;
}


/* ══════════════════════════════════════
   SECTION 6
══════════════════════════════════════ */
.pc-testi {
    background: #fff;
    padding: 80px 5%;
    border-top: 1px solid rgba(44, 26, 8, .08);
}

.pc-testi-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 44px;
}

.pc-testi-heading {
    font-family: 'Behove', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.0;
    color: var(--pc-ink);
    letter-spacing: -.01em;
}

.pc-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(44, 26, 8, .1);
}

.pc-testi-card {
    padding: 36px 28px;
    border-right: 1px solid rgba(44, 26, 8, .1);
    transition: background .2s;
}

.pc-testi-card:last-child {
    border-right: none;
}

.pc-testi-card:hover {
    background: var(--pc-bg);
}

.pc-testi-stars {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.pc-testi-text {
    font-family: 'Baloo 2', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: var(--pc-ink);
    font-style: italic;
    margin-bottom: 18px;
}

.pc-testi-author {
    font-family: 'Baloo 2', sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .08em;
    color: #aaa;
    text-transform: uppercase;
}

/* ══════════════════════════════════════
   SECTION 7
══════════════════════════════════════ */
.pc-cta-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    background: var(--pc-ink);
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.pc-cta-left {
    padding: 72px 5% 72px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pc-cta-heading {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -.01em;
}

.pc-cta-sub {
    font-family: 'Baloo 2', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .55);
    max-width: 380px;
    margin-bottom: 32px;
}

.pc-cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.pc-cta-btn-primary {
    font-family: 'Baloo 2', sans-serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: .06em;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: var(--pc-r-pill);
    background: #fff;
    color: var(--pc-ink);
    transition: all .22s;
}

.pc-cta-btn-primary:hover {
    background: var(--pc-bg);
    transform: translateY(-2px);
}

.pc-cta-btn-ghost {
    font-family: 'Baloo 2', sans-serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: .06em;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: var(--pc-r-pill);
    border: 1.5px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .8);
    transition: all .22s;
}

.pc-cta-btn-ghost:hover {
    border-color: rgba(255, 255, 255, .6);
    color: #fff;
}

.pc-cta-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(255, 255, 255, .03);
}

.pc-cta-img {
    max-width: 340px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .35));
    transition: transform .5s ease;
}

.pc-cta-img:hover {
    transform: scale(1.05) rotate(-2deg);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.pc-footer {
    background: var(--pc-dark);
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 48px 5% 24px;
}

.pc-footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    margin-bottom: 24px;
}

.pc-footer-logo {
    font-family: 'Behove', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

.pc-footer-tagline {
    font-family: 'Baloo 2', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .06em;
}

.pc-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pc-footer-links a {
    font-family: 'Baloo 2', sans-serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .18s;
}

.pc-footer-links a:hover {
    color: #fff;
}

.pc-footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
}

.pc-footer-ig,
.pc-footer-wa {
    font-family: 'Baloo 2', sans-serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: .06em;
    text-decoration: none;
    padding: 10px 18px;
    border: 1.5px solid rgba(255, 255, 255, .15);
    border-radius: var(--pc-r-pill);
    color: rgba(255, 255, 255, .7);
    transition: all .2s;
    display: inline-block;
    text-align: center;
}

.pc-footer-ig:hover,
.pc-footer-wa:hover {
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
}

.pc-footer-bottom {
    font-family: 'Behove', sans-serif;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .2);
    text-align: center;
}

/* =========================
   POSTER GRID
========================= */

.pc-poster-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.pc-poster-card {
    display: block;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(44, 26, 8, .1);

    transition: .3s ease;
}

.pc-poster-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
}

.pc-poster-img {
    width: 100%;
    height: auto;
    display: block;
}

.pc-step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #f7f2ea;
    color: #4b2e1f;
    font-size: 24px;
    margin-bottom: 22px;
}

.pc-step-card:hover .pc-step-icon {
    transform: translateY(-3px);
    transition: .3s ease;
}

/* MOBILE */
@media(max-width:768px) {
    .pc-poster-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:480px) {

    .pc-poster-grid {
        grid-template-columns: 1fr;
    }

}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
    .pc-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pc-cat-card {
        border-bottom: 1px solid rgba(44, 26, 8, .1);
    }

    .pc-testi-grid {
        grid-template-columns: 1fr;
    }

    .pc-testi-card {
        border-right: none;
        border-bottom: 1px solid rgba(44, 26, 8, .1);
    }

    .pc-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .pc-intro {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 14px 5%;
    }

    .pc-intro-left,
    .pc-intro-center,
    .pc-intro-right {
        justify-content: center;
    }

    .pc-story {
        grid-template-columns: 1fr;
    }

    .pc-story-left {
        border-right: none;
        border-bottom: 1px solid rgba(44, 26, 8, .1);
        padding: 48px 5%;
    }

    .pc-story-right {
        min-height: 320px;
    }

    .pc-cat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pc-feature {
        grid-template-columns: 1fr;
    }

    .pc-feat-left {
        min-height: 220px;
    }

    .pc-process-steps {
        flex-direction: column;
        gap: 0;
    }

    .pc-step+.pc-step {
        border-left: 1px solid rgba(44, 26, 8, .1);
        border-top: none;
    }

    .pc-step-arrow {
        transform: rotate(90deg);
        padding: 8px 0;
        align-self: flex-start;
        margin-left: 28px;
    }

    .pc-cta-banner {
        grid-template-columns: 1fr;
    }

    .pc-cta-right {
        display: none;
    }

    .pc-footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .pc-cat-grid {
        grid-template-columns: 1fr;
    }
}