﻿/* =========================================
   Ghost Hub Landing + Order Tools (UPDATED)
   Theme: #0b0b0f + white + red accents (NO gradients)
   - Order Tools: ✅ List view (one column)
   - Tool image: ✅ 1:1 ratio, small thumbnail
   - Variant + Duration: ✅ same line
   - Cart: ✅ below tools + Order button inside cart
   Production-ready
   ========================================= */

:root {
    --gh-bg: #0b0b0f;
    --gh-text: rgba(255,255,255,.92);
    --gh-muted: rgba(255,255,255,.70);
    --gh-muted2: rgba(255,255,255,.58);
    --gh-border: rgba(255,255,255,.12);
    --gh-border2: rgba(255,255,255,.18);
    --gh-card: rgba(255,255,255,.04);
    --gh-card2: rgba(0,0,0,.20);
    --gh-red: #ff2a2a;
    --gh-red2: #ff4b4b;
    --gh-green: #32d583;
    --gh-yellow: #ffd166;
    --gh-radius: 18px;
    --gh-shadow: 0 18px 55px rgba(0,0,0,.55);
    --gh-shadow2: 0 12px 34px rgba(0,0,0,.45);
    --gh-ease: cubic-bezier(.2,.8,.2,1);
    --gh-ease-fast: cubic-bezier(.2,.9,.2,1);
}

/* ✅ While autoscroll running, disable CSS smooth scroll to avoid conflict */
html.gh-autoscroll {
    scroll-behavior: auto !important;
}

* {
    box-sizing: border-box;
}

.gh {
    position: relative;
    background: var(--gh-bg);
    color: var(--gh-text);
    overflow: hidden;
}

.gh-container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

/* anti-forgery container hidden but present */
.gh-af {
    display: none;
}

/* ----------------------------
   Topbar
---------------------------- */
.gh-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11,11,15,.78);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.gh-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
}

.gh-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    text-decoration: none;
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--gh-shadow2);
    transition: transform 180ms var(--gh-ease-fast), border-color 180ms var(--gh-ease-fast), background-color 180ms var(--gh-ease-fast);
}

    .gh-back:hover {
        transform: translateY(-1px);
        border-color: rgba(255,255,255,.18);
        background: rgba(255,255,255,.06);
    }

.gh-back__icon {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255,42,42,.12);
    border: 1px solid rgba(255,42,42,.35);
    color: rgba(255,255,255,.92);
    font-weight: 950;
}

.gh-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gh-nav__link {
    text-decoration: none;
    color: rgba(255,255,255,.78);
    font-weight: 900;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.03);
    transition: transform 180ms var(--gh-ease-fast), border-color 180ms var(--gh-ease-fast), background-color 180ms var(--gh-ease-fast);
}

    .gh-nav__link:hover {
        transform: translateY(-1px);
        border-color: rgba(255,255,255,.18);
        background: rgba(255,255,255,.06);
    }

/* ----------------------------
   Hero
---------------------------- */
.gh-hero {
    position: relative;
    padding: clamp(34px, 6vw, 70px) 0 clamp(44px, 6vw, 72px);
}

.gh-hero__inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(16px, 4vw, 34px);
    align-items: center;
}

/* Brandline (logo + tag) */
.gh-brandline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.gh-brandlogo {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(255,42,42,.10);
    border: 1px solid rgba(255,42,42,.28);
    box-shadow: 0 14px 28px rgba(0,0,0,.45);
    display: grid;
    place-items: center;
    overflow: hidden;
    flex: 0 0 auto;
}

    .gh-brandlogo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .gh-brandlogo.is-fallback {
        background: rgba(0,0,0,.22);
        border-color: rgba(255,255,255,.14);
    }

.gh-brandlogo__txt {
    font-weight: 950;
    letter-spacing: .2px;
    color: rgba(255,255,255,.92);
    font-size: 14px;
    text-transform: uppercase;
}

.gh-brandtag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 950;
    font-size: 12.5px;
    letter-spacing: .2px;
    color: rgba(255,255,255,.84);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 12px 34px rgba(0,0,0,.35);
    transition: transform 180ms var(--gh-ease-fast), border-color 180ms var(--gh-ease-fast);
}

    .gh-brandtag::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 99px;
        background: var(--gh-red);
        box-shadow: 0 0 0 4px rgba(255,42,42,.14);
        margin-right: 10px;
    }

    .gh-brandtag:hover {
        transform: translateY(-1px);
        border-color: rgba(255,255,255,.18);
    }

.gh-hero__title {
    margin: 16px 0 10px;
    font-size: clamp(34px, 4.8vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.gh-hero__subtitle {
    margin: 0 0 16px;
    max-width: 62ch;
    color: var(--gh-muted);
    font-size: clamp(14px, 1.7vw, 17.5px);
    line-height: 1.65;
}

.gh-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

/* pill */
.gh .pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    transition: transform 180ms var(--gh-ease-fast), border-color 180ms var(--gh-ease-fast);
}

    .gh .pill:hover {
        transform: translateY(-1px);
        border-color: rgba(255,255,255,.18);
    }

/* pill icon via masks (NO gradients) */
.gh .pill__icon {
    --pill-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M3%2012h13'%20stroke='%23000'%20stroke-width='2'%20stroke-linecap='round'/%3E%3Cpath%20d='M13%205l7%207-7%207'%20stroke='%23000'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(255,42,42,.12);
    border: 1px solid rgba(255,42,42,.38);
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    transition: transform 180ms var(--gh-ease-fast), border-color 180ms var(--gh-ease-fast), background-color 180ms var(--gh-ease-fast);
}

.gh .pill:hover .pill__icon {
    transform: scale(1.06);
    background: rgba(255,42,42,.16);
    border-color: rgba(255,42,42,.52);
}

.gh .pill__icon::before {
    content: "";
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,.92);
    -webkit-mask: var(--pill-icon) center / contain no-repeat;
    mask: var(--pill-icon) center / contain no-repeat;
}

.gh .pill__icon--speed {
    --pill-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M3%2012h13'%20stroke='%23000'%20stroke-width='2'%20stroke-linecap='round'/%3E%3Cpath%20d='M13%205l7%207-7%207'%20stroke='%23000'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
}

.gh .pill__icon--shield {
    --pill-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M12%202l8%204v6c0%205-3.4%209.5-8%2010-4.6-.5-8-5-8-10V6z'%20stroke='%23000'%20stroke-width='2'%20fill='none'/%3E%3Cpath%20d='M8%2012l2.3%202.3L16%208.6'%20stroke='%23000'%20stroke-width='2'%20fill='none'/%3E%3C/svg%3E");
}

.gh .pill__text {
    font-size: 13px;
    font-weight: 850;
    color: rgba(255,255,255,.86);
}

.gh-hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 14px;
}

.gh-hero__note {
    margin-top: 10px;
    color: var(--gh-muted2);
    font-weight: 800;
    font-size: 13px;
}

/* Buttons (NO gradients) */
.gh .btnx {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 950;
    letter-spacing: .25px;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    user-select: none;
    transition: transform 180ms var(--gh-ease-fast), box-shadow 180ms var(--gh-ease-fast), background-color 180ms var(--gh-ease-fast), border-color 180ms var(--gh-ease-fast), color 180ms var(--gh-ease-fast);
    will-change: transform;
}

    .gh .btnx:focus-visible {
        outline: none;
        box-shadow: 0 0 0 4px rgba(255,42,42,.20);
    }

    .gh .btnx.is-pressed {
        transform: translateY(0) scale(.98);
    }

.gh .btnx--primary {
    color: #0b0b0f;
    background: var(--gh-red);
    border-color: rgba(255,42,42,.55);
    box-shadow: 0 16px 32px rgba(255,42,42,.16), 0 14px 28px rgba(0,0,0,.45);
}

    .gh .btnx--primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 22px 50px rgba(255,42,42,.22), 0 16px 30px rgba(0,0,0,.55);
    }

.gh .btnx--ghost {
    color: rgba(255,255,255,.92);
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.14);
}

    .gh .btnx--ghost:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,.07);
        border-color: rgba(255,255,255,.20);
        box-shadow: 0 14px 38px rgba(0,0,0,.50);
    }

.gh .btnx--wa {
    color: rgba(255,255,255,.92);
    background: rgba(0,0,0,.18);
    border-color: rgba(255,42,42,.28);
}

    .gh .btnx--wa:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,.05);
        border-color: rgba(255,42,42,.45);
        box-shadow: 0 14px 38px rgba(0,0,0,.50);
    }

.gh .btnx:disabled,
.gh .btnx[disabled] {
    opacity: .55;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* button spinner (used in Order Now) */
.gh .btnx__spin {
    display: none;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border-radius: 99px;
    border: 2px solid rgba(0,0,0,.22);
    border-top-color: rgba(0,0,0,.72);
    animation: ghSpin .8s linear infinite;
}

.gh .btnx.is-busy .btnx__spin {
    display: inline-block;
}

@keyframes ghSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Right visual card */
.gh-hero__visual {
    display: grid;
    place-items: center;
    min-height: 330px;
}

.glass-card {
    width: min(470px, 100%);
    border-radius: 22px;
    padding: 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--gh-shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 220ms var(--gh-ease-fast), border-color 220ms var(--gh-ease-fast);
}

    .glass-card:hover {
        transform: translateY(-2px);
        border-color: rgba(255,255,255,.18);
    }

.glass-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.10);
    font-weight: 950;
    font-size: 12.5px;
    letter-spacing: .2px;
}

.signal {
    display: inline-flex;
    align-items: flex-end;
    gap: 4px;
    height: 16px;
}

.signal__bar {
    width: 4px;
    border-radius: 99px;
    background: rgba(255,42,42,.92);
    opacity: .9;
}

    .signal__bar:nth-child(1) {
        height: 8px;
    }

    .signal__bar:nth-child(2) {
        height: 12px;
    }

    .signal__bar:nth-child(3) {
        height: 16px;
    }

.snap-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.snap {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.10);
    transition: transform 180ms var(--gh-ease-fast), border-color 180ms var(--gh-ease-fast);
    min-width: 0;
}

    .snap:hover {
        transform: translateY(-1px);
        border-color: rgba(255,255,255,.18);
    }

.snap__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255,42,42,.10);
    border: 1px solid rgba(255,42,42,.28);
    box-shadow: 0 10px 22px rgba(0,0,0,.35);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.snap__svg {
    width: 22px;
    height: 22px;
}

    .snap__svg * {
        fill: none;
        stroke: rgba(255,255,255,.90);
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.snap__txt {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.snap__t, .snap__s {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.snap__t {
    font-weight: 950;
    font-size: 13.5px;
    letter-spacing: -0.01em;
}

.snap__s {
    color: var(--gh-muted2);
    font-weight: 800;
    font-size: 12.5px;
    line-height: 1.2;
}

.glass-card__line {
    height: 1px;
    margin: 12px 0;
    background: rgba(255,255,255,.10);
}

.mini-stats {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.stat__num {
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.02em;
    color: var(--gh-red);
    text-shadow: 0 10px 24px rgba(255,42,42,.18);
}

.stat__txt {
    color: rgba(255,255,255,.74);
    font-weight: 850;
    font-size: 13px;
}

.card-foot {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.10);
    display: flex;
    justify-content: flex-end;
}

.card-link {
    text-decoration: none;
    font-weight: 950;
    font-size: 13px;
    color: rgba(255,255,255,.84);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    transition: transform 180ms var(--gh-ease-fast), background-color 180ms var(--gh-ease-fast), border-color 180ms var(--gh-ease-fast);
}

    .card-link:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,.07);
        border-color: rgba(255,255,255,.18);
    }

.card-link__arr {
    color: var(--gh-red);
    font-weight: 950;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.70);
    font-weight: 850;
    font-size: 12.5px;
    opacity: .9;
    cursor: pointer;
    transition: transform 220ms var(--gh-ease-fast), color 220ms var(--gh-ease-fast);
    background: transparent;
    border: 0;
    padding: 0;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
}

    .scroll-hint:hover {
        color: rgba(255,255,255,.90);
        transform: translateX(-50%) translateY(-1px);
    }

.scroll-hint__mouse {
    width: 18px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.22);
    position: relative;
}

    .scroll-hint__mouse::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 6px;
        transform: translateX(-50%);
        width: 2px;
        height: 6px;
        border-radius: 999px;
        background: var(--gh-red);
        animation: ghWheel 1.25s var(--gh-ease) infinite;
    }

@keyframes ghWheel {
    0% {
        transform: translate(-50%,0);
        opacity: 1;
    }

    70% {
        transform: translate(-50%,9px);
        opacity: .25;
    }

    100% {
        transform: translate(-50%,0);
        opacity: 1;
    }
}

/* ----------------------------
   Sections
---------------------------- */
.section {
    padding: clamp(44px, 6vw, 74px) 0;
}

.section__head {
    max-width: 860px;
    margin: 0 auto 26px;
    text-align: center;
}

.section__title {
    margin: 0 0 10px;
    font-size: clamp(24px, 3.2vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section__subtitle {
    margin: 0;
    color: var(--gh-muted);
    font-size: clamp(14px, 1.6vw, 17px);
    line-height: 1.65;
}

/* ----------------------------
   Shared mini button
---------------------------- */
.mini-btn {
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.92);
    font-weight: 950;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 160ms var(--gh-ease-fast), background-color 160ms var(--gh-ease-fast), border-color 160ms var(--gh-ease-fast);
}

    .mini-btn:hover,
    .mini-btn:focus-visible {
        outline: none;
        transform: translateY(-1px);
        background: rgba(255,255,255,.09);
        border-color: rgba(255,255,255,.18);
    }

    .mini-btn:disabled {
        opacity: .55;
        cursor: not-allowed;
        transform: none;
    }

/* Select styles (self-contained) */
.selectx {
    position: relative;
    display: block;
}

.selectx__native {
    width: 100%;
    height: 38px;
    padding: 0 38px 0 12px;
    border-radius: 14px;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.92);
    font-weight: 900;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 160ms var(--gh-ease-fast), box-shadow 160ms var(--gh-ease-fast), transform 160ms var(--gh-ease-fast);
}

    .selectx__native:focus-visible {
        box-shadow: 0 0 0 4px rgba(255,42,42,.18);
        border-color: rgba(255,42,42,.45);
    }

.selectx::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid rgba(255,255,255,.72);
    border-bottom: 2px solid rgba(255,255,255,.72);
    transform: translateY(-55%) rotate(45deg);
    pointer-events: none;
}

.selectx__native:disabled {
    opacity: .60;
    cursor: not-allowed;
}

/* ======================================================================
   ✅ Order Tools (LIST VIEW + CART BELOW)
   Matches your cshtml + js
====================================================================== */

/* section wrapper */
.section--tools .gh-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

/* toolbar */
.tools-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 14px 14px;
    border-radius: var(--gh-radius);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--gh-shadow2);
}

.tools-toolbar__left {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.tools-toolbar__right {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.tools-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.10);
    max-width: 100%;
}

.tools-pill__dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--gh-red);
    box-shadow: 0 0 0 4px rgba(255,42,42,.14);
}

.tools-pill__txt {
    color: rgba(255,255,255,.82);
    font-weight: 850;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .tools-pill__txt strong {
        color: rgba(255,255,255,.95);
    }

.tools-muted {
    color: rgba(255,255,255,.62);
    font-weight: 850;
    font-size: 13px;
}

    .tools-muted.is-ok {
        color: rgba(255,255,255,.74);
    }

    .tools-muted.is-err {
        color: rgba(255,42,42,.86);
    }

/* Skeleton (list style) */
.tools-skeleton {
    display: grid;
    gap: 12px;
}

.tool-skel {
    border-radius: var(--gh-radius);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: var(--gh-shadow2);
    padding: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 12px;
    align-items: center;
    position: relative;
}

    /* ✅ NO gradients: pulse shimmer */
    .tool-skel::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,.03);
        opacity: .35;
        animation: ghPulse 1.15s ease-in-out infinite;
        pointer-events: none;
    }

@keyframes ghPulse {
    0%, 100% {
        opacity: .18;
    }

    50% {
        opacity: .42;
    }
}

.tool-skel__img {
    width: 82px;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.10);
}

.tool-skel__content {
    display: grid;
    gap: 10px;
}

.tool-skel__line {
    height: 12px;
    border-radius: 99px;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.06);
}

.tool-skel__line--w1 {
    width: 58%;
}

.tool-skel__line--w2 {
    width: 85%;
}

.tool-skel__row {
    height: 34px;
    border-radius: 16px;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.06);
}

/* Tools list (one column) */
.tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 320ms var(--gh-ease), transform 320ms var(--gh-ease);
}

    .tools-grid.is-ready {
        opacity: 1;
        transform: translateY(0);
    }

/* Tool card (list row) */
.tool-card {
    border-radius: var(--gh-radius);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--gh-shadow2);
    overflow: hidden;
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    padding: 12px;
    align-items: start;
    transition: transform 200ms var(--gh-ease-fast), border-color 200ms var(--gh-ease-fast), background-color 200ms var(--gh-ease-fast), box-shadow 200ms var(--gh-ease-fast);
}

    .tool-card:hover {
        transform: translateY(-2px);
        background: rgba(255,255,255,.06);
        border-color: rgba(255,255,255,.18);
        box-shadow: 0 24px 70px rgba(0,0,0,.62);
    }

    .tool-card.is-disabled {
        opacity: .62;
        filter: saturate(.9);
    }

        .tool-card.is-disabled:hover {
            transform: none;
            box-shadow: var(--gh-shadow2);
        }

/* media: ✅ square thumb */
.tool-media {
    padding: 0;
}

.tool-imgWrap {
    width: 92px;
    aspect-ratio: 1 / 1; /* ✅ 1:1 */
    border-radius: 18px;
    overflow: hidden;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.10);
    display: grid;
    place-items: center;
    position: relative;
}

.tool-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 240ms var(--gh-ease), transform 240ms var(--gh-ease);
}

    .tool-img.is-loaded {
        opacity: 1;
        transform: scale(1);
    }

/* subtle overlay until loaded */
.tool-imgWrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.04);
    opacity: 1;
    transition: opacity 200ms var(--gh-ease);
}

.tool-imgWrap.is-loaded::after {
    opacity: 0;
}

/* body */
.tool-body {
    padding: 0;
    display: grid;
    gap: 10px;
    min-width: 0;
}

.tool-head {
    min-width: 0;
}

.tool-titleRow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.tool-title {
    margin: 0;
    font-weight: 950;
    font-size: 15.5px;
    letter-spacing: -0.01em;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tool-note {
    margin: 6px 0 0;
    color: rgba(255,255,255,.72);
    font-weight: 800;
    font-size: 13px;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

/* availability pill */
.tool-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    font-weight: 950;
    font-size: 12px;
    letter-spacing: .2px;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.12);
    white-space: nowrap;
    flex: 0 0 auto;
}

    .tool-pill::before {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 99px;
        background: var(--gh-green);
        box-shadow: 0 0 0 4px rgba(50,213,131,.14);
    }

.tool-pill--active::before {
    background: var(--gh-green);
    box-shadow: 0 0 0 4px rgba(50,213,131,.14);
}

.tool-pill--soon::before {
    background: var(--gh-yellow);
    box-shadow: 0 0 0 4px rgba(255,209,102,.14);
}

.tool-pill--out::before {
    background: var(--gh-red);
    box-shadow: 0 0 0 4px rgba(255,42,42,.14);
}

/* ✅ Variant + Duration: same line */
.tool-pickers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pick label {
    display: block;
    font-weight: 950;
    font-size: 12px;
    color: rgba(255,255,255,.78);
    margin-bottom: 6px;
}

/* price row */
.tool-priceRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.priceBox {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.priceFinal {
    font-weight: 950;
    font-size: 18px;
    color: var(--gh-red);
    text-shadow: 0 10px 24px rgba(255,42,42,.18);
}

.priceMeta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.priceRegular {
    font-weight: 850;
    font-size: 12.5px;
    color: rgba(255,255,255,.58);
    text-decoration: line-through;
}

.priceOffer {
    font-weight: 950;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255,42,42,.12);
    border: 1px solid rgba(255,42,42,.30);
    color: rgba(255,255,255,.90);
}

.tool-add {
    white-space: nowrap;
}

    .tool-add.is-added {
        background: rgba(50,213,131,.10);
        border-color: rgba(50,213,131,.30);
    }

        .tool-add.is-added:hover {
            background: rgba(50,213,131,.14);
            border-color: rgba(50,213,131,.45);
        }

.tool-metaRow {
    padding-top: 2px;
}

.tool-hint {
    color: rgba(255,255,255,.62);
    font-weight: 850;
    font-size: 12.5px;
}

/* ----------------------------
   Cart panel (below tools)
---------------------------- */
.cart-panel {
    border-radius: var(--gh-radius);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--gh-shadow2);
    padding: 14px;
    display: grid;
    gap: 12px;
    margin-top: 6px;
}

.cart-panel__head {
    display: grid;
    gap: 6px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.cart-panel__headTop {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.cart-panel__title {
    margin: 0;
    font-weight: 950;
    letter-spacing: -.01em;
    font-size: 16px;
}

.cart-mini {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.82);
    font-weight: 900;
    font-size: 12.5px;
}

    .cart-mini strong {
        color: rgba(255,255,255,.96);
    }

.cart-mini__sep {
    opacity: .55;
}

.cart-panel__sub {
    color: rgba(255,255,255,.66);
    font-weight: 850;
    font-size: 12.5px;
}

.cart-empty {
    color: rgba(255,255,255,.62);
    font-weight: 850;
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.08);
}

.cart-list {
    display: grid;
    gap: 10px;
    max-height: 420px;
    overflow: auto;
    padding-right: 4px;
}

    /* nicer scrollbars (webkit) */
    .cart-list::-webkit-scrollbar {
        width: 10px;
    }

    .cart-list::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,.10);
        border-radius: 99px;
        border: 2px solid rgba(0,0,0,.18);
    }

    .cart-list::-webkit-scrollbar-track {
        background: rgba(0,0,0,.12);
        border-radius: 99px;
    }

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px 10px;
    border-radius: 16px;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.10);
    transition: transform 160ms var(--gh-ease-fast), border-color 160ms var(--gh-ease-fast);
}

    .cart-item:hover {
        transform: translateY(-1px);
        border-color: rgba(255,255,255,.18);
    }

.cart-item__title {
    margin: 0;
    font-weight: 950;
    font-size: 13.5px;
    letter-spacing: -.01em;
}

.cart-item__sub {
    margin: 3px 0 0;
    color: rgba(255,255,255,.66);
    font-weight: 850;
    font-size: 12.5px;
}

.cart-item__price {
    font-weight: 950;
    color: rgba(255,255,255,.92);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .cart-item__price .cart-off {
        font-weight: 950;
        font-size: 11.5px;
        padding: 3px 7px;
        border-radius: 999px;
        background: rgba(255,42,42,.12);
        border: 1px solid rgba(255,42,42,.28);
    }

.cart-item__rm {
    margin-left: 10px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.92);
    font-weight: 950;
    cursor: pointer;
    transition: transform 160ms var(--gh-ease-fast), background-color 160ms var(--gh-ease-fast), border-color 160ms var(--gh-ease-fast);
}

    .cart-item__rm:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,.09);
        border-color: rgba(255,42,42,.40);
    }

/* cart footer actions */
.cart-panel__foot {
    display: grid;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.08);
}

    .cart-panel__foot .mini-btn,
    .cart-panel__foot .btnx {
        width: 100%;
    }

.cart-footnote {
    color: rgba(255,255,255,.62);
    font-weight: 850;
    font-size: 12.5px;
    text-align: center;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(0,0,0,.16);
    border: 1px solid rgba(255,255,255,.08);
}

/* ======================================================================
   Services grid + cards
====================================================================== */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: clamp(12px, 2.6vw, 18px);
}

.svc-card {
    border-radius: var(--gh-radius);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--gh-shadow2);
    overflow: hidden;
    transform: translateZ(0);
    transition: transform 200ms var(--gh-ease-fast), border-color 200ms var(--gh-ease-fast), background-color 200ms var(--gh-ease-fast), box-shadow 200ms var(--gh-ease-fast);
}

    .svc-card:hover {
        transform: translateY(-3px);
        background: rgba(255,255,255,.06);
        border-color: rgba(255,255,255,.20);
        box-shadow: 0 24px 70px rgba(0,0,0,.62);
    }

.svc-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 12px;
    padding: 16px;
    background: rgba(0,0,0,.12);
}

.svc-ic {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 14px 28px rgba(0,0,0,.45);
    transition: transform 200ms var(--gh-ease-fast), border-color 200ms var(--gh-ease-fast);
}

.svc-card:hover .svc-ic {
    transform: translateY(-1px);
    border-color: rgba(255,42,42,.45);
}

.svc-svg {
    width: 26px;
    height: 26px;
}

    .svc-svg * {
        fill: none;
        stroke: rgba(255,255,255,.88);
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.svc-meta {
    min-width: 0;
}

.svc-k {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.svc-title {
    margin: 0;
    font-size: 15.5px;
    font-weight: 950;
    letter-spacing: -0.01em;
}

.svc-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    background: rgba(255,42,42,.12);
    border: 1px solid rgba(255,42,42,.32);
    color: rgba(255,255,255,.92);
}

.svc-sub {
    margin: 6px 0 0;
    color: var(--gh-muted);
    font-size: 13.5px;
    line-height: 1.45;
}

/* Accordion toggle */
.svc-toggle {
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.18);
    color: rgba(255,255,255,.92);
    border-radius: 14px;
    padding: 9px 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 950;
    font-size: 13px;
    transition: transform 180ms var(--gh-ease-fast), background-color 180ms var(--gh-ease-fast), border-color 180ms var(--gh-ease-fast);
}

    .svc-toggle:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,.05);
        border-color: rgba(255,255,255,.18);
    }

    .svc-toggle:focus-visible {
        outline: none;
        box-shadow: 0 0 0 4px rgba(255,42,42,.18);
    }

.svc-toggle__ic {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255,255,255,.82);
    border-bottom: 2px solid rgba(255,255,255,.82);
    transform: rotate(45deg);
    transition: transform 220ms var(--gh-ease);
}

.svc-card.is-open .svc-toggle__ic {
    transform: rotate(-135deg);
}

/* Accordion body */
.svc-body {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 420ms var(--gh-ease);
    will-change: max-height;
}

.svc-list {
    margin: 0;
    padding: 0 16px 12px 34px;
    color: rgba(255,255,255,.78);
    font-weight: 800;
    font-size: 13.5px;
    line-height: 1.7;
}

.svc-actions {
    padding: 0 16px 16px;
    display: flex;
    justify-content: flex-end;
}

/* ----------------------------
   Process
---------------------------- */
.section--process {
    padding-top: 10px;
}

.proc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: clamp(12px, 2.6vw, 18px);
}

.proc {
    border-radius: var(--gh-radius);
    padding: 18px 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--gh-shadow2);
    transition: transform 200ms var(--gh-ease-fast), border-color 200ms var(--gh-ease-fast), background-color 200ms var(--gh-ease-fast), box-shadow 200ms var(--gh-ease-fast);
}

    .proc:hover {
        transform: translateY(-3px);
        background: rgba(255,255,255,.06);
        border-color: rgba(255,255,255,.20);
        box-shadow: 0 24px 70px rgba(0,0,0,.62);
    }

.proc__ic {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255,42,42,.12);
    border: 1px solid rgba(255,42,42,.35);
    font-weight: 950;
    letter-spacing: .2px;
    margin-bottom: 10px;
}

.proc__t {
    margin: 0 0 6px;
    font-size: 15.5px;
    font-weight: 950;
    letter-spacing: -0.01em;
}

.proc__s {
    margin: 0;
    color: var(--gh-muted);
    font-size: 13.5px;
    line-height: 1.65;
    font-weight: 800;
}

/* ----------------------------
   Contact
---------------------------- */
.section--contact {
    padding-bottom: clamp(60px, 7vw, 90px);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(14px, 3vw, 22px);
    align-items: stretch;
}

.contact-left,
.contact-right {
    border-radius: var(--gh-radius);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--gh-shadow2);
    padding: clamp(16px, 2.4vw, 22px);
}

.contact-title {
    margin: 0 0 10px;
    font-size: clamp(22px, 3.2vw, 34px);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    margin: 0 0 14px;
    color: var(--gh-muted);
    line-height: 1.65;
    font-weight: 800;
}

.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.contact-note {
    margin-top: 12px;
    color: rgba(255,255,255,.70);
    font-size: 13px;
    font-weight: 850;
}

.contact-card {
    display: grid;
    gap: 12px;
}

.contact-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.10);
    transition: border-color 180ms var(--gh-ease-fast), transform 180ms var(--gh-ease-fast);
}

    .contact-row:hover {
        border-color: rgba(255,255,255,.18);
        transform: translateY(-1px);
    }

.contact-k {
    font-weight: 950;
    color: rgba(255,255,255,.86);
}

.contact-v {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.contact-val {
    color: rgba(255,255,255,.78);
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-link {
    color: rgba(255,255,255,.90);
    text-decoration: none;
    font-weight: 950;
}

    .contact-link:hover {
        text-decoration: underline;
    }

.contact-mini {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.10);
}

.contact-mini__dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--gh-red);
    box-shadow: 0 0 0 4px rgba(255,42,42,.14);
}

.contact-mini__txt {
    color: rgba(255,255,255,.78);
    font-weight: 850;
    font-size: 13px;
}

/* ----------------------------
   Reveal
---------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 520ms var(--gh-ease), transform 520ms var(--gh-ease);
}

    .reveal.is-in {
        opacity: 1;
        transform: translateY(0);
    }

/* Toast */
.gh-toast {
    position: fixed;
    right: 18px;
    bottom: 76px;
    z-index: 1300;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,.78);
    border: 1px solid rgba(255,255,255,.18);
    border-left: 3px solid var(--gh-red);
    color: rgba(255,255,255,.95);
    padding: 12px 14px;
    border-radius: 14px;
    max-width: min(380px, calc(100vw - 36px));
    box-shadow: var(--gh-shadow2);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 180ms var(--gh-ease-fast), transform 180ms var(--gh-ease-fast);
}

    .gh-toast.is-show {
        opacity: 1;
        transform: translateY(0);
    }

/* ----------------------------
   Responsive
---------------------------- */
@media (max-width: 1100px) {
    .svc-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 900px) {
    .gh-hero__inner {
        grid-template-columns: 1fr;
    }

    .gh-hero__visual {
        order: -1;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .gh-nav {
        display: none;
    }

    /* tools list row becomes stacked */
    .tool-card {
        grid-template-columns: 78px 1fr;
    }

    .tool-imgWrap {
        width: 78px;
        border-radius: 16px;
    }
}

@media (max-width: 620px) {
    .proc-grid {
        grid-template-columns: 1fr;
    }

    .snap-grid {
        grid-template-columns: 1fr;
    }

    .snap {
        align-items: flex-start;
    }

    .svc-top {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "ic meta"
            "btn btn";
        row-gap: 10px;
    }

    .svc-ic {
        grid-area: ic;
    }

    .svc-meta {
        grid-area: meta;
    }

    .svc-toggle {
        grid-area: btn;
        justify-self: flex-end;
    }

    /* ✅ selects may wrap on small screens for readability */
    .tool-pickers {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }

    .contact-row {
        grid-template-columns: 80px 1fr;
    }

    .gh .btnx {
        height: 32px;
        padding: 0 10px;
        font-size: 11px;
    }

    .gh-hero__meta {
        gap: 10px;
    }

    .gh .pill {
        gap: 6px;
        padding: 7px 10px;
    }

    .gh .pill__text {
        font-size: 10px;
        font-weight: 650;
    }

    .gh-toast {
        right: 14px;
        bottom: 72px;
    }

    .gh-brandlogo {
        width: 44px;
        height: 44px;
        border-radius: 15px;
    }

    .gh-brandtag {
        font-size: 12px;
        padding: 8px 11px;
    }

    /* tools */
    .tool-card {
        grid-template-columns: 72px 1fr;
        padding: 10px;
    }

    .tool-imgWrap {
        width: 72px;
        border-radius: 15px;
    }

    .tool-title {
        font-size: 15px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .gh .btnx,
    .svc-card,
    .svc-body,
    .scroll-hint__mouse::after,
    .gh-toast,
    .tools-grid,
    .tool-img,
    .tool-card,
    .tool-skel::before {
        transition: none !important;
        animation: none !important;
    }
}
