:root {
    --gw-blue: #0047ab;
    --gw-blue-d: #003580;
    --gw-blue-l: #1a63c7;
    --gw-lime: #b2e646;
    --gw-lime-d: #8fb832;
    --gw-ink: #0f172a;
    --gw-muted: #64748b;
    --gw-line: rgba(0, 71, 171, .1);
    --gw-bg: #f3f6fb;
    --gw-card: #fff;
    --gw-radius: 22px;
    --gw-shadow: 0 18px 50px rgba(0, 53, 128, .08);
    --gw-grad:
        radial-gradient(ellipse 52% 48% at 8% 12%, rgba(178, 230, 70, .42) 0%, transparent 62%),
        radial-gradient(ellipse 46% 40% at 92% 88%, rgba(162, 214, 69, .22) 0%, transparent 60%),
        linear-gradient(155deg, #003580 0%, #0047ab 42%, #0056b3 72%, #003878 100%);
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body.gw {
    font-family: Inter, system-ui, sans-serif;
    color: var(--gw-ink);
    background: var(--gw-bg);
    min-height: 100dvh;
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.gw-wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

/* Header */
.gw-head {
    position: sticky; top: 0; z-index: 40;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gw-line);
}
.gw-head__inner {
    width: min(1180px, calc(100% - 24px));
    margin: 0 auto;
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.gw-brand {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0;
}
.gw-brand img {
    height: 42px; width: auto; max-width: min(168px, 46vw);
    object-fit: contain; border-radius: 8px; display: block;
}
.gw-nav { display: none; flex: 1; align-items: center; gap: 2px; }
.gw-nav a {
    text-decoration: none; color: #334155;
    font-family: Poppins, sans-serif; font-size: 13px; font-weight: 600;
    padding: 8px 11px; border-radius: 999px;
    display: inline-flex; align-items: center; gap: 6px;
}
.gw-nav-ico { flex-shrink: 0; display: block; }
.gw-nav a:hover { background: rgba(0,71,171,.06); color: var(--gw-blue); }
.gw-nav a.is-active { background: rgba(178,230,70,.38); color: var(--gw-blue-d); }
.gw-head__cta { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.gw-head__cta form { margin: 0; }
.gw-iconbtn {
    width: 40px; height: 40px; border: 0; background: #eef3fb; color: var(--gw-blue);
    border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
}
.gw-iconbtn--light { background: rgba(255,255,255,.12); color: #fff; }

/* Buttons */
.gw-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    padding: 12px 20px; border-radius: 999px; border: 0; cursor: pointer;
    text-decoration: none; font-family: Poppins, sans-serif; font-weight: 700; font-size: 14px;
}
.gw-btn--sm { padding: 9px 14px; font-size: 13px; }
.gw-btn--lime { background: var(--gw-lime); color: var(--gw-blue-d); box-shadow: 0 8px 20px rgba(178,230,70,.35); }
.gw-btn--white { background: #fff; color: var(--gw-blue); }
.gw-btn--ghost { background: transparent; color: var(--gw-blue); border: 1.5px solid rgba(0,71,171,.22); }
.gw-btn--line { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }

/* Drawer */
.gw-drawer-bg {
    position: fixed; inset: 0; background: rgba(15,23,42,.5); z-index: 80;
    opacity: 0; visibility: hidden; transition: .25s;
}
.gw-drawer {
    position: fixed; inset: 0 auto 0 0; width: min(320px, 88vw); z-index: 90;
    background: var(--gw-grad); color: #fff; transform: translateX(-110%);
    transition: transform .28s cubic-bezier(.32,.72,0,1);
    display: flex; flex-direction: column;
}
body.portal-sidebar-open .gw-drawer { transform: none; }
body.portal-sidebar-open .gw-drawer-bg { opacity: 1; visibility: visible; }
.gw-drawer__head {
    display: flex; align-items: center; gap: 12px;
    padding: calc(18px + env(safe-area-inset-top)) 16px 16px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.gw-drawer__head img { width: 40px; height: 40px; }
.gw-drawer__head strong, .gw-drawer__head span { display: block; }
.gw-drawer__head strong { font-family: Poppins, sans-serif; font-size: 14px; }
.gw-drawer__head span { font-size: 12px; opacity: .75; }
.gw-drawer__nav { flex: 1; overflow: auto; padding: 12px; }
.gw-drawer__nav a {
    display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; padding: 12px 14px;
    border-radius: 12px; font-weight: 600; font-size: 15px;
}
.gw-drawer__nav a.is-active, .gw-drawer__nav a:hover { background: rgba(178,230,70,.18); }
.gw-drawer__foot { padding: 16px; display: grid; gap: 8px; }
.gw-drawer__foot a, .gw-drawer__foot button {
    color: #fff; background: rgba(255,255,255,.08); border: 0; border-radius: 12px;
    padding: 12px; text-align: center; text-decoration: none; cursor: pointer; width: 100%;
}

/* Hero */
.gw-hero {
    position: relative; overflow: hidden; color: #fff;
    background: var(--gw-grad);
    padding: 36px 0 48px;
}
.gw-hero__inner { width: min(1180px, calc(100% - 32px)); margin: 0 auto; position: relative; z-index: 1; }
.gw-hero__grid { display: grid; gap: 28px; align-items: center; }
.gw-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(178,230,70,.18); color: var(--gw-lime);
    border: 1px solid rgba(178,230,70,.35);
    padding: 6px 12px; border-radius: 999px;
    font-family: Poppins, sans-serif; font-size: 12px; font-weight: 700;
}
.gw-hero::before {
    content: ""; position: absolute; inset: -20% -10% auto auto; width: 55%; height: 80%;
    background: radial-gradient(circle, rgba(178,230,70,.22) 0%, transparent 68%);
    pointer-events: none;
}
.gw-hero h1 {
    font-family: Poppins, sans-serif; font-weight: 800; letter-spacing: -.04em;
    font-size: clamp(28px, 5vw, 52px); line-height: 1.12; margin: 14px 0 12px; max-width: 18ch;
}
.gw-hero p { margin: 0 0 22px; max-width: 52ch; font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.88); }
.gw-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.gw-hero__mark {
    width: min(360px, 72vw); margin: 0 auto; opacity: .95; filter: drop-shadow(0 20px 40px rgba(0,0,0,.25));
}
.gw-hero__proof {
    display: flex; align-items: center; gap: 12px; margin-top: 22px;
    font-size: 13px; color: rgba(255,255,255,.86); line-height: 1.4; max-width: 46ch;
}
.gw-hero__proof b { color: var(--gw-lime); font-family: Poppins, sans-serif; }
.gw-avatars { display: flex; flex-shrink: 0; }
.gw-avatars__item {
    width: 34px; height: 34px; border-radius: 50%; margin-left: -8px;
    border: 2px solid rgba(0,53,128,.85);
    background: linear-gradient(135deg, #dbe7ff, #eef8d4);
    color: var(--gw-blue); font-family: Poppins, sans-serif; font-weight: 800; font-size: 12px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.gw-avatars__item:first-child { margin-left: 0; }
.gw-avatars__item img { width: 100%; height: 100%; object-fit: cover; }
.gw-pagehead {
    background: var(--gw-grad); color: #fff; padding: 28px 0 32px;
    position: relative; overflow: hidden;
}
.gw-pagehead::before {
    content: ""; position: absolute; inset: -30% -20% auto auto; width: 55%; height: 90%;
    background: radial-gradient(circle, rgba(178,230,70,.2) 0%, transparent 68%);
    pointer-events: none;
}
.gw-pagehead .gw-wrap { position: relative; z-index: 1; }
.gw-pagehead h1 {
    font-family: Poppins, sans-serif; font-size: clamp(26px, 4vw, 40px);
    letter-spacing: -.03em; margin: 10px 0 8px; line-height: 1.15; max-width: 20ch;
}
.gw-pagehead p { margin: 0; max-width: 60ch; color: rgba(255,255,255,.86); line-height: 1.6; }
.gw-pagehead--rich { padding: 36px 0 56px; }
.gw-pagehead__actions { margin-top: 18px; }

/* Stats / sections */
.gw-stats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
    margin-top: -28px; position: relative; z-index: 2;
}
.gw-stat {
    background: #fff; border-radius: 18px; padding: 16px 14px;
    box-shadow: var(--gw-shadow); border: 1px solid rgba(255,255,255,.8);
}
.gw-stat__ico {
    width: 34px; height: 34px; border-radius: 11px; margin-bottom: 10px;
    background: rgba(178,230,70,.38); color: var(--gw-blue-d);
    display: grid; place-items: center;
}
.gw-stat b { display: block; font-family: Poppins, sans-serif; font-size: 22px; color: var(--gw-blue); line-height: 1.1; }
.gw-stat span { font-size: 12px; color: var(--gw-muted); font-weight: 600; }

.gw-section { padding: 40px 0 8px; }
.gw-section__intro { margin-bottom: 22px; max-width: 52ch; }
.gw-section__intro h2 {
    font-family: Poppins, sans-serif; font-size: clamp(22px, 3vw, 28px);
    margin: 0 0 8px; letter-spacing: -.03em;
}
.gw-section__intro--center { margin-left: auto; margin-right: auto; text-align: center; }
.gw-section__intro--center .gw-lead { margin-left: auto; margin-right: auto; }

.gw-story { display: grid; gap: 22px; align-items: start; }
.gw-story__title {
    font-family: Poppins, sans-serif; font-size: clamp(22px, 3vw, 28px);
    margin: 0 0 12px; letter-spacing: -.03em; line-height: 1.2;
}
.gw-story__media {
    border-radius: var(--gw-radius); overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 53, 128, .08);
    background: linear-gradient(145deg, #003580, #0047ab);
    min-height: 220px;
}
.gw-story__media img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; }
.gw-label {
    font-family: Poppins, sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; color: var(--gw-blue); margin-bottom: 6px;
}
.gw-section__head {
    display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 18px;
}
.gw-section__head h2 {
    font-family: Poppins, sans-serif; font-size: 22px; margin: 0; letter-spacing: -.03em;
}
.gw-section__head a { color: var(--gw-blue); font-weight: 700; text-decoration: none; font-size: 14px; }
.gw-grid { display: grid; gap: 14px; }
.gw-grid--2 { grid-template-columns: 1fr; }
.gw-grid--3 { grid-template-columns: 1fr; }
.gw-grid--4 { grid-template-columns: 1fr 1fr; }

/* Cards */
.gw-card, .gw-event, .gw-person, .gw-feat, .gw-news, .gw-quote {
    background: var(--gw-card); border-radius: var(--gw-radius);
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 10px 30px rgba(0, 53, 128, .06);
}
.gw-feat, .gw-event, .gw-person, .gw-news, .gw-card, .gw-spot, .gw-pill, .gw-partner {
    text-decoration: none; color: inherit;
    transition: transform .18s ease, box-shadow .18s ease;
}
.gw-feat, .gw-event, .gw-person, .gw-news, .gw-card { display: block; }
.gw-feat { padding: 20px; min-height: 180px; }
.gw-grid--4 .gw-feat { min-height: 0; }
.gw-feat__num {
    font-family: Poppins, sans-serif; font-size: 13px; font-weight: 800;
    color: var(--gw-blue-d); background: var(--gw-lime);
    width: 36px; height: 36px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.gw-feat h3 { font-family: Poppins, sans-serif; font-size: 17px; margin: 0 0 8px; }
.gw-feat p { margin: 0; color: var(--gw-muted); font-size: 14px; line-height: 1.55; }
.gw-feat__soon { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 700; color: #b45309; background: #fef3c7; padding: 3px 8px; border-radius: 999px; }
.gw-feat__go { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--gw-blue); }

.gw-spot {
    display: block; overflow: hidden; background: var(--gw-card); border-radius: var(--gw-radius);
    border: 1px solid rgba(255,255,255,.9); box-shadow: 0 10px 30px rgba(0, 53, 128, .06);
    text-decoration: none; color: inherit;
}
.gw-spot__media {
    min-height: 180px; background: linear-gradient(145deg, #003580, #0047ab);
}
.gw-spot__media img { width: 100%; height: 220px; object-fit: cover; }
.gw-spot__body { padding: 20px 22px 22px; }
.gw-spot__body h2 {
    font-family: Poppins, sans-serif; font-size: clamp(20px, 3vw, 26px);
    margin: 10px 0 8px; letter-spacing: -.03em; line-height: 1.2;
}
.gw-spot__body p { margin: 0 0 8px; color: var(--gw-muted); }
.gw-spot__excerpt { font-size: 14px; line-height: 1.55; }
.gw-spot .gw-btn { margin-top: 10px; }

.gw-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.gw-pill {
    background: #fff; border-radius: 16px; padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0,53,128,.05);
    display: flex; flex-direction: column; gap: 2px; min-width: 140px;
}
.gw-pill b { font-family: Poppins, sans-serif; color: var(--gw-blue); font-size: 14px; }
.gw-pill span { font-size: 12px; color: var(--gw-muted); font-weight: 600; }

.gw-partners { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.gw-partner {
    background: #fff; border-radius: 16px; padding: 20px 12px;
    text-align: center; font-family: Poppins, sans-serif; font-weight: 800;
    font-size: 13px; color: var(--gw-blue); letter-spacing: -.02em;
    box-shadow: 0 8px 24px rgba(0,53,128,.05);
}

.gw-event { overflow: hidden; }
.gw-event__cover {
    height: 150px; position: relative; color: #fff;
    display: flex; align-items: flex-end; padding: 14px;
    background: linear-gradient(145deg, #003580, #0047ab);
}
.gw-event__cover--1 { background: linear-gradient(145deg, #0047ab, #1a7ad9); }
.gw-event__cover--2 { background: linear-gradient(160deg, #003878 0%, #0047ab 55%, #7cae2a 140%); }
.gw-event__cover--3 { background: linear-gradient(145deg, #012a66, #0b4fbf); }
.gw-event__cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gw-event__date {
    position: relative; z-index: 1;
    background: rgba(0,0,0,.28); backdrop-filter: blur(8px);
    border-radius: 12px; padding: 6px 10px; font-family: Poppins, sans-serif; font-size: 12px; font-weight: 700;
}
.gw-event__body { padding: 14px 16px 16px; }
.gw-chip {
    display: inline-flex; padding: 3px 8px; border-radius: 999px; font-size: 11px; font-weight: 700;
    background: rgba(0,71,171,.08); color: var(--gw-blue); text-decoration: none;
}
.gw-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.gw-facts { display: grid; gap: 8px; margin-top: 16px; }
.gw-facts div { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.gw-facts b { color: var(--gw-muted); font-weight: 600; }
.gw-event h3 { font-family: Poppins, sans-serif; font-size: 16px; margin: 8px 0 6px; line-height: 1.3; }
.gw-event__meta { margin: 0; color: var(--gw-muted); font-size: 13px; }

.gw-person { padding: 18px; text-align: center; }
.gw-avatar {
    width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 10px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #dbe7ff, #eef8d4);
    color: var(--gw-blue); font-family: Poppins, sans-serif; font-weight: 800; font-size: 22px;
    overflow: hidden;
}
.gw-avatar img { width: 100%; height: 100%; object-fit: cover; }
.gw-person h3 { font-family: Poppins, sans-serif; font-size: 15px; margin: 0 0 4px; }
.gw-person p { margin: 0; color: var(--gw-muted); font-size: 13px; }

.gw-news { display: flex; gap: 14px; padding: 14px; align-items: center; }
.gw-news__thumb {
    width: 92px; height: 92px; flex-shrink: 0; border-radius: 16px;
    background: linear-gradient(135deg, #dbe7ff, #c9f07a);
}
.gw-news h3 { font-family: Poppins, sans-serif; font-size: 15px; margin: 0 0 6px; line-height: 1.3; }
.gw-news p { margin: 0; color: var(--gw-muted); font-size: 13px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.gw-card { padding: 20px; }
.gw-card h3 { font-family: Poppins, sans-serif; font-size: 17px; margin: 0 0 8px; }
.gw-card p, .gw-prose { color: #334155; line-height: 1.7; margin: 0; }
.gw-lead { color: var(--gw-muted); line-height: 1.7; margin: 0 0 16px; max-width: 70ch; }
.gw-chip.is-active { background: var(--gw-lime); color: var(--gw-blue-d); }
.gw-filters { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 14px; }
.gw-filters .gw-chip { padding: 6px 12px; font-size: 12px; }

.gw-filter {
    background: #fff; border-radius: 22px; padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 53, 128, .06);
    margin-top: 18px;
}
.gw-filter__search { display: flex; gap: 8px; }
.gw-filter__search input[type="search"] {
    flex: 1; min-width: 0; border: 1px solid var(--gw-line); border-radius: 999px;
    padding: 12px 16px; background: #f8fafc; color: var(--gw-ink);
}
.gw-filter__fields {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px;
}
.gw-filter__fields select,
.gw-filter__fields input[type="date"] {
    border: 1px solid var(--gw-line); border-radius: 12px; padding: 10px 12px;
    background: #f8fafc; color: var(--gw-ink); max-width: 100%;
}
.gw-filter__meta {
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    margin-top: 12px; font-size: 13px; color: var(--gw-muted); font-weight: 600;
}
.gw-filter__meta b { color: var(--gw-blue); }
.gw-filter__meta a { color: var(--gw-blue); font-weight: 700; text-decoration: none; }

.gw-highlights {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px;
}
.gw-highlights span {
    background: #fff; border-radius: 999px; padding: 8px 14px;
    font-size: 13px; font-weight: 700; color: var(--gw-blue);
    box-shadow: 0 8px 24px rgba(0,53,128,.05);
}
.gw-product {
    background: var(--gw-card); border-radius: var(--gw-radius);
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 10px 30px rgba(0, 53, 128, .06);
    overflow: hidden; text-decoration: none; color: inherit; display: block;
    transition: transform .18s ease, box-shadow .18s ease;
}
.gw-product__media {
    position: relative; aspect-ratio: 1; background: linear-gradient(135deg, #dbe7ff, #eef8d4);
}
.gw-product__media img { width: 100%; height: 100%; object-fit: cover; }
.gw-product__badge { position: absolute; top: 12px; left: 12px; background: var(--gw-lime); color: var(--gw-blue-d); }
.gw-product__sale { position: absolute; top: 12px; right: 12px; background: #fff; }
.gw-product__body { padding: 14px 16px 16px; }
.gw-product__body h3 { font-family: Poppins, sans-serif; font-size: 16px; margin: 8px 0 6px; }
.gw-product__body p { margin: 6px 0 0; color: var(--gw-muted); font-size: 13px; }
.gw-product__price { display: flex; align-items: baseline; gap: 8px; }
.gw-product__price b { font-family: Poppins, sans-serif; font-size: 18px; color: var(--gw-blue); }
.gw-product__price s { color: var(--gw-muted); font-size: 13px; }
.gw-product-detail { display: grid; gap: 16px; }
.gw-product-detail__media {
    border-radius: var(--gw-radius); overflow: hidden; min-height: 240px;
    background: linear-gradient(135deg, #dbe7ff, #eef8d4);
}
.gw-product-detail__media img { width: 100%; height: 100%; max-height: 420px; object-fit: cover; display: block; }
.gw-stack { display: grid; gap: 14px; }
.gw-card--media { padding: 0; overflow: hidden; }
.gw-card__body { padding: 16px 18px 18px; }
.gw-card--media h3 { margin-top: 8px; }
.gw-media { width: 100%; height: 168px; object-fit: cover; display: block; }
.gw-media--wide { height: 220px; border-radius: var(--gw-radius); margin: 18px 0 0; }
.gw-news__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gw-quote { padding: 22px; }
.gw-quote p { font-size: 16px; line-height: 1.6; margin: 0 0 12px; }
.gw-quote span { color: var(--gw-muted); font-size: 13px; font-weight: 600; }
.gw-quote__who { display: flex; align-items: center; gap: 10px; }
.gw-avatar--sm { width: 40px; height: 40px; font-size: 14px; margin: 0; }

.gw-partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.gw-partner-card {
    background: #fff; border-radius: 18px; padding: 18px 12px 14px;
    text-align: center; text-decoration: none; color: inherit;
    box-shadow: 0 8px 24px rgba(0,53,128,.05);
    display: flex; flex-direction: column; align-items: center; gap: 8px; min-height: 110px;
    transition: transform .18s ease, box-shadow .18s ease;
}
.gw-partner-card b, .gw-partner-card__mark {
    font-family: Poppins, sans-serif; font-size: 22px; font-weight: 800; color: var(--gw-blue);
    letter-spacing: -.03em;
}
.gw-partner-card__mark { font-size: 42px; margin-bottom: 8px; }
.gw-partner-card img { max-width: 88px; max-height: 40px; object-fit: contain; }
.gw-partner-card span { font-size: 12px; font-weight: 700; color: var(--gw-muted); }

.gw-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.gw-checklist li { display: flex; gap: 10px; align-items: flex-start; }
.gw-checklist span {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    background: rgba(178,230,70,.4); color: var(--gw-blue-d);
    display: grid; place-items: center;
}
.gw-checklist b { display: block; font-size: 14px; }
.gw-checklist p { margin: 2px 0 0; color: var(--gw-muted); font-size: 13px; }

.gw-pack {
    background: var(--gw-card); border-radius: var(--gw-radius); padding: 22px;
    box-shadow: 0 10px 30px rgba(0,53,128,.06); text-decoration: none; color: inherit;
    display: flex; flex-direction: column; gap: 6px; position: relative;
    transition: transform .18s ease, box-shadow .18s ease;
}
.gw-pack--hot { box-shadow: 0 12px 36px rgba(0,71,171,.16); outline: 2px solid var(--gw-lime); }
.gw-pack__hot { position: absolute; top: 14px; right: 14px; background: var(--gw-lime); color: var(--gw-blue-d); }
.gw-pack__desc { color: var(--gw-muted); font-size: 14px; line-height: 1.5; margin: 4px 0 8px; }
.gw-pack__list { margin: 8px 0 14px; padding: 0; list-style: none; display: grid; gap: 8px; flex: 1; }
.gw-pack__list li { font-size: 13px; color: #334155; padding-left: 18px; position: relative; }
.gw-pack__list li::before { content: "✓"; position: absolute; left: 0; color: var(--gw-blue); font-weight: 800; }
.gw-pack .gw-btn { margin-top: auto; align-self: flex-start; }

.gw-contacts { display: grid; gap: 10px; margin-top: 18px; }
.gw-contact {
    display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit;
    background: #fff; border-radius: 16px; padding: 12px 14px;
    box-shadow: 0 8px 24px rgba(0,53,128,.05);
}
.gw-contact .gw-feat__num { margin: 0; }
.gw-form {
    background: #fff; border-radius: var(--gw-radius); padding: 22px;
    box-shadow: 0 10px 30px rgba(0,53,128,.06); display: grid; gap: 12px;
}
.gw-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; color: var(--gw-blue-d); }
.gw-input {
    width: 100%; border: 1px solid var(--gw-line); border-radius: 12px;
    padding: 11px 12px; background: #f8fafc; color: var(--gw-ink); font: inherit; font-weight: 500;
}

.gw-timeline { display: grid; gap: 12px; position: relative; }
.gw-tl {
    display: grid; grid-template-columns: 72px 1fr; gap: 14px; align-items: start;
    background: #fff; border-radius: 18px; padding: 16px 18px; box-shadow: 0 8px 24px rgba(0,53,128,.05);
}
.gw-tl b {
    color: var(--gw-blue-d); font-family: Poppins, sans-serif; font-size: 13px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(178,230,70,.42); border-radius: 999px; min-height: 28px; padding: 0 10px;
}
.gw-tl h3 { margin: 0 0 4px; font-family: Poppins, sans-serif; font-size: 16px; }
.gw-tl p { margin: 0; color: var(--gw-muted); font-size: 13px; line-height: 1.55; }

.gw-band {
    margin: 28px 0 8px; border-radius: 28px; overflow: hidden; color: #fff;
    background: var(--gw-grad); padding: 28px 22px;
    display: flex; flex-direction: column; gap: 14px;
}
.gw-band h2 { font-family: Poppins, sans-serif; margin: 0 0 6px; font-size: 24px; letter-spacing: -.03em; }
.gw-band p { margin: 0; color: rgba(255,255,255,.86); }

.gw-price { font-family: Poppins, sans-serif; font-size: 22px; color: var(--gw-blue); font-weight: 800; margin: 8px 0; }
.gw-empty { text-align: center; color: var(--gw-muted); padding: 40px 16px; }
.gw-back { display: inline-block; margin: 16px 0 0; color: var(--gw-blue); font-weight: 700; text-decoration: none; }
.gw-promo {
    display: flex; gap: 12px; align-items: center;
    background: #f7ffe8; border: 1px solid rgba(178,230,70,.5);
    border-radius: 18px; padding: 14px 16px; margin-bottom: 16px;
}
.gw-promo b { color: var(--gw-blue-d); }
.gw-hide-sm { display: none; }

/* Dock + sheet */
.gw-dock {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    display: grid; grid-template-columns: 1fr 1fr 64px 1fr 1fr;
    align-items: end;
    background: #fff; border-top: 1px solid var(--gw-line);
    padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
}
.gw-dock a, .gw-dock button {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    background: 0; border: 0; color: #64748b; text-decoration: none;
    font-size: 10px; font-weight: 700; font-family: Poppins, sans-serif; cursor: pointer;
}
.gw-dock svg { width: 22px; height: 22px; }
.gw-dock .is-active { color: var(--gw-blue); }
.gw-dock__center {
    width: 58px; height: 58px; margin: 0 auto 8px; border-radius: 50%;
    background: var(--gw-blue); display: grid; place-items: center;
    box-shadow: 0 8px 20px rgba(0,71,171,.35); transform: translateY(-10px);
}
.gw-dock__center img { width: 40px; height: 40px; object-fit: contain; }
.gw-sheet-bg {
    position: fixed; inset: 0; z-index: 70; background: rgba(15,23,42,.45);
    opacity: 0; visibility: hidden; transition: .25s;
}
.gw-sheet {
    position: fixed; inset: 0; z-index: 75; display: flex; align-items: flex-end; justify-content: center;
    pointer-events: none; visibility: hidden;
}
.gw-sheet__panel {
    width: min(520px, 100%); background: #fff; border-radius: 22px 22px 0 0;
    padding: 8px 16px calc(16px + env(safe-area-inset-bottom));
    transform: translateY(110%); transition: transform .28s cubic-bezier(.32,.72,0,1);
    pointer-events: auto;
}
body.portal-bottom-more-open .gw-sheet { visibility: visible; pointer-events: auto; }
body.portal-bottom-more-open .gw-sheet-bg { opacity: 1; visibility: visible; }
body.portal-bottom-more-open .gw-sheet__panel { transform: none; }
.gw-sheet__head { display: flex; align-items: center; justify-content: space-between; padding: 10px 0 12px; }
.gw-sheet__head h2 { font-family: Poppins, sans-serif; font-size: 16px; margin: 0; }
.gw-sheet__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.gw-sheet__grid a {
    background: #f3f6fb; border-radius: 14px; padding: 14px; text-decoration: none;
    font-weight: 700; font-size: 14px; color: var(--gw-blue-d);
    display: flex; align-items: center; gap: 8px;
}
.gw-sheet__grid a.is-active { background: rgba(178,230,70,.35); }

/* Footer */
.gw-foot {
    margin-top: 40px;
    background: var(--gw-grad); color: #fff;
    padding: 36px 0 24px;
}
.gw-foot__grid { display: grid; gap: 22px; }
.gw-foot__brand img { height: 36px; margin-bottom: 10px; }
.gw-foot__brand p { margin: 0; color: rgba(255,255,255,.82); line-height: 1.55; max-width: 32ch; }
.gw-foot__col { display: none; }
.gw-foot__col h3 { font-family: Poppins, sans-serif; font-size: 13px; color: var(--gw-lime); margin: 0 0 10px; }
.gw-foot__col a { display: block; color: rgba(255,255,255,.88); text-decoration: none; margin-bottom: 8px; font-size: 14px; }
.gw-foot__legal {
    display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    margin-top: 22px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14);
    font-size: 13px; color: rgba(255,255,255,.7);
}
.gw-foot__legal a { color: inherit; text-decoration: none; margin-left: 12px; }

@media (min-width: 720px) {
    .gw-stats { grid-template-columns: repeat(4, 1fr); }
    .gw-grid--2, .gw-grid--3 { grid-template-columns: 1fr 1fr; }
    .gw-hero__grid { grid-template-columns: 1.2fr .8fr; }
    .gw-spot { display: grid; grid-template-columns: 1.15fr .85fr; }
    .gw-spot__media, .gw-spot__media img { height: 100%; min-height: 260px; }
    .gw-story { grid-template-columns: 1.15fr .85fr; align-items: center; }
    .gw-story__media, .gw-story__media img { min-height: 320px; height: 100%; }
    .gw-product-detail { grid-template-columns: 1.05fr .95fr; align-items: start; }
    .gw-product-detail__media img { max-height: none; min-height: 360px; }
    .gw-partners { grid-template-columns: repeat(4, 1fr); }
    .gw-partner-grid { grid-template-columns: repeat(4, 1fr); }
    .gw-band { flex-direction: row; align-items: center; justify-content: space-between; padding: 32px 36px; }
    .gw-foot__col { display: block; }
    .gw-foot__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

@media (min-width: 1024px) {
    body.gw { padding-bottom: 0; }
    .gw-head__inner { min-height: 72px; }
    .gw-brand img { height: 48px; max-width: 200px; }
    .gw-iconbtn#portalMenuBtn, .gw-dock, .gw-sheet, .gw-sheet-bg { display: none !important; }
    .gw-nav { display: flex; }
    .gw-hide-sm { display: inline-flex; }
    .gw-hero { padding: 56px 0 72px; }
    .gw-stats { margin-top: -36px; gap: 14px; }
    .gw-stat { padding: 20px; }
    .gw-stat b { font-size: 28px; }
    .gw-section { padding: 56px 0 12px; }
    .gw-section__head h2, .gw-section__intro h2, .gw-story__title { font-size: 28px; }
    .gw-pagehead--rich { padding: 48px 0 72px; }
    .gw-grid--3 { grid-template-columns: repeat(3, 1fr); }
    .gw-grid--4 { grid-template-columns: repeat(4, 1fr); }
    .gw-partner-grid { grid-template-columns: repeat(6, 1fr); }
    .gw-event__cover { height: 168px; }
    .gw-feat:hover, .gw-event:hover, .gw-person:hover, .gw-news:hover, .gw-card:hover,
    .gw-spot:hover, .gw-pill:hover, .gw-partner:hover, .gw-product:hover, .gw-partner-card:hover, .gw-pack:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(0,53,128,.12);
    }
}
