:root {
    --ink: #111111;
    --muted: #666666;
    --soft: #f4f4f4;
    --card: #f9f9f9;
    --radius: 48px;
    /* Super round as requested */
    --wrap: 1600px;
    /* Massive width for "filling" feel */

    --navH: 80px;
    /* Taller nav */
    --purple: #6200ee;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* ===== Speakers section ===== */
.speakers {
    padding: 120px 0;
    background: #fff;
}

.spGrid {
    display: grid;
    grid-template-columns: 280px 1fr;
    /* Narrower text column to give space to cards */
    gap: 40px;
    /* Reduced gap */
    align-items: start;
}

.spTitle {
    margin: 0;
    font-size: 42px;
    /* Slightly adjusted for balance */
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
    word-break: keep-all;
}

.spDesc {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 500;
    word-break: keep-all;
}

.spCards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    /* Tight gap for "packed" feel */
}

/* ===== Product Cards (Image 3 & New Feedback) ===== */
.prodCard {
    background: transparent;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Tighter vertical gap */
}

.prodCard:hover {
    transform: translateY(-5px);
}

.prodImg {
    background: #f9f9f9;
    border-radius: 32px;
    height: 360px;
    /* Tall and big */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.prodImg img {
    width: 80%;
    /* Responsive fill */
    max-width: 280px;
    /* Cap size */
    height: auto;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
    display: block;
}

.prodCard:hover .prodImg img {
    transform: scale(1.08);
}

/* The Info Box */
.prodFoot {
    background: #f9f9f9;
    border-radius: 32px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    /* Substantial footprint */
}

.prodMeta {
    margin-bottom: 20px;
}

.prodName {
    font-size: 19px;
    /* Larger name */
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.prodPrice {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

/* Buy Button */
.buyPill {
    background: #fff;
    border-radius: 999px;
    padding: 6px 6px 6px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 14px;
    color: #111;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buyPill:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.buyPill .plus {
    width: 36px;
    /* Larger button icon */
    height: 36px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background-color: #fff;
    word-break: keep-all;
    /* Important for Korean */
}

html {
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
    user-select: none;
    -webkit-user-drag: none;
}

.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 40px;
    /* Generous side padding */
}

/* ===== NAV ===== */
.siteHeader {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #000;
    /* Solid black matches Image 1 */
}

.navShell {
    padding: 0 40px;
    max-width: var(--wrap);
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
}

.navBar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navBrand {
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    letter-spacing: 0.05em;
}

.navLinks {
    display: flex;
    gap: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.navLinks a {
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 8px 0;
}

.navLinks a:hover {
    opacity: 1;
}

.navIcons {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.iconBtn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0.8;
}

.iconBtn:hover {
    opacity: 1;
    background: none;
}

.menuBtn {
    display: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.menuBtn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mnav {
    margin-top: 8px;
    background: #111;
    color: #fff;
    border-radius: 14px;
    padding: 12px;
    transform-origin: top center;
    animation: fadeInMenu 0.2s ease-out;
}

.mnav[hidden] {
    display: none;
}

@keyframes fadeInMenu {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }

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

.mnav a {
    display: block;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
}

.mnav a:hover {
    background: rgba(255, 255, 255, .1);
}

/* ===== Buttons ===== */
.btnBlack {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btnBlack:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btnPurple {
    margin-top: 22px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: none;
}

.btnPurple:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.chatDot {
    display: inline-block;
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
    margin-top: 0;
    height: 800px;
    /* Taller hero */
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Remove radius for full bleed feel */
}

.heroBg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Subtle zoom animation check */
    animation: heroZoom 15s infinite alternate linear;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.heroText {
    position: absolute;
    right: 12%;
    top: 50%;
    transform: translateY(-50%);
    width: min(560px, 45vw);
    text-align: left;
    z-index: 10;
}

.heroKicker {
    font-weight: 800;
    letter-spacing: 0.05em;
    font-size: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: #000;
    text-shadow:
        0 0 1px #000,
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px rgba(255, 255, 255, 1),
        0 0 40px rgba(255, 255, 255, 0.8),
        0 0 80px rgba(255, 255, 255, 0.4);
}

.heroTitle {
    margin: 0;
    font-size: 80px;
    letter-spacing: -0.04em;
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 24px;
    color: #000;
    text-shadow:
        0 0 1px #000,
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #fff,
        0 0 40px #fff,
        0 0 80px rgba(255, 255, 255, 1),
        0 0 120px rgba(255, 255, 255, 0.6),
        0 0 200px rgba(255, 255, 255, 0.3);
}

.heroSub {
    margin: 0 0 40px;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    text-shadow:
        0 0 1px #000,
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px rgba(255, 255, 255, 1),
        0 0 40px rgba(255, 255, 255, 0.8),
        0 0 80px rgba(255, 255, 255, 0.4);
    letter-spacing: -0.02em;
    line-height: 1.35;

}

/* ===== Category bar ===== */
.catBar {
    padding: 100px 0;
    /* More space between title/icons */
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.catInner {
    display: flex;
    align-items: center;
    gap: 80px;
    /* Reduced gap to give more room to icons */
}

.catTitle {
    font-size: 32px;
    /* Larger */
    font-weight: 800;
    letter-spacing: -0.03em;
    white-space: nowrap;
    padding-bottom: 4px;
}

.catIcons {
    flex: 1;
    display: flex;
    justify-content: space-between;
    /* Spread them out */
    align-items: flex-start;
    /* Align top */
    gap: 0;
    /* Let space-between/flex handle it */
}

.catIcon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    /* Logic gap */
    color: #d1d1d1;
    transition: transform 0.2s, color 0.2s;
    flex: 1;
    /* Make each icon take equal width */
    cursor: pointer;
}

.catIcon svg {
    color: inherit;
    transition: stroke 0.2s;
    width: 64px;
    /* Big Icon */
    height: 64px;
    stroke-width: 1.2px;
}

.catIcon div {
    color: var(--ink);
    font-size: 16px;
    /* Big Label */
    font-weight: 700;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.catIcon:hover {
    color: var(--ink);
    transform: translateY(-5px);
}

.catIcon:hover div {
    opacity: 1;
}

/* ===== Pixie section ===== */
.pixie {
    background: #fbfbfb;
    padding: 80px 0 100px;
}

.pixieGrid {
    display: grid;
    grid-template-columns: 360px 1fr 480px;
    gap: 40px;
    align-items: center;
}

.pixieLeft {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cardLg {
    background: var(--card);
    border-radius: var(--radius);
    padding: 40px;
    min-height: 280px;
    display: grid;
    place-items: center;
    transition: transform 0.3s ease;
}

.cardLg:hover {
    transform: translateY(-5px);
}

.cardLg img {
    width: 240px;
    height: auto;
    transform: rotate(-12deg);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

.cardLg:hover img {
    transform: rotate(-5deg) scale(1.05);
}

.cardInfo {
    background: var(--card);
    border-radius: var(--radius);
    padding: 24px 28px;
}

.cardInfo .name {
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 18px;
    margin-bottom: 6px;
}

.cardInfo .price {
    font-weight: 700;
    opacity: 0.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.buyPill {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 999px;
    padding: 5px 5px 5px 24px;
    /* Tight padding around button */
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 13px;
    color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.2s;
}

.buyPill:hover {
    border-color: #d0d0d0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.buyPill .plus {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #6200ee;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    /* Thin plus sign */
}

.pixieCenter {
    text-align: center;
}

.pixieTitle {
    margin: 0;
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}

.pixieSub {
    margin: 20px 0 32px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.3;
    color: var(--muted);
}

.pixieRight {
    display: flex;
    justify-content: flex-end;
}

.pixieRight img {
    width: 460px;
    height: auto;
    transform: translateX(40px);
    transition: transform 0.5s;
}

.pixieRight:hover img {
    transform: translateX(40px) scale(1.02);
}

/* ===== Speakers section ===== */
.speakers {
    padding: 140px 0;
    /* More breathable */
    background: #fff;
}

.spGrid {
    display: grid;
    grid-template-columns: 320px 1fr;
    /* Wider sidebar */
    gap: 60px;
    align-items: start;
}

.spTitle {
    margin: 0;
    font-size: 56px;
    /* Huge title */
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 32px;
    word-break: keep-all;
}

.spDesc {
    font-size: 18px;
    /* Larger body text */
    color: #666;
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 500;
    word-break: keep-all;
}

.spCards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    /* Keeping gap tight to make cards feel Huge */
}

/* ===== Product Cards (Big & Round) ===== */
.prodCard {
    background: transparent;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prodCard:hover {
    transform: translateY(-8px);
}

.prodImg {
    background: #f9f9f9;
    border-radius: var(--radius);
    /* 48px */
    height: 420px;
    /* Massive */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.prodImg img {
    width: 90%;
    /* Fill almost entire width */
    max-width: 360px;
    height: auto;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.1));
    display: block;
}

.prodCard:hover .prodImg img {
    transform: scale(1.05);
    /* Slight zoom */
}

/* The Info Box */
.prodFoot {
    background: #f9f9f9;
    border-radius: var(--radius);
    /* 48px */
    padding: 40px;
    /* Luxuriously padded */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
}

.prodMeta {
    margin-bottom: 24px;
}

.prodName {
    font-size: 22px;
    /* Headline size name */
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.prodPrice {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* Buy Button */
.buyPill {
    background: #fff;
    border-radius: 999px;
    padding: 8px 8px 8px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 15px;
    color: #111;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buyPill:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.buyPill .plus {
    width: 44px;
    /* Huge button */
    height: 44px;
    border-radius: 50%;
    background: #6200ee;
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Article ===== */
.article {
    padding: 120px 0;
    background: #fff;
    text-align: center;
}

.aTitle {
    margin: 0;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.aDesc {
    margin: 20px 0 32px;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 500;
    font-size: 16px;
}

.imgStrip {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 280px;
    gap: 2px;
}

.imgStrip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.imgStrip:hover img {
    opacity: 0.7;
}

.imgStrip img:hover {
    opacity: 1;
}

/* ===== Support (Image 5/6) ===== */
.support {
    background: #111;
    padding: 160px 0;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sTitle {
    margin: 0;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
}

.sDesc {
    margin: 20px auto 40px;
    max-width: 600px;
    color: #999;
    line-height: 1.8;
    font-weight: 500;
    font-size: 15px;
}

.contactCard {
    background: #1f1f1f;
    border-radius: 24px;
    padding: 60px 40px;
    /* Increased padding */
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    gap: 60px;
    max-width: 600px;
    /* Wider if needed */
    margin: 0 auto 60px;
    /* Center the card itself */
    text-align: center;
    /* Center text */
}

.cCol {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cLabel {
    font-size: 16px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cValue {
    font-size: 32px;
    /* Much larger */
    font-weight: 700;
    color: #fff;
}

/* ===== Footer (Image 6) ===== */
.siteFooter {
    background: #000;
    color: #fff;
    padding: 80px 0 100px;
    border-top: 1px solid #222;
    position: relative;
    /* Cover fixed hero */
    z-index: 1;
}

.footerGrid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}

.footerBrand {
    flex: 0 0 300px;
}

.fLogo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.fCopy {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
}

.footerLinks {
    flex: 1;
    display: flex;
    gap: 80px;
    justify-content: flex-end;
}

.fCol h4 {
    font-size: 13px;
    color: #777;
    margin-bottom: 24px;
    font-weight: 700;
}

.fCol a,
.fCol span {
    display: block;
    font-size: 13px;
    color: #ddd;
    margin-bottom: 12px;
    text-decoration: none;
}

.fCol a:hover {
    text-decoration: underline;
}

.fInfoRow {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.fInfoRow span:first-child {
    color: #777;
    width: 70px;
    /* Fixed width label */
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .siteHeader {
        background: rgba(0, 0, 0, 0.9);
    }

    .navLinks {
        display: none;
    }

    .menuBtn {
        display: inline-flex;
    }

    .hero {
        height: 580px;
    }

    .heroText {
        right: 6%;
        width: min(520px, 80vw);
    }

    .heroTitle {
        font-size: 48px;
    }

    .catInner {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .catIcons {
        width: 100%;
        justify-content: flex-start;
        gap: 12vw;
        overflow-x: auto;
        padding-bottom: 10px;
        /* Hide scrollbar spacing if needed */
        scrollbar-width: none;
    }

    .pixieGrid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .pixieLeft {
        align-items: center;
    }

    .cardLg {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .cardInfo {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .pixieRight {
        justify-content: center;
        overflow: hidden;
    }

    .pixieRight img {
        transform: translateY(20px);
        width: min(420px, 90vw);
    }

    .spGrid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .spDesc {
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
    }

    .spCards {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 400px;
        margin: 0 auto;
    }

    .prodImg {
        height: 280px;
    }

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

    .cValue {
        font-size: 28px;
    }

    .mnav {
        text-align: center;
    }

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

    .footerLinks {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: flex-start;
    }
}

/* ======================== *
 *    PRODUCT PAGE STYLES   *
 * ======================== */

/* Dark Mode Header Override */
.product-page .siteHeader.dark-mode {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-page .siteHeader.dark-mode .navBrand,
.product-page .siteHeader.dark-mode .navLinks a,
.product-page .siteHeader.dark-mode .iconBtn,
.product-page .siteHeader.dark-mode .menuBtn {
    color: #fff;
}

/* HERO (Dark) */
.prodHero {
    background: #000;
    color: #fff;
    padding-top: var(--navH);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.heroContent {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ... existing prodHero styles if needed ... */

/* UPDATED .heroText for Index Page (appended or existing) */
.heroText {
    position: absolute;
    top: 50%;
    right: 5%;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 2;
    text-align: right;
    color: #fff;
    max-width: 600px;
    width: 90%;
    pointer-events: none;
    /* Let clicks pass through if covering */
}

.heroText a {
    pointer-events: auto;
    /* Re-enable for button */
}



/* Ensure sections cover the fixed image */
.catBar,
.awards,
.partners,
.josun,
.speakers,
.article,
#view-product {
    position: relative;
    z-index: 1;
    background: #fff;
    /* Opaque background to cover image */
}

/* Exception for Product View which has its own hero */
#view-product {
    background: #fff;
}

/* Ensure prodHero background covers main hero image if needed */
.prodHero {
    background: #000;
    z-index: 2;
    /* Ensure it covers properly */
}

/* Responsive override for .heroText */
@media (max-width: 1024px) {
    .heroText {
        right: 5%;
        width: 80%;
        align-items: flex-end;
        /* If flex */
    }

    .heroTitle {
        font-size: 48px;
    }
}

.ph-title {
    font-size: 100px;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #aaa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ph-sub {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.ph-desc {
    font-size: 18px;
    color: #dfdfdf;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.ph-visual {
    margin-top: 40px;
    position: relative;
    width: 100%;
    max-width: 900px;
}

.ph-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 100px rgba(98, 0, 238, 0.4));
    /* Glow effect */
}

/* Floating Card */
.floatCard {
    position: absolute;
    bottom: 80px;
    right: 40px;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 30px;
    border-radius: 32px;
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.floatCard h3 {
    font-size: 20px;
    margin: 0 0 4px;
    color: #fff;
}

.floatCard p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.fc-price {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
}

.buyPill.dark {
    background: #333;
    color: #fff;
    border: 1px solid #444;
}

.buyPill.dark:hover {
    background: #444;
}

.buyPill.dark .plus {
    background: #fff;
    /* Contrast on dark card */
    color: #000;
}


/* INTRO (Seemless) */
.prodIntro {
    background: #fff;
    padding: 160px 0;
    text-align: center;
    overflow: hidden;
}

.secTitle {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111;
}

.secDesc {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 80px;
    line-height: 1.7;
}

.introVisual {
    position: relative;
    margin-bottom: 100px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    opacity: 0.1;
    z-index: 1;
}

.intro-prod {
    position: relative;
    z-index: 2;
    width: 60%;
    max-width: 600px;
    filter: drop-shadow(0 50px 80px rgba(0, 0, 0, 0.15));
}

.introGrid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.ig-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ig-item img,
.ig-item .icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
}

.ig-item .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdfdfd;
}

/* DETAILS (Macro) */
.prodDetail {
    background: #f9f9f9;
    padding: 160px 0;
    position: relative;
    z-index: 1;
}

.detailVisuals {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dv-large {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    height: 600px;
    position: relative;
}

.dv-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dv-item {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    height: 600px;
    position: relative;
}

.dv-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dv-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 14px;
}

/* LIFESTYLE */
.prodLife {
    position: relative;
    height: 800px;
    overflow: hidden;
}

.lifeImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.lifeContent {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Text on right */
}

.lc-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: var(--radius);
    max-width: 500px;
    backdrop-filter: blur(10px);
}

.lc-tag {
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 20px;
}

.lc-box h3 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.lc-box p {
    font-size: 16px;
    line-height: 1.5;
    color: #444;
    text-shadow: 0 0 20px #fff, 0 0 30px #fff;
}

/* FEATURES GRID */
.prodFeatures {
    padding: 160px 0;
    background: #fff;
}

.pf-header {
    margin-bottom: 100px;
}

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

.pf-card {
    background: #f9f9f9;
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transition: transform 0.3s;
}

.pf-card:hover {
    transform: translateY(-5px);
    background: #f4f4f4;
}

.pf-card svg {
    margin-bottom: 10px;
}

.pf-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.pf-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* BOTTOM BANNER */
.prodBottom {
    padding: 100px 40px;
    background: #f4f4f4;
}

.pb-content {
    background: #fff;
    border-radius: var(--radius);
    padding: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pb-tag {
    color: #888;
    font-weight: 700;
    margin-bottom: 20px;
}

.pb-content h2 {
    font-size: 64px;
    margin-bottom: 20px;
}

.pb-content p {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.pb-img {
    margin-top: 60px;
    transform: rotate(5deg);
}

.pb-img img {
    max-width: 600px;
}

/* ======================== *
 *    VISUAL UPGRADE        *
 * ======================== */

/* 1. Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 2. Hero Enhancements */
.heroTitle {
    background: linear-gradient(135deg, #111 0%, #444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Animated Gradient if desired, keeping simple for now */
}

/* 3. Card Glow Interaction & Premium Hover */
.prodCard {
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy lift */
}

/* Lift Effect on Hover */
.prodCard.reveal.active:hover {
    transform: translateY(-12px) scale(1.02);
    z-index: 10;
    /* Bring to front */
}

/* Deep Shadow on Hover */
.prodCard:hover .prodImg {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Image Zoom */
.prodImg {
    overflow: hidden;
    /* Ensure zoom stays inside */
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    /* rounded corners handled in main style usually */
}

.prodImg img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    /* Ensure width */
}

.prodCard:hover .prodImg img {
    transform: scale(1.08);
    /* Subtle Zoom */
}

/* Glow Background */
.prodCard::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle at center, rgba(98, 0, 238, 0.15) 0%, transparent 70%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.prodCard:hover::after {
    opacity: 1;
}

/* Buy Pill Pulse */
@keyframes softPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.buyPill .plus {
    animation: softPulse 2s infinite;
}

/* 4. Smooth Anchor Scrolling */
html {
    scroll-behavior: smooth;
}

/* Hero Title Gradient Fix */
.heroTitle {
    background: linear-gradient(135deg, #111 0%, #444 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ======================== *
 *     JOSUN SERIES         *
 * ======================== */
.josun {
    padding: 120px 0;
    background: #fff;
}

.josunHeader {
    margin-bottom: 60px;
    max-width: 600px;
}

.josunTitle {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111;
}

.josunDesc {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Featured Bundle Block */
.josunFeatured {
    background: #fbfbfd;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    min-height: 500px;
}

.jf-content {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.jf-tag {
    background: #111;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.jf-name {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #111;
}

.jf-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    max-width: 400px;
    line-height: 1.6;
}

.jf-price {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 32px;
}

.jf-visual {
    flex: 1.2;
    height: 100%;
    min-height: 500px;
    position: relative;
    background: #f0f0f5;
}

.jf-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Grid Layout */
.josunGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .josunFeatured {
        flex-direction: column-reverse;
        text-align: center;
    }

    .jf-content {
        padding: 40px 20px;
        align-items: center;
    }

    .jf-visual {
        width: 100%;
        height: 300px;
        min-height: auto;
    }

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

/* Support Visual */
.supportVisual {
    margin-top: 100px;
    border-radius: 40px;
    overflow: hidden;
    height: 500px;
    position: relative;
    width: 100%;
}

.supportVisual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ======================== *
 *       AWARDS             *
 * ======================== */

/* ======================== *
 *       AWARDS             *
 * ======================== */
.awards {
    padding: 120px 0;
    background: #050505;
    /* Deep Dark */
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: #fff;
}

/* Gold background glow */
.awards::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    /* Increased from 140px */
    height: 200px;
    /* Increased from 140px */
    background: radial-gradient(circle, rgba(188, 140, 29, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.awSectionTitle {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 80px;
    background: linear-gradient(to right, #fff 20%, #d4af37 50%, #fff 80%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.awGrid {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.awItem {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    /* Glassy dark */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.awItem:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
    border-color: #d4af37;
    /* Gold border on hover */
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    /* Gold shadow */
}

.awIcon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #222 0%, #000 100%);
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    color: #d4af37;
    /* Gold Icon */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.awItem:hover .awIcon {
    transform: scale(1.1) rotate(5deg);
    border-color: #d4af37;
    color: #fff;
    background: #d4af37;
}

/* Fix visibility on black background for icon */
.awItem:hover .awIcon svg {
    stroke: #000;
    /* Contrast when icon bg is gold */
}

.awYear {
    font-size: 12px;
    font-weight: 800;
    color: #d4af37;
    /* Gold Text */
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 14px;
    border-radius: 99px;
    letter-spacing: 0.1em;
}

.awTitle {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    /* White title for readability */
    line-height: 1.4;
    min-height: 56px;
    text-align: center;
}

.awBadge {
    font-size: 15px;
    color: #ccc;
    font-weight: 500;
}

.awSub {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    width: 100%;
    text-align: center;
}

/* Ensure Support Section Text is Visible (Safe check) */
.sDesc {
    color: #bbb;
    /* Brighter grey */
}

.cLabel {
    color: #aaa;
    /* Brighter */
}

.awards {
    padding: 100px 0;
    background: #050505;
    /* Deep Black */
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

/* Background Glow Effect */
.awards::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.awSectionTitle {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 80px;
    background: linear-gradient(to right, #fff 20%, #d4af37 50%, #fff 80%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.awGrid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.awItem {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    /* Glassy dark */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.awItem:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
    border-color: #d4af37;
    /* Gold border */
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    /* Gold shadow */
}

.awIcon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #222 0%, #000 100%);
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    color: #d4af37;
    /* Gold Icon */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.awItem:hover .awIcon {
    transform: scale(1.1) rotate(5deg);
    border-color: #d4af37;
    color: #fff;
    background: #d4af37;
}

/* Fix visibility on black background for icon */
.awItem:hover .awIcon svg {
    stroke: #000;
    /* Contrast when icon bg is gold */
}

.awYear {
    font-size: 13px;
    font-weight: 800;
    color: #d4af37;
    /* Gold Text */
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 14px;
    border-radius: 99px;
    letter-spacing: 0.1em;
    border: none;
}

.awTitle {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    /* White title for readability */
    line-height: 1.4;
    min-height: 56px;
    text-align: center;
    margin-bottom: 5px;
}

.awBadge {
    font-size: 15px;
    color: #ccc;
    font-weight: 500;
}

.awSub {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    width: 100%;
    text-align: center;
}

/* ======================== *
 *       AWARDS (LIGHT)     *
 * ======================== */
.awards {
    padding: 120px 0;
    background: #fbfbfd;
    /* Light Gray Background */
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    color: #111;
}

/* Remove Dark Glow */
.awards::before {
    display: none;
}

.awSectionTitle {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #111;
    /* Clean Black Title */
    background: none;
    -webkit-text-fill-color: initial;
    animation: none;
}

.awGrid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.awItem {
    flex: 1;
    min-width: 300px;
    background: #fff;
    /* White Card */
    border: 1px solid #eee;
    border-radius: 32px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.awItem:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    /* Soft Shadow */
    border-color: #ddd;
}

/* Laurel Decoration */
.awIcon {
    position: relative;
    /* For pseudo positioning */
    width: 80px;
    height: 80px;
    background: #f5f5f7;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    color: #111;
    box-shadow: none;
    transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
    z-index: 1;
}

.awIcon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    /* Big laurel */
    height: 200px;
    background-image: url('./assets/images/laurel.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    /* Subtle watermark look initially */
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: multiply;
    transition: opacity 0.3s ease, transform 0.3s ease;
    mask-image: radial-gradient(closest-side, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(closest-side, black 60%, transparent 100%);
}

.awItem:hover .awIcon::before {
    opacity: 0.8;
    /* Make it more visible on hover */
    transform: translate(-50%, -50%) scale(1.1);
}

.awItem:hover .awIcon {
    /* Existing hover styles */
    transform: scale(1.05);
    /* Slight scale for icon itself */
    background: #111;
    color: #fff;
    border-color: #111;
}

/* Icon visibility fix */
.awItem:hover .awIcon svg {
    stroke: currentColor;
}

.awYear {
    font-size: 13px;
    font-weight: 700;
    color: #888;
    background: #f0f0f0;
    padding: 6px 14px;
    border-radius: 99px;
    letter-spacing: 0.05em;
    border: none;
}

.awTitle {
    font-size: 24px;
    /* Larger */
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    min-height: auto;
    /* Allow flexible height */
    text-align: center;
    margin-bottom: 8px;
    margin-top: 10px;
}

.awDesc {
    font-size: 16px;
    color: #666;
    /* Secondary Gray */
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 20px;
}

.awBadge {
    display: none;
    /* Remove old class if lingering */
}

.awSub {
    font-size: 13px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 20px;
    width: 100%;
    text-align: center;
}

/* ======================== *
 *       JOSUN SERIES       *
 * ======================== */
.josunHeritageGraphic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 60px 0;
    text-align: left;
    width: 100%;
}

.jh-card {
    background: #fbfbfd;
    border: 1px solid #eee;
    padding: 32px;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.jh-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #111;
}

.jh-card.accent {
    background: #111;
    color: #fff;
    border: none;
}

.jh-card.accent:hover {
    background: #000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.jh-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 16px;
}

.jh-head {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.jh-sub {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.jh-stat {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.03em;
    background: linear-gradient(to bottom, #fff, #999);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jh-stat-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    opacity: 0.8;
}

.jh-text {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

.jh-footer-text {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 80px;
}

@media (max-width: 900px) {
    .josunHeritageGraphic {
        grid-template-columns: 1fr;
    }

    .jh-stat {
        font-size: 48px;
    }
}



/* ======================== *
 *       PARTNERS           *
 * ======================== */
.partners {
    padding: 120px 0;
    background: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ptTitle {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
    letter-spacing: -0.02em;
}

.ptDesc {
    font-size: 18px;
    color: #666;
    margin-bottom: 80px;
    line-height: 1.6;
}

/* Partners Marquee */
.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

/* Pause on hover optional
.track:hover {
    animation-play-state: paused;
}
*/

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }

    /* 4 sets, move 1 set width */
}

.ptItem {
    flex: 0 0 auto;
    /* Don't shrink */
    width: 240px;
    height: 140px;
    background: #fbfbfd;
    border: 1px solid #eee;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 900;
    color: #ccc;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: default;
}

.ptItem:hover {
    color: #111;
    border-color: #111;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

/* ======================== *
 *     BONUS SECTION        *
 * ======================== */
.bonus-wrap {
    display: grid;
    grid-template-columns: 40% 55%;
    align-items: start;
    gap: 5%;
}

.bonus-text {
    position: sticky;
    top: 120px;
}

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

@media (max-width: 900px) {
    .bonus-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bonus-text {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }

    .bonus-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bonus-cards {
        grid-template-columns: 1fr;
    }
}

/* ======================== *
 *       GLOBAL STATS       *
 * ======================== */
.globalStats {
    padding: 100px 0;
    background: #000;
    color: #fff;
    border-top: 1px solid #222;
    position: relative;
    z-index: 10;
    /* Boost z-index */
    opacity: 1;
    visibility: visible;
}

.gsGrid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.gsItem {
    text-align: center;
}

.gsValue {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    /* Fallback */
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 10px;
}

.gsLabel {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gsDivider {
    width: 1px;
    height: 60px;
    background: #333;
}

@media (max-width: 768px) {
    .gsDivider {
        display: none;
    }
}

/* ===============================
   PLATINUM BUNDLE V3 (Final Polish)
   =============================== */

.inst-category {
    margin-bottom: 80px;
    /* Reduced margin since we use padding now */
    padding: 60px 40px;
    /* Internal spacing */
    border-radius: 32px;
    /* Soft rounded corners */
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

/* Zebra Striping: Add background to every even category (Woodwinds) */
.inst-category:nth-of-type(even) {
    background-color: #fafafa;
    /* Very subtle gray */
    box-shadow: 0 0 0 1px rgba(0, 0, 10, 0.03);
    /* Extremely subtle border */
}

/* Hover Effect for Categories (Optional) */
/* .inst-category:hover {
    background-color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
} */

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

/* Header Typography */
.inst-category .cat-header {
    margin-bottom: 50px;
    text-align: center;
}

.cat-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    /* Use Serif for elegance */
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
    letter-spacing: -0.02em;
}

.cat-desc {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Visual Image - Wide & Elegant (Ratio Preserved) */
.inst-visual {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    /* Aspect Ratio Hack (16:9) -> Height auto-adjusts based on width */
    height: 0;
    padding-bottom: 60%;
    /* Slightly wider than 16:9 for cinematic feel */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    background: #080808;
    /* Dark cinematic background */
}

.inst-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensure NO cropping */
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.inst-visual:hover img {
    transform: scale(1.02);
    /* Subtle zoom */
}

/* 3-Column Grid for Lists */
.inst-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    /* Wider gap */
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.inst-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Improved List Item Visibility */
.inst-list li {
    font-size: 16px;
    /* Slightly larger base text */
    color: #444;
    /* Darker for better contrast */
    padding: 28px 24px;
    /* More padding, added horizontal padding */
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    /* Slightly stronger separator */
    line-height: 1.75;
    /* Relaxed reading experience */
    transition: all 0.2s ease;
    border-radius: 12px;
    /* Rounded corners for hover state */
    margin-bottom: 8px;
    /* Spacing between items */
}

/* Hover Effect: Clear visual cue */
.inst-list li:hover {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    /* Soft lift effect */
    transform: translateY(-2px);
    /* Slight lift */
    border-color: transparent;
}

/* Woodwinds Category (Gray Background) Hover Fix */
.inst-category:nth-of-type(even) .inst-list li:hover {
    background-color: #fff;
    /* Keep hover white even on gray bg */
}

/* Instrument Title Styling */
.inst-list li strong {
    color: #000;
    /* Deepest black */
    font-weight: 800;
    display: block;
    font-size: 21px;
    /* Larger Title */
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
    letter-spacing: -0.01em;
}

/* Description Text Styling */
.inst-desc {
    display: block;
    font-size: 15px;
    /* Readable size */
    color: #4a4a4a;
    /* High contrast gray */
    line-height: 1.7;
    /* Good breathing room */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
    .inst-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .inst-visual {
        height: 260px;
        border-radius: 16px;
        margin-bottom: 40px;
    }

    .cat-title {
        font-size: 36px;
    }
}

/* ===============================
   GALLERY SLIDER (FADE EFFECT)
   =============================== */

.inst-visual {
    position: relative;
    /* 기존 높이 등은 유지 */
}

/* 슬라이더 이미지 공통 설정 */
.inst-visual img.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeSlide 12s infinite;
    /* 3장 기준 12초 (4초씩) */
}

/* 3장 슬라이드 타이밍 */
.inst-visual img.slide-img:nth-child(1) {
    animation-delay: 0s;
}

.inst-visual img.slide-img:nth-child(2) {
    animation-delay: 4s;
}

.inst-visual img.slide-img:nth-child(3) {
    animation-delay: 8s;
}

.inst-visual img.slide-img:nth-child(4) {
    animation-delay: 12s;
    /* 4장일 경우 */
}

/* 애니메이션 키프레임 */
@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }

    5% {
        opacity: 1;
        transform: scale(1);
    }

    /* 등장 */
    33% {
        opacity: 1;
        transform: scale(1);
    }

    /* 유지 */
    38% {
        opacity: 0;
    }

    /* 퇴장 */
    100% {
        opacity: 0;
    }
}

/* Percussion은 4장이므로 별도 애니메이션 정의 (선택사항) */
.inst-visual.perc-visual img.slide-img {
    animation-duration: 16s;
    /* 4장 x 4초 = 16초 */
}

.inst-visual.perc-visual img.slide-img:nth-child(1) {
    animation-delay: 0s;
}

.inst-visual.perc-visual img.slide-img:nth-child(2) {
    animation-delay: 4s;
}

.inst-visual.perc-visual img.slide-img:nth-child(3) {
    animation-delay: 8s;
}

.inst-visual.perc-visual img.slide-img:nth-child(4) {
    animation-delay: 12s;
}

/* ===============================
   DARK THEME FEATURES SECTION
   =============================== */

.feat-card {
    background: rgba(255, 255, 255, 0.03);
    /* Ultra transparent dark */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    /* Glass effect */
}

/* Hover Effect: Glow & Lift */
.feat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Icon Styling */
.feat-icon {
    font-size: 48px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.2));
}

.feat-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    font-family: "Playfair Display", serif;
}

.feat-desc {
    font-size: 16px;
    color: #aaa;
    line-height: 1.7;
}

/* Responsive Grid */
@media (max-width: 900px) {
    .pf-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* ======================== *
 *    SUPPORT EXPANSION     *
 * ======================== */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    text-align: left;
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}

.download-card {
    background: #f9f9f9;
    padding: 24px;
    border-radius: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.download-card:hover {
    background: #fff;
    border-color: #ddd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.faq-section {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: left;
}

.faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-item summary {
    padding: 24px 0;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: #555;
}

.faq-content {
    padding-bottom: 24px;
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

/* Audio Demos */
.audioDemos {
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.demo-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.demo-track {
    position: relative;
    width: 100%;
}

.dt-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #111;
    flex-shrink: 0;
}

.play-btn:hover {
    border-color: #111;
    background: #111;
    color: #fff;
}

.play-btn svg {
    fill: currentColor;
    stroke: none;
    width: 16px;
    height: 16px;
}

.dt-info {
    flex-grow: 1;
    padding: 0 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    font-family: 'Outfit', sans-serif;
}

.dt-time {
    font-size: 0.85rem;
    color: #999;
    font-family: monospace;
    min-width: 60px;
    text-align: right;
}

.dt-wave {
    width: 100%;
    height: 60px;
    display: block;
    cursor: pointer;
    border-radius: 4px;
    /* Optional aesthetics */
}

/* MIDI Pack Styles */
.midi-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.midi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: #444;
}

.mc-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #000;
}

.mc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.midi-card:hover .mc-img img {
    transform: scale(1.05);
}

.mc-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mc-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 700;
}

.mc-desc {
    color: #888;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.mc-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.mc-price {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.btnSmall {
    display: inline-block;
    padding: 8px 20px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.btnSmall:hover {
    background: #ddd;
    transform: scale(1.05);
}

.btnWhite:hover {
    transform: scale(1.03);
    background: #f0f0f0;
}

/* Gallery Section */
.gallery-section {
    margin: 80px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.gallery-track.scroll-left {
    animation: scrollGalleryLeft 40s linear infinite;
}

.gallery-track.scroll-right {
    animation: scrollGalleryRight 40s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    width: 350px;
    /* Wider for cinematic feel */
    height: 220px;
    /* Reduced height */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

@keyframes scrollGalleryLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollGalleryRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}