/*  */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #003087;
    --navy-dark: #00236b;
    --navy-mid: #0a3d9e;
    --navy-light: #0a3d9e;

    --green: #3a8a3a;
    --green-dark: #2d6e2d;
    --green-cta: #4caf50;
    --green-cta-h: #388e3c;
    --green-light: #e8f5e9;

    --white: #ffffff;
    --off-white: #f5f8ff;
    --border: #dce3ef;

    --text: #1a1a2e;
    --muted: #5a6a80;
    --success: #2e7d32;

    --font: "Poppins", "Segoe UI", system-ui, sans-serif;

    /* mapped */
    --ink: var(--text);
    --deep: var(--off-white);
    --ocean: var(--navy);
    --blue: var(--navy-mid);
    --sky: var(--navy-light);
    --teal: var(--green);

    --gold: #d4a017;
    --gold-lt: #f5c842;

    --snow: #f8fbff;
    --mist: #edf3fb;
    --slate: var(--muted);

    --shadow: 0 8px 30px rgba(0, 48, 135, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

 html {
    scroll-behavior: smooth;
} 

body #kangen-page {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
        scroll-behavior: smooth;
}

/* ::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--snow);
}

::-webkit-scrollbar-thumb {
    background: var(--sky);
    border-radius: 10px;
} */
.sectionHeading {
    margin-bottom: 42px;
}

.sectionHeading span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--navy-mid);
    margin-bottom: 14px;
}

.sectionHeading h2 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(26px, 2.8vw, 40px);
    line-height: 1.05;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.sectionHeading p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 34px;
}

.sectionMainHeading {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(26px, 2.8vw, 40px);
    line-height: 1.05;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -1px;
    margin-bottom: 14px;
}

#kangen-page .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 56px;
}

#kangen-page .why-intro {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

#kangen-page .kangen-models-quick {
    margin-bottom: 32px;
}

#kangen-page .kangen-models-quick h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

#kangen-page .model-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

#kangen-page .model-line:last-child {
    border: none;
}

#kangen-page .model-line .mn {
    font-weight: 600;
    color: var(--ink);
}

#kangen-page .model-line .mt {
    font-size: 11px;
    color: var(--muted);
    margin-left: 6px;
    font-weight: 400;
}

#kangen-page .model-line .mp {
    font-weight: 700;
    color: var(--navy);
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 17px;
}

#kangen-page .chanson-callout {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: 18px;
    padding: 28px 32px;
    border-left: 4px solid var(--navy-light);
}

#kangen-page .chanson-callout h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

#kangen-page .chanson-callout p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

#kangen-page .chanson-callout strong {
    color: var(--white);
}

#kangen-page .why-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#kangen-page .reason-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 26px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all .22s;
    position: relative;
    overflow: hidden;
}

#kangen-page .reason-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

#kangen-page .reason-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 48, 135, 0.1);
    border-color: rgba(0, 48, 135, 0.2);
}

#kangen-page .reason-card:hover::before {
    transform: scaleX(1);
}

#kangen-page .reason-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(0, 48, 135, 0.1), rgba(58, 138, 58, 0.07));
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

#kangen-page .reason-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 6px;
}

#kangen-page .reason-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

#kangen-page .reason-stat {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-top: 4px;
}


/* ══ S1: HERO ══ */
#kangen-page #hero {
    min-height: 88vh;
    background: var(--deep);
    background:
        linear-gradient(135deg, #f8fbff 0%, #eef6ff 45%, #ffffff 100%);

}

#kangen-page .newLandingHero {
    display: grid;
    grid-template-columns: 65fr 35fr;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#kangen-page .hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 48, 135, 0.1);
    pointer-events: none;
}

#kangen-page .ring-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

#kangen-page .ring-2 {
    width: 400px;
    height: 400px;
    top: -80px;
    right: -80px;
    border-color: rgba(0, 48, 135, 0.06);
}

#kangen-page .ring-3 {
    width: 200px;
    height: 200px;
    bottom: 60px;
    left: 80px;
    border-color: rgba(0, 48, 135, 0.08);
}

#kangen-page .hero-left {
    padding: 80px 20px 80px 0px;
    position: relative;
    z-index: 2;
}

#kangen-page .hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 28px;
    letter-spacing: 0.06em;
}

#kangen-page .hero-breadcrumb .bc-active {
    color: var(--navy);
    font-weight: 600;
}

#kangen-page .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 48, 135, 0.08);
    border: 1px solid rgba(0, 48, 135, 0.2);
    color: var(--navy);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

#kangen-page .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--navy);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.2
    }
}

body #kangen-page .newLandingHero h1 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 22px;
}

#kangen-page .newLandingHero h1 .accent {
    color: var(--navy-mid);
    font-style: italic;
}

#kangen-page .newLandingHero h1 .gold {
    color: var(--gold-lt);
}

#kangen-page .hero-desc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

#kangen-page .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

#kangen-page .btn-hp {
    background: var(--navy);
    color: white;
    padding: 15px 34px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: all .22s;
    box-shadow: 0 5px 24px rgba(0, 48, 135, 0.25);
}

#kangen-page .btn-hp:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}

#kangen-page .btn-hs {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--navy);
    padding: 15px 34px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: all .22s;
}

#kangen-page .btn-hs:hover {
    border-color: var(--navy);
    color: var(--navy-dark);
    background: var(--off-white);
}

#kangen-page .hero-kpis {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

#kangen-page .kpi {
    display: flex;
    flex-direction: column;
}

#kangen-page .kpi-num {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 30px;
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1;
}

#kangen-page .kpi-num .unit {
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    color: var(--navy);
    font-weight: 600;
}

#kangen-page .kpi-label {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px;
}

#kangen-page .hero-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
}



/* ===== HERO RIGHT ===== */

#kangen-page .hero-right {
    padding: 18px 0px 24px;
    position: relative;
    /* z-index: 2; */
}

/* MAIN CARD */

#kangen-page .hero-img-frame {
    position: relative;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 20px;

    padding: 18px 18px 20px;

    overflow: hidden;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 40px rgba(0, 48, 135, 0.1);
}

/* TOP PICK */

#kangen-page .hero-right .hero-img-frame::after {
    content: '⭐ Top Pick';

    position: absolute;
    top: 18px;
    right: 18px;

    background: rgba(0, 48, 135, 0.08);
    border: 1px solid rgba(0, 48, 135, 0.18);

    color: var(--navy);

    font-size: 10px;
    font-weight: 700;

    padding: 5px 10px;

    border-radius: 7px;

    letter-spacing: 0.03em;
}

/* REMOVE OLD VISUAL */

#kangen-page .hero-right .machine-visual img {
    display: block;
    width: auto;
    max-height: 200px;
    margin: auto;
    padding-block: 20px;
    object-fit: contain;
}

/* TITLE */

#kangen-page .hero-right .machine-label {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--navy-dark);

    margin-bottom: 4px;
}

/* SUB */

#kangen-page .hero-right .machine-sub {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 14px;
}

/* CHIPS */

#kangen-page .hero-right .hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;

    margin-bottom: 16px;
}

#kangen-page .hero-right .chip {
    background: var(--snow);
    border: 1px solid var(--border);

    color: var(--navy);

    padding: 5px 10px;

    border-radius: 6px;

    font-size: 10px;
    font-weight: 600;

    line-height: 1;
}

#kangen-page .hero-right .chip.active {
    background: rgba(0, 48, 135, 0.08);
    border-color: rgba(0, 48, 135, 0.2);
    color: var(--navy-mid);
}

/* GRID */

#kangen-page .hero-right .hero-price-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

/* BOX */

#kangen-page .price-card-mini {
    position: relative;

    background: var(--snow);

    border: 1px solid var(--border);

    border-radius: 12px;

    padding: 14px 14px 12px;

    overflow: hidden;

    transition: .25s ease;
}

#kangen-page .hero-right .price-card-mini:hover {
    transform: translateY(-2px);

    border-color: rgba(0, 48, 135, 0.2);

    box-shadow:
        0 8px 24px rgba(0, 48, 135, 0.1);
}

/* BLUE CARDS */

#kangen-page .hero-right .price-card-mini.gold-l {
    background: var(--off-white);

    border-color: rgba(0, 48, 135, 0.15);
}

/* LABEL */

#kangen-page .hero-right .pcm-label {
    font-size: 10px;
    font-weight: 500;

    color: var(--muted);

    margin-bottom: 8px;
}

/* VALUE */

#kangen-page .hero-right .pcm-val {
    font-size: 17px;
    line-height: 1.1;
    font-weight: 800;

    color: var(--navy-dark);

    margin-bottom: 4px;
}

/* BLUE VALUE */

#kangen-page .hero-right .gold-l .pcm-val {
    color: var(--navy);
}

/* UNIT */

#kangen-page .hero-right .pcm-unit {
    font-size: 11px;
    font-weight: 600;
    color: var(--navy-mid);
}

/* SUBTEXT */

#kangen-page .hero-right .pcm-sub {
    font-size: 11px;
    line-height: 1.4;

    color: var(--muted);
}

/* BLUE SUBTEXT */

#kangen-page .hero-right .gold-l .pcm-sub {
    color: var(--navy-mid);
}

/* RESPONSIVE */

@media(max-width:1024px) {

    #kangen-page .hero-right {
        padding: 18px;
    }

    #kangen-page .hero-right .hero-price-cards {
        grid-template-columns: 1fr;
    }

    #kangen-page .hero-numbers {
        grid-template-columns: 1fr 1fr;
    }

    /* #kangen-page .hero-numbers {
        grid-template-columns: 1fr 1fr;
    } */
}

@media(max-width:768px) {


    #kangen-page .hero-numbers {
        grid-template-columns: 1fr;
    }

    #kangen-page .hero-right .hero-img-frame {
        padding: 18px 16px;
    }

    #kangen-page .hero-right .machine-label {
        font-size: 18px;
    }

    #kangen-page .hero-right .hero-img-frame::after {
        position: static;
        display: inline-flex;
        margin-bottom: 12px;
    }

    #kangen-page .hero-right .hero-chips {
        gap: 5px;
    }

    #kangen-page .hero-right .chip {
        font-size: 9px;
        padding: 5px 8px;
    }
}

/* Animate hero */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

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

#kangen-page .hero-left>* {
    animation: fadeUp 0.65s ease both;
}

#kangen-page .hero-breadcrumb {
    animation-delay: .05s
}

#kangen-page .hero-badge {
    animation-delay: .15s
}

#kangen-page .newLandingHero h1 {
    animation-delay: .25s
}

#kangen-page .hero-desc {
    animation-delay: .35s
}

#kangen-page .hero-actions {
    animation-delay: .45s
}

#kangen-page .hero-kpis {
    animation-delay: .55s
}

/* ══ S2: CERTIFICATIONS ══ */
#kangen-page .certs-section {
    background: var(--off-white);
    padding: 72px 72px;
    position: relative;
    overflow: hidden;
}

#kangen-page .certs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 48, 135, 0.2), transparent);
}

#kangen-page .certs-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 48, 135, 0.15), transparent);
}

#kangen-page .certs-inner {
    text-align: center;
}

#kangen-page .sec-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--navy-mid);
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#kangen-page .sec-label::before,
#kangen-page .sec-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(0, 48, 135, 0.2);
}

#kangen-page .sec-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

#kangen-page .sec-title em {
    color: var(--navy-mid);
    font-style: italic;
}

#kangen-page .sec-desc {
    font-size: 16px;
    color: var(--slate);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

#kangen-page .certs-heading {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 38px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

#kangen-page .certs-heading em {
    color: var(--navy-mid);
    font-style: italic;
}

#kangen-page .certs-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 44px;
}



#kangen-page .certs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

#kangen-page .cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 24px;
    min-width: 130px;
    transition: all .22s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

#kangen-page .cert-badge:hover {
    border-color: rgba(0, 48, 135, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 48, 135, 0.1);
}

#kangen-page .cert-icon-wrap {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 48, 135, 0.1), rgba(58, 138, 58, 0.07));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

#kangen-page .cert-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy-dark);
    text-align: center;
    line-height: 1.3;
}

#kangen-page .cert-body {
    font-size: 10px;
    color: var(--muted);
    text-align: center;
    margin-top: 2px;
}

#kangen-page .trust-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

#kangen-page .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

#kangen-page .trust-icon {
    width: 34px;
    height: 34px;
    background: rgba(0, 48, 135, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

#kangen-page .trust-text {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

#kangen-page .trust-text strong {
    color: var(--navy-dark);
    display: block;
    font-size: 14px;
}

#kangen-page .products-section {
    background: var(--white);
    padding: 96px 72px;
}

#kangen-page .sec-header {
    text-align: center;
    margin-bottom: 56px;
}

#kangen-page .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

/* ── Product Carousel ── */
#kangen-page .prod-carousel-wrap {
    position: relative;
    padding: 0 56px;
}

#kangen-page .prod-carousel-viewport {
    overflow: hidden;
    width: 100%;
}

#kangen-page .prod-carousel-viewport .products-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    margin-bottom: 0;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

#kangen-page .prod-carousel-viewport .products-grid .prod-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}

#kangen-page .prod-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--navy);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 48, 135, 0.13);
    transition: all 0.2s;
    z-index: 10;
    padding: 0;
}

#kangen-page .prod-carousel-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

#kangen-page .prod-carousel-btn:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

#kangen-page .prod-carousel-prev {
    left: 0;
}

#kangen-page .prod-carousel-next {
    right: 0;
}

#kangen-page .products-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
    margin: 0 auto;
}

#kangen-page .prod-card {
    background: var(--white);
    border-radius: 22px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all .25s;
    position: relative;
    display: flex;
    flex-direction: column;
}

#kangen-page .prod-card:hover {
    box-shadow: 0 12px 50px rgba(0, 48, 135, 0.12);
    transform: translateY(-5px);
    border-color: rgba(0, 48, 135, 0.2);
}

#kangen-page .prod-tag-top {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--navy);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
}

#kangen-page .prod-tag-top.gold {
    background: linear-gradient(90deg, var(--gold), var(--gold-lt));
    color: var(--ink);
}

#kangen-page .prod-img-wrap {
    height: 190px;
    background: linear-gradient(135deg, var(--snow), var(--off-white));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#kangen-page .prod-img-wrap::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(0, 48, 135, 0.06);
}

#kangen-page .prod-emoji img {
    width: auto;
    max-height: 140px;
    object-fit: contain;

}

#kangen-page .prod-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#kangen-page .prod-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    line-height: 1.3;
}

#kangen-page .prod-series {
    font-size: 12px;
    color: var(--navy-mid);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

#kangen-page .prod-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}

#kangen-page .prod-specs {
    margin-bottom: 0;
}

#kangen-page .spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

#kangen-page .spec-row:last-child {
    border: none;
}

#kangen-page .spec-row .sl {
    color: var(--muted);
}

#kangen-page .spec-row .sv {
    font-weight: 700;
    color: var(--ink);
}

#kangen-page .prod-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--snow);
    border-top: 1px solid var(--border);
}

#kangen-page .prod-old-price {
    font-size: 12px;
    color: var(--muted);
    text-decoration: line-through;
}

#kangen-page .prod-price {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 26px;
    font-weight: 800;
    color: var(--ocean);
    line-height: 1;
}

#kangen-page .prod-btn {
    background: var(--ocean);
    color: white;
    padding: 10px 20px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}

#kangen-page .prod-btn:hover {
    background: var(--navy-dark);
}

#kangen-page .why-section {
    background: var(--white);
    padding: 96px 72px;
}

#kangen-page .why-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 56px;
}

#kangen-page .why-grid .photoAndDetails {
    display: flex;
    gap: 0;
    align-items: stretch;
    margin-top: 32px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 48, 135, 0.10);
}

#kangen-page .why-grid .photoAndDetails .imgBox {
    flex: 0 0 38%;
    background: var(--white);
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border);
}

#kangen-page .why-grid .photoAndDetails .imgBox img {
    display: block;
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    border-radius: 10px;
}

#kangen-page .why-grid .photoAndDetails .chanson-callout {
    flex: 1;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 28px 28px;
    border-left: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0;
}

#kangen-page .why-intro {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

#kangen-page .kangen-models-quick {
    margin-bottom: 32px;
}

#kangen-page .kangen-models-quick h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

#kangen-page .model-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

#kangen-page .model-line:last-child {
    border: none;
}

#kangen-page .model-line .mn {
    font-weight: 600;
    color: var(--ink);
}

#kangen-page .model-line .mt {
    font-size: 11px;
    color: var(--muted);
    margin-left: 6px;
    font-weight: 400;
}

#kangen-page .model-line .mp {
    font-weight: 700;
    color: var(--navy);
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 17px;
}

#kangen-page .chanson-callout {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: 18px;
    padding: 28px 32px;
    border-left: 4px solid var(--navy-light);
}

#kangen-page .chanson-callout h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

#kangen-page .chanson-callout p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

#kangen-page .chanson-callout strong {
    color: var(--white);
}

#kangen-page .why-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#kangen-page .reason-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 26px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all .22s;
    position: relative;
    overflow: hidden;
}

#kangen-page .reason-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

#kangen-page .reason-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 48, 135, 0.1);
    border-color: rgba(0, 48, 135, 0.2);
}

#kangen-page .reason-card:hover::before {
    transform: scaleX(1);
}

#kangen-page .reason-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(0, 48, 135, 0.1), rgba(58, 138, 58, 0.07));
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

#kangen-page .reason-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 6px;
}

#kangen-page .reason-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

#kangen-page .reason-stat {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-top: 4px;
}

/* ══ S5: HEALTH BENEFITS ══ */
#kangen-page .health-section {
    background: var(--snow);
    background-image: radial-gradient(ellipse 60% 60% at 80% 30%, rgba(0, 48, 135, 0.05) 0%, transparent 55%), radial-gradient(ellipse 40% 40% at 10% 70%, rgba(58, 138, 58, 0.04) 0%, transparent 50%);
    padding: 96px 72px;
    position: relative;
    overflow: hidden;
}

#kangen-page .health-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 48, 135, 0.2), transparent);
}

#kangen-page .health-section .sec-title {
    color: var(--navy-dark);
}

#kangen-page .health-section .sec-desc {
    color: var(--muted);
}

#kangen-page .health-section .sec-label {
    color: var(--navy-mid);
}

#kangen-page .health-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

#kangen-page .health-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 26px;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

#kangen-page .health-card:hover {
    border-color: rgba(0, 48, 135, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 48, 135, 0.1);
}

#kangen-page .health-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 48, 135, 0.1), rgba(58, 138, 58, 0.07));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

#kangen-page .health-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

#kangen-page .health-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

#kangen-page .health-tag {
    display: inline-block;
    margin-top: 12px;
    background: rgba(0, 48, 135, 0.07);
    border: 1px solid rgba(0, 48, 135, 0.15);
    color: var(--navy-mid);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.06em;
}

/* ══ S6: FAQ ══ */
.faq-section {
    background: var(--white);
    padding: 96px 72px;
}

.faq-layout {
    margin-top: 56px;
}

.faq-sticky {
    position: sticky;
    top: 90px;
}

.faq-sticky h3 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 30px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 14px;
}

.faq-sticky p {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 28px;
}

.faq-contact {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: 18px;
    padding: 26px 28px;
    margin-top: 28px;
}

.faq-contact h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.faq-contact p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 18px;
}

.btn-faq-wa {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--green-cta);
    color: white;
    padding: 11px 22px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
    width: fit-content;
}

.btn-faq-wa:hover {
    background: var(--green-cta-h);
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow .2s;
}

.faq-item.open {
    box-shadow: 0 4px 20px rgba(0, 48, 135, 0.08);
    border-color: rgba(0, 48, 135, 0.2);
}

.faq-q {
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    user-select: none;
    transition: color .2s;
}

.faq-item.open .faq-q {
    color: var(--navy);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: var(--snow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--slate);
    transition: all .25s;
    font-weight: 300;
    line-height: 1;
}

.faq-item.open .faq-toggle {
    background: rgba(0, 48, 135, 0.08);
    color: var(--navy);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    padding: 0 24px;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 24px 22px;
}

/* ══ S7: CTA ══ */
#kangen-page .cta-section {
    background: linear-gradient(160deg, #020c1f 0%, #0d1f38 55%, #0a1628 100%);
    padding: 110px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}


#kangen-page .cta-section::before {
    width: 700px;
    height: 700px;
}

#kangen-page .cta-section::after {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 255, 255, 0.04);
}

#kangen-page .cta-label {

    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold-lt);
    padding: 7px 20px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

/* Scoped CTA overrides for dark bg */
#kangen-page .cta-section .sec-label {
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold-lt);
    width: max-content;
    border-radius: 30px;
    margin: 0px auto 28px;
    padding-inline: 14px;


}

#kangen-page .cta-section .sec-label::before,
#kangen-page .cta-section .sec-label::after {
    content: "";
    display: none;

}

#kangen-page .cta-section .sec-title {
    color: var(--white);
}

#kangen-page .cta-section .sec-title em {
    color: #38bdf8;
    font-style: normal;
    font-weight: 900;
}

#kangen-page .cta-section .sec-desc {
    color: rgba(255, 255, 255, 0.65);
}

#kangen-page .cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 50px);
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 900;
    letter-spacing: -.8px;
}

#kangen-page .cta-section h2 em {
    color: #38bdf8;
    font-style: normal;
    font-weight: 900;
}

#kangen-page .cta-section>p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 2;
}

#kangen-page .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

#kangen-page .btn-cta-p {
    background: #0ea5e9;
    color: white;
    padding: 16px 38px;
    border-radius: 11px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 28px rgba(14, 165, 233, 0.35);
    transition: all .22s;
}

#kangen-page .btn-cta-p:hover {
    background: #0284c7;
    transform: translateY(-3px);
    color: white;
}

/* Email Us button scoped to CTA dark bg */
#kangen-page .cta-section .btn-hs {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 16px 38px;
    border-radius: 11px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .22s;
}

#kangen-page .cta-section .btn-hs:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-3px);
    color: white;
}

#kangen-page .btn-cta-w {
    background: var(--green-cta);
    color: white;
    padding: 16px 38px;
    border-radius: 11px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 28px rgba(76, 175, 80, 0.35);
    transition: all .22s;
}

#kangen-page .btn-cta-w:hover {
    background: var(--green-cta-h);
    transform: translateY(-3px);
}


#kangen-page .btn-cta-o:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

#kangen-page .cta-bottom {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

#kangen-page .cta-assurance {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 26px 16px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 140px;
}

#kangen-page .cta-assurance:last-child {
    border-right: none;
}

/* Tablet */
@media (max-width: 992px) {
    #kangen-page .cta-bottom {
        grid-template-columns: repeat(3, 1fr);
    }

    #kangen-page .cta-assurance:nth-child(3) {
        border-right: none;
    }

    #kangen-page .cta-assurance:nth-child(-n+3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Mobile */
@media (max-width: 576px) {
    #kangen-page .hero-numbers {
        grid-template-columns: 1fr;
    }

    #kangen-page .cta-bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    #kangen-page .cta-assurance {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        min-height: auto;
    }

    #kangen-page .cta-assurance:nth-child(even) {
        border-right: none;
    }

    #kangen-page .cta-assurance:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    #kangen-page .cta-assurance:last-child,
    #kangen-page .cta-assurance:nth-last-child(2):nth-child(odd) {
        border-bottom: none;
    }
}

/* #kangen-page .cta-assurance {

    border: 1px solid rgba(255, 255, 255, 0.06);
} */

#kangen-page .assurance-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

#kangen-page .assurance-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

#kangen-page .assurance-text strong {
    color: var(--white);
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
}


/* Scroll reveal */
/* .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
} */
/* RESPONSIVE */

@media(max-width:1024px) {
    #kangen-page .newLandingHero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    #kangen-page .hero-right {
        display: none;
    }

    #kangen-page .hero-left {
        padding: 70px 40px;
    }

    #kangen-page .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #kangen-page .prod-carousel-viewport .products-grid .prod-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    #kangen-page .health-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #kangen-page .why-grid {
        grid-template-columns: 1fr;
    }

    #kangen-page .faq-layout {
        grid-template-columns: 1fr;
    }

    #kangen-page .faq-sticky {
        position: static;
    }
}

@media(max-width:768px) {
    #kangen-page .topbar {
        display: none;
    }

    #kangen-page nav {
        padding: 0 20px;
    }

    #kangen-page .nav-links {
        display: none;
    }

    #kangen-page .certs-section,
    #kangen-page .products-section,
    #kangen-page .why-section,
    #kangen-page .health-section,
    #kangen-page .faq-section,
    #kangen-page .cta-section {
        padding: 60px 0px;
    }

    #kangen-page .hero-left {
        padding: 60px 0px;
    }

    #kangen-page .products-grid,
    #kangen-page .products-grid-2 {
        grid-template-columns: 1fr;
        max-width: none;
    }

    #kangen-page .prod-carousel-wrap {
        padding: 0 10px;
    }

    #kangen-page .prod-carousel-viewport .products-grid .prod-card {
        flex: 0 0 100%;
    }

    #kangen-page .health-grid {
        grid-template-columns: 1fr;
    }

    #kangen-page .why-grid .photoAndDetails {
        flex-direction: column;
    }

    #kangen-page .why-grid .photoAndDetails .imgBox {
        flex: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 20px;
    }

    #kangen-page .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    #kangen-page footer {
        padding: 30px 24px;
        flex-direction: column;
        text-align: center;
    }
}


/* ===== KANGEN TECHNOLOGY SECTION ===== */

#kangen-page .kangen-tech-section {
    padding: 90px 72px;
    background: var(--snow);
}

#kangen-page .kts-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 54px;
    align-items: start;
}





#kangen-page .kts-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

#kangen-page .kts-content p {
    font-size: 15px;
    line-height: 1.95;
    color: var(--muted);
}

#kangen-page .kts-content strong {
    color: var(--navy-dark);
    font-weight: 700;
}

#kangen-page .kts-bottom-box {
    margin-top: 34px;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--navy);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 4px 18px rgba(0, 48, 135, 0.06);
}

#kangen-page .kts-bottom-box div {
    font-size: 14px;
    line-height: 1.85;
    color: var(--muted);
}

#kangen-page .kts-bottom-box strong {
    color: var(--navy-dark);
}

#kangen-page .kts-bulb {
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
}

/* RIGHT */

#kangen-page .kts-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#kangen-page .kts-card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}

#kangen-page .kts-card::before {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

#kangen-page .kts-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 48, 135, 0.2);
    box-shadow: 0 10px 30px rgba(0, 48, 135, 0.1);
}

#kangen-page .kts-card:hover::before {
    transform: scaleX(1);
}

#kangen-page .kts-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg,
            rgba(0, 48, 135, 0.1),
            rgba(58, 138, 58, 0.07));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

#kangen-page .kts-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

#kangen-page .kts-card p {
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
}

/* ===== RESPONSIVE ===== */

@media(max-width:1024px) {

    #kangen-page .kts-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    #kangen-page .kts-right {
        padding-top: 0;
    }
}

@media(max-width:768px) {

    #kangen-page .kangen-tech-section {
        padding: 60px 0px;
    }

    #kangen-page .kts-left h2 {
        font-size: 38px;
        line-height: 1.12;
    }

    #kangen-page .kts-content p {
        font-size: 14px;
        line-height: 1.9;
    }

    #kangen-page .kts-bottom-box {
        flex-direction: row;
        padding: 18px;
    }

    #kangen-page .kts-card {
        padding: 18px;
        gap: 14px;
    }

    #kangen-page .kts-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 20px;
    }

    #kangen-page .kts-card h4 {
        font-size: 14px;
    }

    #kangen-page .kts-card p {
        font-size: 12.5px;
    }
}



/* ===== HOW IONIZERS WORK SECTION ===== */

#kangen-page .ionizer-process-section {
    padding: 90px 72px;
    /* background: ; */
}



#kangen-page .ips-mini {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--navy-mid);
    margin-bottom: 14px;
}



#kangen-page .ips-top p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
}

#kangen-page .ips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

#kangen-page .ips-card {
    background: var(--snow);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px 22px;
    text-align: center;
    position: relative;
    transition: all .25s ease;
    min-height: 250px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

#kangen-page .ips-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 48, 135, 0.2);
    box-shadow: 0 10px 30px rgba(0, 48, 135, 0.1);
}

#kangen-page .ips-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    font-size: 12px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;
}

#kangen-page .ips-icon {
    font-size: 28px;
    margin-bottom: 18px;
}

#kangen-page .ips-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.4;
    margin-bottom: 12px;
}

#kangen-page .ips-card p {
    font-size: 12px;
    line-height: 1.8;
    color: var(--muted);
}

#kangen-page .ips-note {
    margin-top: 20px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 20px;

    text-align: center;

    font-size: 13px;
    line-height: 1.7;
    color: var(--navy-dark);
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */

@media(max-width:1024px) {

    #kangen-page .ips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    #kangen-page .ionizer-process-section {
        padding: 60px 0px;
    }

    #kangen-page .ips-grid {
        grid-template-columns: 1fr;
    }

    #kangen-page .ips-card {
        min-height: auto;
        padding: 24px 18px;
    }

    #kangen-page .ionizer-process-section h2 {
        font-size: 38px;
        line-height: 1.15;
    }

    #kangen-page .ips-card p {
        font-size: 13px;
    }

    #kangen-page .ips-note {
        text-align: left;
        font-size: 12.5px;
    }
}


/* ===== COMPARISON SECTION ===== */

#kangen-page .comparison-section {
    padding: 90px 72px;
    background: var(--snow);
}

/* ── Comparison Visual Strip ── */
#kangen-page .comp-visual {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-top: 46px;
    margin-bottom: 32px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 48, 135, 0.10);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#kangen-page .comp-prod-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 24px 24px;
    text-align: center;
}

#kangen-page .comp-kangen-card {
    background: var(--off-white);
    border-right: 1px solid var(--border);
}

#kangen-page .comp-chanson-card {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

#kangen-page .comp-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    flex-shrink: 0;
    background: var(--white);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-size: 13px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: 0.06em;
}

#kangen-page .comp-brand-pill {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
    background: rgba(0, 48, 135, 0.1);
    color: var(--navy);
}

#kangen-page .comp-chanson-card .comp-brand-pill {
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
}

#kangen-page .comp-prod-img-frame {
    width: 150px;
    height: 165px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background-color: var(--white);
    background-repeat: no-repeat;
}

#kangen-page .comp-prod-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#kangen-page .comp-prod-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

#kangen-page .comp-chanson-card .comp-prod-name,
#kangen-page .comp-chanson-card .comp-prod-meta {
    color: var(--white);
}

#kangen-page .comp-prod-meta {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 14px;
    letter-spacing: 0.03em;
}

#kangen-page .comp-prod-price {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Cormorant Garamond', serif;
    margin-top: auto;
}

#kangen-page .comp-price-red {
    color: #c0392b;
}

#kangen-page .comp-price-green {
    color: #2ecc71;
}

#kangen-page .comp-save-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    background: rgba(46, 204, 113, 0.18);
    color: #27ae60;
    padding: 3px 10px;
    border-radius: 100px;
    vertical-align: middle;
    margin-left: 6px;
    font-family: 'Outfit', sans-serif;
}

#kangen-page .comparison-table-wrap {
    margin-top: 0;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
}

#kangen-page .comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 980px;
}

#kangen-page .comparison-table thead th {
    background: var(--off-white);
    color: var(--navy-dark);
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
}

#kangen-page .comparison-table tbody td {
    padding: 18px 22px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

#kangen-page .comparison-table tbody tr:last-child td {
    border-bottom: none;
}

#kangen-page .comparison-table tbody td:first-child {
    font-weight: 700;
    color: var(--navy-dark);
    width: 24%;
}

#kangen-page .comparison-table .highlight {
    color: var(--green-dark);
    font-weight: 600;
}

#kangen-page .table-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-left: 10px;
    padding: 4px 10px;

    background: rgba(58, 138, 58, 0.1);
    color: var(--green-dark);

    border-radius: 100px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

#kangen-page .comparison-cta {
    margin-top: 26px;

    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 18px;

    padding: 26px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

#kangen-page .comparison-cta h3 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 8px;
}

#kangen-page .comparison-cta p {
    font-size: 14px;
    color: var(--white);
    line-height: 1.7;
}

#kangen-page .comparison-btn {
    background: var(--navy);
    color: white;

    padding: 14px 24px;
    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    white-space: nowrap;

    transition: all .25s ease;
}

#kangen-page .comparison-btn:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px) {

    #kangen-page .comparison-section {
        padding: 60px 0px;
    }

    #kangen-page .comp-visual {
        flex-direction: column;
        max-width: 340px;
    }

    #kangen-page .comp-vs {
        width: 100%;
        height: 44px;
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    #kangen-page .comparison-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    #kangen-page .comparison-cta h3 {
        font-size: 26px;
    }

    #kangen-page .comparison-table tbody td,
    #kangen-page .comparison-table thead th {
        padding: 16px;
        font-size: 13px;
    }
}


/* ===== WHY CHOOSE SECTION ===== */

#kangen-page .why-choose-section {
    padding: 90px 72px;
    background: #ffffff;
}

#kangen-page .why-choose-grid {
    margin-top: 46px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

#kangen-page .wc-card {
    background: var(--snow);
    border: 1px solid var(--border);
    border-radius: 18px;

    padding: 28px 24px;

    transition: all .25s ease;
}

#kangen-page .wc-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 48, 135, 0.2);
    box-shadow: 0 10px 30px rgba(0, 48, 135, 0.1);
}

#kangen-page .wc-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: linear-gradient(135deg,
            rgba(0, 48, 135, 0.1),
            rgba(58, 138, 58, 0.07));

    font-size: 22px;

    margin-bottom: 20px;
}

#kangen-page .wc-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--navy-dark);

    margin-bottom: 14px;
}

#kangen-page .wc-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}

/* ===== RESPONSIVE ===== */

@media(max-width:1024px) {

    #kangen-page .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    #kangen-page .why-choose-section {
        padding: 60px 0px;
    }

    #kangen-page .why-choose-grid {
        grid-template-columns: 1fr;
    }

    #kangen-page .wc-card {
        padding: 24px 20px;
    }

    #kangen-page .wc-card h3 {
        font-size: 16px;
    }

    #kangen-page .wc-card p {
        font-size: 13px;
    }
}
