:root{
    --card: #ffffff;
    --stroke: rgba(15,23,42,.10);
    --shadow: 0 14px 34px rgba(15,23,42,.10);
    --blue: #0b65d8;
    --red: #e53935;
    --blue-2: #084ea6;
    --red-2: #c62828;
    --text: #0f172a;
    --muted: #475569;
    --radius: 18px;
    --pad: 28px;
    --btn-shadow: 0 10px 22px rgba(15,23,42,.02);
    --btn-shadow-hover: 0 14px 30px rgba(15,23,42,.05);
}
*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{
    font-family: "M PLUS 1", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: #fff;
}

/* Page */
.page{
    padding: 18px 16px;
}
.container{
    max-width: 1780px;
    margin: 0 auto;
    background:rgba(11,101,216,.11);

    padding: 22px;
    border-radius: 18px;
}

/* Top header */
.pageHead{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap: 16px;
    padding-bottom: 10px;
}
.headLeft{
    display:flex;
    align-items:center;
    gap: 20px;
    min-width: 0;
}
.pageTitle{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin:0;
    font-size: 18px;
    font-weight:700;
    white-space: nowrap;
    color: var(--muted);
    padding-left: 16px;
}
.contactBar{
    display:flex;
    gap: 4px;
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
}
.contactBar a{
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}
.contactBar a:hover{
    text-decoration: underline;
}
.contactName{
    font-weight: 600;
}
.pageSub{
    margin:0;
    font-size: 14px;
    color: var(--muted);
    white-space: nowrap;
    padding-left: 16px;
}
.contactBar span{
    display:inline-flex;
    align-items:center;
    padding: 4px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(15,23,42,.10);
}
.agencyName{
    font-size: 10px;
    font-weight: 500;
    color: rgba(15,23,42,.35);
    letter-spacing: .04em;
    margin-top: 4px;
    margin-right: 15px;
    white-space: nowrap
}

/* Card */
.card{
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: var(--pad);
}
.card + .card{ margin-top: 18px; }
.cardGrid{
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 26px;
    align-items: center;
}

/* Visual area */
.visual{
    position: relative;
}
.visualBadge{
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;

    display: inline-flex;
    align-items: center;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1;

    padding: 7px 15px;
    border-radius: 999px;

    background: rgba(255,255,255,.82);
    border: 1px solid rgba(15,23,42,.12);
    backdrop-filter: blur(6px);
}
.visualBadge--blue{ color: var(--blue); }
.visualBadge--red{ color: var(--red); }
.visualBadge--leepack{
    top: 10px;
}
.visualBadge--skpack{
    top: -60px;
}
.visualImg{
    width: 100%;
    max-width: 760px;
    height: auto;
    display:block;
}

/* Content */
.content{
    display:flex;
    flex-direction:column;
    gap: 14px;
    min-width: 0;
}
.head{
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(15,23,42,.15);
}
.brandRow{
    display:flex;
    align-items:center;
    gap: 12px;
}
.brandLogo{
    width: 180px;
    height: auto;
    flex: 0 0 auto;
}
.brandLogo--sk{
    width: 215px;
}
.brandText{
    display:flex;
    flex-direction:column;
    gap: 0px;
    min-width: 0;
}
.brandKicker{
    font-size: 21px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: none;
    color: #1e3a8a;
}

.brandName{
    font-size: 12px;
    color: #94a3b8;
    font-weight: 400;
}


/* Meta block */
.meta{
    display:flex;
    flex-direction:column;
    gap: 6px;
}
.metaTitle{
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}
.metaText{
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
    color: var(--muted);
}

/* Product image box */
.pouchBox{
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(15,23,42,.15);
    border-radius: 14px;
    padding: 12px;
    display:flex;
    justify-content:center;
    align-items:center;
}
.pouchImg{
    width: 100%;
    max-width: 360px;
    height: auto;
    display:block;
}
.waterImg{
    width: 100%;
    max-width: 140px;
    height: auto;
    display:block;
}

/* Actions (CTA) */
.actions{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 2px;
}
.actions .btn:last-child{
    grid-column: 1 / -1;
}

/* Buttons */
.btn{
    position: relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap: 8px;
    width: 100%;
    text-decoration:none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .2px;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform .12s ease, box-shadow .12s ease, filter .12s ease, opacity .12s ease;
    user-select:none;
    white-space: nowrap;
    box-shadow: var(--btn-shadow);
}
.btn:hover{
    box-shadow: var(--btn-shadow-hover);
    transform: translateY(-1px);
}
.btn:active{
    transform: translateY(0);
}
.btn:focus-visible{
    outline: 3px solid rgba(11,101,216,.22);
    outline-offset: 2px;
}
.btn--blue{
    color:#fff;
    background: linear-gradient(180deg, var(--blue) 0%, var(--blue-2) 100%);
}
.btn--red{
    color:#fff;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-2) 100%);
}
.btn--blue::before,
.btn--red::before{
    content:"";
    position:absolute;
    inset: 1px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,.26), rgba(255,255,255,0));
    pointer-events:none;
}
.btn--ghost{
    background: rgba(255,255,255,.92);
    color: var(--text);
    border-color: rgba(15,23,42,.14);
}

/* Announcement */
.announce{
    margin: 5px 0 0;
    font-weight: 700;
    color: var(--muted);
    line-height: 1.5;
}

.announce--mobile{ display: none; }
.announce--desktop{
    display: block;
    text-align: center;
    font-size: 15px;
}

/* Scroll to top */
.toTop{
    position: fixed;
    right: 16px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius: 50%;
    border: 1px solid rgba(15,23,42,.15);
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(6px);
    color: var(--blue);
    cursor:pointer;
    box-shadow: 0 12px 26px rgba(15,23,42,.14);
    opacity:0;
    visibility:hidden;
    transform: translateY(8px);
    transition: .2s ease;
    z-index:9999;
}
.toTop.is-show{
    opacity:1;
    visibility:visible;
    transform: translateY(0);
}
.toTop:hover{
    transform: translateY(-2px);
}
.toTop.is-show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.toTop:hover{
    box-shadow: 0 14px 30px rgba(15,23,42,.16);
    transform: translateY(-1px);
}
.toTop:active{
    transform: translateY(0);
}
.toTop:focus-visible{
    outline: 3px solid rgba(11,101,216,.22);
    outline-offset: 2px;
}

/* footer */
.siteFooter {
    text-align: center;
    font-size: 12px;
    color: rgba(15,23,42,.25);
    padding-bottom: 19px;
}

/* Responsive */
@media (max-width: 560px){
    .toTop{
        right: 12px;
        bottom: 14px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 980px){
    .cardGrid{
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .brandLogo{ width: 190px; }
    .visualImg{ max-width: 860px; }
}

@media (max-width: 560px){
    .page{ padding: 12px 10px; }
    .container{ padding: 14px; border-radius: 14px; }
    .card{ padding: 16px; }
    .headLeft{
        display: contents;
    }
    .pageHead{
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
      "title agency"
      "contact contact";
        align-items: center;
        gap: 6px 10px;
        padding-bottom: 10px;
    }
    .pageTitle{
        grid-area: title;
        padding-left: 5px;
        margin: 0;
        white-space: nowrap;
        font-size: 18px;
    }
    .agencyName{
        grid-area: agency;
        justify-self: end;
        text-align: right;
        max-width: 15em;
        line-height: 1.2;
        white-space: normal;
        padding-top: 0;
    }
    .agencyTop,
    .agencyBottom{
        display: block;
    }
    .contactBar{
        grid-area: contact;
        width: 100%;
        margin-top: 2px;
        white-space: normal;
        flex-wrap: wrap;
        gap: 6px;
    }
    .contactBar span{
        padding: 4px 15px;
        max-width: 100%;
    }
    .contactBar a{
        overflow-wrap: anywhere; /* 메일/URL이 길면 중간에서도 줄바꿈 */
        word-break: break-word;
    }
    .pageSub{
        white-space: normal;
        font-size: 12px;
    }
    .actions{ grid-template-columns: 1fr; }
    .actions .btn:last-child{ grid-column: auto; }
    .brandLogo{
        width: 120px;
        padding-right: 5px;
    }
    .brandLogo--sk{
        width: 140px;
    }
    .brandRow{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
    }
    .brandText{
        display: contents;
        gap: 6px;
    }
    .brandKicker{
        display: inline-flex;
        align-items: center;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: .02em;
        line-height: 1;
        padding: 8px 20px;
        border-radius: 999px;
        background: rgba(11,101,216,.08);
        border: 1px solid rgba(11,101,216,.18);
        color: var(--blue);
        white-space: nowrap;
    }
    .card:nth-of-type(2) .brandKicker{
        background: rgba(229,57,53,.08);
        border: 1px solid rgba(229,57,53,.18);
        color: var(--red);
    }
    .brandName{
        width: 100%;
        font-size: 11px;
        color: #94a3b8;
    }
    .visualBadge{
        display: none !important;
    }
    .visual{
        margin-bottom: 10px;
    }
    .announce--mobile{
        display: block;
        font-size: 12.5px;
        padding-left: 3px;
    }
    .announce--desktop{ display: none; }
}