/* ============================================================
   SEWELL HARBOR LLC - harbor.css
   Left-sidebar layout, 1200px shell, palette sampled from the
   Zeknor Screw Takedown3D artwork (navy / cyan / orange).
   ============================================================ */

:root {
    --hz-navy: #0b2b4e;
    --hz-navy-deep: #071e39;
    --hz-cyan: #12cff7;
    --hz-cyan-dark: #0aa8cf;
    --hz-orange: #ff7224;
    --hz-orange-dark: #e05a10;
    --hz-magenta: #e93e8a;
    --hz-yellow: #ffc93c;
    --hz-ink: #22303e;
    --hz-muted: #5b6b7c;
    --hz-bg: #f2f7fb;
    --hz-card: #ffffff;
    --hz-line: #dce7f0;
    --hz-radius: 16px;
    --hz-shadow: 0 10px 30px rgba(11, 43, 78, .10);
    --hz-font-head: 'Outfit', sans-serif;
    --hz-font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.hz-body {
    font-family: var(--hz-font-body);
    color: var(--hz-ink);
    background:
        radial-gradient(900px 480px at 85% -80px, rgba(18, 207, 247, .14), transparent 60%),
        radial-gradient(700px 420px at -100px 30%, rgba(255, 114, 36, .10), transparent 55%),
        var(--hz-bg);
    line-height: 1.65;
    min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--hz-cyan-dark); text-decoration: none; }
a:hover { color: var(--hz-orange); }

/* ---------- Shell: sidebar + content, capped at 1200px ---------- */
.hz-shell {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 100vh;
}

/* ---------- Left sidebar ---------- */
.hz-side {
    flex: 0 0 268px;
    width: 268px;
    background: linear-gradient(178deg, var(--hz-navy) 0%, var(--hz-navy-deep) 100%);
    color: #eaf4fd;
    display: flex;
    flex-direction: column;
    padding: 26px 20px 30px;
    position: sticky;
    top: 0;
    align-self: flex-start;
    min-height: 100vh;
    box-shadow: 6px 0 24px rgba(7, 30, 57, .18);
    z-index: 30;
}

.hz-side-top { position: relative; }

.hz-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(18, 207, 247, .18);
}

.hz-brand-logo {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(18, 207, 247, .35);
}

.hz-brand-name {
    font-family: var(--hz-font-head);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .06em;
    color: #ffffff;
    line-height: 1.3;
}

.hz-brand-game {
    font-size: 12px;
    color: var(--hz-cyan);
    letter-spacing: .04em;
}

.hz-burger {
    display: none;
    background: rgba(18, 207, 247, .15);
    border: 1px solid rgba(18, 207, 247, .35);
    color: var(--hz-cyan);
    font-size: 18px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    cursor: pointer;
}

/* ---------- Vertical menu ---------- */
.hz-nav { margin-top: 22px; flex: 1; }
.hz-nav-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.hz-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    color: #c9dcec;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent;
    transition: all .22s ease;
}

.hz-link i { width: 20px; text-align: center; color: var(--hz-cyan); transition: transform .22s ease; }

.hz-link:hover {
    background: rgba(18, 207, 247, .10);
    border-color: rgba(18, 207, 247, .25);
    color: #ffffff;
    transform: translateX(4px);
}

.hz-link:hover i { transform: scale(1.15); }

.hz-link.is-active {
    background: linear-gradient(90deg, rgba(18, 207, 247, .22), rgba(18, 207, 247, .05));
    border-color: rgba(18, 207, 247, .45);
    color: #ffffff;
    box-shadow: inset 3px 0 0 var(--hz-cyan);
}

/* Shop entry: deliberately loud */
.hz-nav-shopwrap { margin-top: 14px; }

.hz-link-shop {
    background: linear-gradient(120deg, var(--hz-orange) 0%, #ff9d2e 100%);
    color: #fff8f2;
    font-family: var(--hz-font-head);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: .03em;
    box-shadow: 0 8px 20px rgba(255, 114, 36, .45);
    animation: hzShopPulse 2.6s ease-in-out infinite;
}

.hz-link-shop i { color: #fff; }

.hz-link-shop:hover {
    background: linear-gradient(120deg, var(--hz-orange-dark) 0%, var(--hz-orange) 100%);
    color: #ffffff;
    transform: translateX(4px) scale(1.02);
}

.hz-link-shop.is-active {
    border-color: #ffd9bd;
    box-shadow: 0 8px 24px rgba(255, 114, 36, .6), inset 3px 0 0 #ffffff;
}

.hz-shop-badge {
    margin-left: auto;
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    background: rgba(255, 255, 255, .22);
    border: 1px solid rgba(255, 255, 255, .45);
    padding: 2px 8px;
    border-radius: 999px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

@keyframes hzShopPulse {
    0%, 100% { box-shadow: 0 8px 20px rgba(255, 114, 36, .45); }
    50% { box-shadow: 0 8px 28px rgba(255, 114, 36, .75); }
}

/* ---------- Right content ---------- */
.hz-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.hz-main { flex: 1; padding: 40px 44px 56px; }

/* ---------- Shared content primitives ---------- */
.hz-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--hz-font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--hz-cyan-dark);
    background: rgba(18, 207, 247, .12);
    border: 1px solid rgba(18, 207, 247, .35);
    padding: 6px 14px;
    border-radius: 999px;
}

.hz-h1 {
    font-family: var(--hz-font-head);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--hz-navy);
    margin: 16px 0 14px;
}

.hz-h2 {
    font-family: var(--hz-font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--hz-navy);
    margin: 0 0 14px;
}

.hz-lead { font-size: 17px; color: var(--hz-muted); max-width: 62ch; }

.hz-section { margin-top: 46px; }

.hz-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--hz-font-head);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all .2s ease;
}

.hz-btn-orange {
    background: linear-gradient(120deg, var(--hz-orange), #ff9d2e);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 114, 36, .4);
}

.hz-btn-orange:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255, 114, 36, .55); color: #fff; }

.hz-btn-ghost {
    background: transparent;
    border: 2px solid var(--hz-line);
    color: var(--hz-navy);
}

.hz-btn-ghost:hover { border-color: var(--hz-cyan); color: var(--hz-cyan-dark); }

.hz-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-top: 14px;
}

.hz-more i { transition: transform .2s ease; }
.hz-more:hover i { transform: translateX(4px); }

/* ---------- Home ---------- */
.hz-intro {
    background: linear-gradient(135deg, var(--hz-navy) 0%, #10396a 55%, #0d4f7c 100%);
    border-radius: 24px;
    padding: 44px;
    color: #eaf4fd;
    position: relative;
    overflow: hidden;
}

.hz-intro::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    right: -140px;
    top: -140px;
    background: radial-gradient(circle, rgba(18, 207, 247, .35), transparent 65%);
    pointer-events: none;
}

.hz-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.hz-intro .hz-eyebrow { color: var(--hz-yellow); background: rgba(255, 201, 60, .12); border-color: rgba(255, 201, 60, .4); }

.hz-intro-title {
    font-family: var(--hz-font-head);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.12;
    color: #ffffff;
    margin: 18px 0 16px;
}

.hz-intro-title em { font-style: normal; color: var(--hz-cyan); }

.hz-intro-text { color: #bcd6ea; font-size: 16px; max-width: 56ch; }

.hz-play-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
    align-items: center;
}

.hz-play-row a {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
    max-width: 210px;
}

.hz-play-row a:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 26px rgba(255, 114, 36, .45); }

.hz-intro-figure { position: relative; }

.hz-intro-figure img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(3, 15, 30, .5);
    border: 3px solid rgba(18, 207, 247, .35);
}

.hz-intro-badge {
    position: absolute;
    left: -14px;
    bottom: 22px;
    background: linear-gradient(120deg, var(--hz-magenta), #ff6aa9);
    color: #fff;
    font-family: var(--hz-font-head);
    font-weight: 700;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(233, 62, 138, .45);
    transform: rotate(-4deg);
}

.hz-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }

.hz-card {
    background: var(--hz-card);
    border: 1px solid var(--hz-line);
    border-radius: var(--hz-radius);
    padding: 24px;
    box-shadow: var(--hz-shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

.hz-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(11, 43, 78, .16); }

.hz-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 14px;
}

.hz-card-icon.c1 { background: linear-gradient(135deg, var(--hz-cyan), var(--hz-cyan-dark)); }
.hz-card-icon.c2 { background: linear-gradient(135deg, var(--hz-orange), #ff9d2e); }
.hz-card-icon.c3 { background: linear-gradient(135deg, var(--hz-magenta), #ff6aa9); }
.hz-card-icon.c4 { background: linear-gradient(135deg, var(--hz-yellow), #ffb020); color: var(--hz-navy); }

.hz-card h3 { font-family: var(--hz-font-head); font-size: 18px; color: var(--hz-navy); margin-bottom: 8px; }
.hz-card p { font-size: 14px; color: var(--hz-muted); }

.hz-split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; margin-top: 18px; }

.hz-shots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 20px; }

.hz-shots img {
    border-radius: 14px;
    border: 1px solid var(--hz-line);
    box-shadow: var(--hz-shadow);
    transition: transform .25s ease;
}

.hz-shots img:hover { transform: scale(1.04) rotate(-1deg); }

.hz-cta-band {
    margin-top: 46px;
    background: linear-gradient(120deg, var(--hz-orange), var(--hz-magenta));
    border-radius: 20px;
    padding: 34px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
    flex-wrap: wrap;
}

.hz-cta-band h2 { font-family: var(--hz-font-head); font-size: 26px; color: #fff; }
.hz-cta-band p { color: rgba(255, 255, 255, .85); font-size: 14px; }

.hz-cta-band .hz-btn { background: #fff; color: var(--hz-orange-dark); }
.hz-cta-band .hz-btn:hover { color: var(--hz-magenta); }

/* ---------- About ---------- */
.hz-about-top {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 34px;
    align-items: start;
}

.hz-about-fig {
    background: linear-gradient(160deg, #ffffff, #eaf6fd);
    border: 1px solid var(--hz-line);
    border-radius: 20px;
    padding: 22px;
    text-align: center;
    box-shadow: var(--hz-shadow);
    position: sticky;
    top: 30px;
}

.hz-about-fig img { width: 210px; margin: 0 auto; border-radius: 16px; }
.hz-about-fig figcaption { font-size: 12px; color: var(--hz-muted); margin-top: 12px; letter-spacing: .08em; text-transform: uppercase; }

.hz-para { color: var(--hz-muted); font-size: 16px; margin-bottom: 14px; }

.hz-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 20px; }

.hz-value {
    background: var(--hz-card);
    border: 1px solid var(--hz-line);
    border-top: 4px solid var(--hz-cyan);
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    font-family: var(--hz-font-head);
    font-weight: 700;
    color: var(--hz-navy);
    box-shadow: var(--hz-shadow);
}

.hz-value i { display: block; font-size: 22px; margin-bottom: 8px; color: var(--hz-cyan-dark); }
.hz-value:nth-child(2) { border-top-color: var(--hz-orange); } .hz-value:nth-child(2) i { color: var(--hz-orange); }
.hz-value:nth-child(3) { border-top-color: var(--hz-magenta); } .hz-value:nth-child(3) i { color: var(--hz-magenta); }
.hz-value:nth-child(4) { border-top-color: var(--hz-yellow); } .hz-value:nth-child(4) i { color: var(--hz-yellow); }

.hz-mission-band {
    margin-top: 40px;
    background: linear-gradient(120deg, var(--hz-navy), #0d4f7c);
    border-left: 6px solid var(--hz-cyan);
    border-radius: 18px;
    padding: 30px 34px;
    color: #eaf4fd;
}

.hz-mission-band h2 { color: #fff; font-family: var(--hz-font-head); font-size: 24px; margin-bottom: 8px; }
.hz-mission-band p { color: #bcd6ea; font-size: 16px; }

.hz-adv-list { list-style: none; margin-top: 18px; display: grid; gap: 12px; }

.hz-adv-list li {
    background: var(--hz-card);
    border: 1px solid var(--hz-line);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: var(--hz-shadow);
    color: var(--hz-muted);
}

.hz-adv-list i { color: var(--hz-orange); margin-top: 4px; }

/* ---------- Game page ---------- */
.hz-game-head {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 36px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff, #eef7fd);
    border: 1px solid var(--hz-line);
    border-radius: 24px;
    padding: 34px;
    box-shadow: var(--hz-shadow);
}

.hz-game-head img { border-radius: 18px; box-shadow: 0 14px 34px rgba(11, 43, 78, .25); }

.hz-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 22px; }

.hz-feature {
    background: var(--hz-card);
    border: 1px solid var(--hz-line);
    border-radius: var(--hz-radius);
    padding: 24px;
    box-shadow: var(--hz-shadow);
    position: relative;
    overflow: hidden;
}

.hz-feature::after {
    content: '';
    position: absolute;
    inset: auto -30px -30px auto;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 207, 247, .18), transparent 70%);
}

.hz-feature h3 { font-family: var(--hz-font-head); color: var(--hz-navy); font-size: 18px; margin-bottom: 8px; }
.hz-feature p { color: var(--hz-muted); font-size: 14px; }

.hz-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; counter-reset: hzstep; }

.hz-step {
    background: linear-gradient(160deg, var(--hz-navy), #10396a);
    color: #dcecfb;
    border-radius: 16px;
    padding: 22px;
    position: relative;
}

.hz-step::before {
    counter-increment: hzstep;
    content: counter(hzstep);
    position: absolute;
    top: -14px;
    left: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hz-orange), #ff9d2e);
    color: #fff;
    font-family: var(--hz-font-head);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(255, 114, 36, .5);
}

.hz-step h3 { color: #fff; font-family: var(--hz-font-head); font-size: 16px; margin: 10px 0 6px; }
.hz-step p { font-size: 13px; color: #a9c6de; }

.hz-gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 20px; }
.hz-gallery img { border-radius: 12px; border: 1px solid var(--hz-line); box-shadow: var(--hz-shadow); transition: transform .25s ease; }
.hz-gallery img:hover { transform: translateY(-4px) scale(1.03); }

/* ---------- Contact ---------- */
.hz-contact-grid { display: grid; grid-template-columns: 1fr 320px; gap: 30px; align-items: start; }

.hz-info-list { display: grid; gap: 16px; margin-top: 22px; }

.hz-info-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--hz-card);
    border: 1px solid var(--hz-line);
    border-radius: var(--hz-radius);
    padding: 22px;
    box-shadow: var(--hz-shadow);
    transition: transform .2s ease;
}

.hz-info-card:hover { transform: translateX(6px); }

.hz-info-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.hz-info-icon.i1 { background: linear-gradient(135deg, var(--hz-cyan), var(--hz-cyan-dark)); }
.hz-info-icon.i2 { background: linear-gradient(135deg, var(--hz-orange), #ff9d2e); }
.hz-info-icon.i3 { background: linear-gradient(135deg, var(--hz-magenta), #ff6aa9); }
.hz-info-icon.i4 { background: linear-gradient(135deg, var(--hz-yellow), #ffb020); color: var(--hz-navy); }

.hz-info-card h3 { font-family: var(--hz-font-head); font-size: 16px; color: var(--hz-navy); }
.hz-info-card p, .hz-info-card a { color: var(--hz-muted); font-size: 15px; word-break: break-word; }
.hz-info-card a:hover { color: var(--hz-orange); }

.hz-contact-fig {
    background: linear-gradient(160deg, var(--hz-navy), #0d4f7c);
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--hz-shadow);
    position: sticky;
    top: 30px;
}

.hz-contact-fig img { border-radius: 14px; border: 2px solid rgba(18, 207, 247, .4); }
.hz-contact-fig figcaption { color: #a9c6de; font-size: 12px; text-align: center; margin-top: 12px; letter-spacing: .06em; }

.hz-hours {
    margin-top: 26px;
    background: rgba(18, 207, 247, .08);
    border: 1px dashed rgba(18, 207, 247, .5);
    border-radius: 14px;
    padding: 18px 22px;
    color: var(--hz-muted);
    font-size: 14px;
}

.hz-hours i { color: var(--hz-cyan-dark); margin-right: 8px; }

/* ---------- Shop ---------- */
.hz-coin-intro {
    background: linear-gradient(135deg, #fff8ec, #ffeedd);
    border: 1px solid #ffd9b0;
    border-radius: var(--hz-radius);
    padding: 24px 26px;
    margin-top: 22px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.hz-coin-intro img { width: 74px; flex: 0 0 74px; }
.hz-coin-intro p { color: #7a5a33; font-size: 14px; }

.hz-shop-grid { display: grid; grid-template-columns: 1fr 340px; gap: 26px; margin-top: 26px; align-items: start; }

.hz-packs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.hz-pack {
    background: var(--hz-card);
    border: 2px solid var(--hz-line);
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    transition: all .18s ease;
    position: relative;
}

.hz-pack:hover { border-color: var(--hz-cyan); transform: translateY(-3px); box-shadow: var(--hz-shadow); }

.hz-pack.is-on {
    border-color: var(--hz-orange);
    background: linear-gradient(170deg, #fff6ee, #ffffff);
    box-shadow: 0 10px 24px rgba(255, 114, 36, .25);
}

.hz-pack.is-on::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--hz-orange);
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hz-pack img { width: 52px; margin: 0 auto 10px; }
.hz-pack-title { font-family: var(--hz-font-head); font-weight: 700; color: var(--hz-navy); font-size: 15px; }
.hz-pack-price { color: var(--hz-orange-dark); font-weight: 700; margin-top: 4px; font-size: 15px; }

.hz-order {
    background: var(--hz-card);
    border: 1px solid var(--hz-line);
    border-radius: 20px;
    padding: 26px;
    box-shadow: var(--hz-shadow);
    position: sticky;
    top: 30px;
}

.hz-order h2 { font-family: var(--hz-font-head); color: var(--hz-navy); font-size: 22px; margin-bottom: 16px; }

.hz-field { margin-bottom: 16px; }
.hz-field label { display: block; font-weight: 600; font-size: 13px; color: var(--hz-navy); margin-bottom: 6px; letter-spacing: .02em; }

.hz-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--hz-line);
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--hz-font-body);
    color: var(--hz-ink);
    background: #fbfdff;
    transition: border-color .2s ease;
}

.hz-input:focus { outline: none; border-color: var(--hz-cyan); background: #fff; }
.hz-input[readonly] { background: #eef4f9; color: var(--hz-muted); }
.hz-input.is-bad { border-color: #e5484d; background: #fff5f5; }

.hz-picked {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(120deg, #fff6ee, #ffeedd);
    border: 1px dashed #ffb37e;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
}

.hz-picked-name { font-weight: 600; color: var(--hz-navy); }
.hz-picked-price { font-family: var(--hz-font-head); font-weight: 800; color: var(--hz-orange-dark); }

.hz-pay-list { display: grid; gap: 10px; }

.hz-pay {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid var(--hz-line);
    border-radius: 12px;
    padding: 12px 14px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--hz-ink);
    transition: all .18s ease;
}

.hz-pay input { accent-color: var(--hz-orange); }
.hz-pay i { font-size: 20px; color: var(--hz-navy); }
.hz-pay:hover { border-color: var(--hz-cyan); }
.hz-pay.is-on { border-color: var(--hz-orange); background: #fff6ee; box-shadow: 0 4px 12px rgba(255, 114, 36, .18); }

.hz-pay.is-viewonly {
    opacity: .55;
    cursor: not-allowed;
    border-style: dashed;
}

.hz-pay-tag {
    margin-left: auto;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .06em;
    background: #e8eef5;
    color: var(--hz-muted);
    padding: 2px 8px;
    border-radius: 999px;
}

.hz-agree { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--hz-muted); }
.hz-agree input { margin-top: 3px; accent-color: var(--hz-orange); }

.hz-err { display: block; color: #d63040; font-size: 12px; margin-top: 5px; min-height: 14px; }

.hz-alert {
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 18px;
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.hz-alert.bad { background: #fdecec; border: 1px solid #f5b7b4; color: #a93226; }

.hz-cur-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; align-items: center; }

.hz-cur-btn {
    border: 2px solid var(--hz-line);
    background: #fff;
    border-radius: 999px;
    padding: 7px 16px;
    font-family: var(--hz-font-head);
    font-weight: 700;
    font-size: 13px;
    color: var(--hz-navy);
    cursor: pointer;
    transition: all .18s ease;
}

.hz-cur-btn:hover { border-color: var(--hz-cyan); }
.hz-cur-btn.is-on { background: var(--hz-navy); border-color: var(--hz-navy); color: var(--hz-cyan); }

.hz-honeypot { position: absolute; left: -9999px; top: -9999px; height: 1px; width: 1px; overflow: hidden; }

.hz-shop-note { font-size: 12px; color: var(--hz-muted); margin-top: 12px; text-align: center; }

/* ---------- Confirm / result pages ---------- */
.hz-panel {
    max-width: 640px;
    margin: 30px auto 0;
    background: var(--hz-card);
    border: 1px solid var(--hz-line);
    border-radius: 22px;
    padding: 36px;
    box-shadow: var(--hz-shadow);
}

.hz-panel.center { text-align: center; }

.hz-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.hz-table th, .hz-table td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--hz-line); }
.hz-table th { color: var(--hz-muted); font-weight: 600; width: 42%; }
.hz-table td { color: var(--hz-navy); font-weight: 600; }
.hz-table .hz-total { color: var(--hz-orange-dark); font-family: var(--hz-font-head); font-size: 18px; }

.hz-count {
    width: 64px;
    height: 64px;
    margin: 16px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hz-cyan), var(--hz-cyan-dark));
    color: #fff;
    font-family: var(--hz-font-head);
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(18, 207, 247, .4);
}

.hz-actions { display: flex; gap: 12px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }

.hz-result-icon { font-size: 64px; margin-bottom: 14px; }
.hz-result-icon.ok { color: #22b573; }
.hz-result-icon.bad { color: #e5484d; }

/* ---------- Footer (differentiated) ---------- */
.hz-foot { margin-top: auto; }

.hz-foot-wave { line-height: 0; }
.hz-foot-wave svg { width: 100%; height: 46px; display: block; }

.hz-foot-body {
    background: linear-gradient(180deg, var(--hz-navy) 0%, var(--hz-navy-deep) 100%);
    color: #c9dcec;
    padding: 34px 44px 26px;
}

.hz-foot-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr 1fr;
    gap: 34px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(18, 207, 247, .16);
}

.hz-foot-brand { display: flex; align-items: center; gap: 12px; color: #fff; font-family: var(--hz-font-head); font-weight: 700; font-size: 15px; }
.hz-foot-brand img { border-radius: 12px; }
.hz-foot-tag { font-size: 13px; color: #8fb6d4; margin-top: 12px; max-width: 34ch; }

.hz-foot-pay { margin-top: 14px; display: flex; align-items: center; gap: 12px; font-size: 22px; color: var(--hz-cyan); }
.hz-foot-cap { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: #8fb6d4; }

.hz-foot-title { font-family: var(--hz-font-head); color: #fff; font-size: 15px; margin-bottom: 14px; letter-spacing: .04em; }
.hz-foot-links { list-style: none; display: grid; gap: 8px; }
.hz-foot-links a { color: #a9c6de; font-size: 14px; }
.hz-foot-links a:hover { color: var(--hz-cyan); padding-left: 4px; }

.hz-foot-contact { list-style: none; display: grid; gap: 10px; font-size: 13px; }
.hz-foot-contact li { display: flex; gap: 10px; align-items: flex-start; }
.hz-foot-contact i { color: var(--hz-cyan); margin-top: 3px; }
.hz-foot-contact a { color: #a9c6de; }
.hz-foot-contact a:hover { color: var(--hz-orange); }

.hz-foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 20px;
    font-size: 13px;
}

.hz-copy { color: #8fb6d4; }

.hz-legal { display: flex; gap: 18px; }
.hz-legal a { color: #a9c6de; }
.hz-legal a:hover { color: var(--hz-yellow); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hz-main { padding: 30px 26px 46px; }
    .hz-intro-grid, .hz-split, .hz-about-top, .hz-contact-grid, .hz-shop-grid { grid-template-columns: 1fr; }
    .hz-about-fig, .hz-contact-fig, .hz-order { position: static; }
    .hz-cards { grid-template-columns: repeat(2, 1fr); }
    .hz-values { grid-template-columns: repeat(2, 1fr); }
    .hz-gallery { grid-template-columns: repeat(3, 1fr); }
    .hz-packs { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
    .hz-shell { flex-direction: column; }
    .hz-side {
        width: 100%;
        flex: none;
        min-height: 0;
        position: relative;
        padding: 16px 18px;
    }
    .hz-side-top { display: flex; align-items: center; justify-content: space-between; }
    .hz-brand { flex-direction: row; text-align: left; padding-bottom: 0; border-bottom: none; gap: 10px; }
    .hz-brand-logo { width: 46px; height: 46px; border-radius: 12px; }
    .hz-brand-name { font-size: 14px; }
    .hz-burger { display: block; }
    .hz-nav { display: none; margin-top: 16px; }
    .hz-nav.is-open { display: block; }
    .hz-intro { padding: 28px; }
    .hz-intro-title { font-size: 30px; }
    .hz-h1 { font-size: 30px; }
    .hz-cards, .hz-features, .hz-steps, .hz-packs { grid-template-columns: 1fr 1fr; }
    .hz-foot-grid { grid-template-columns: 1fr; gap: 22px; }
    .hz-foot-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
    .hz-cards, .hz-features, .hz-steps, .hz-packs, .hz-values, .hz-gallery, .hz-shots { grid-template-columns: 1fr; }
    .hz-main { padding: 22px 16px 36px; }
    .hz-panel { padding: 24px 18px; }
}
