:root {
    color-scheme: light;
    --bg: #f4f7fb;
    --surface: #fff;
    --text: #152238;
    --muted: #64748b;
    --line: #dce4ef;
    --primary: #155eef;
    --primary-dark: #1149bd;
    --brand-red: #e31e24;
    --success: #087f5b;
    --danger: #c92a2a;
    --warning-bg: #fff4e6;
    --warning-line: #fd7e14;
    --shadow: 0 12px 30px rgb(15 23 42 / 8%);
}

* { box-sizing: border-box; }

html { min-height: 100%; background: var(--bg); }

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font: 16px/1.5 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: var(--primary); }

.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }

.skip-link { position: fixed; top: -60px; left: 16px; z-index: 20; padding: 10px 16px; background: #fff; }
.skip-link:focus { top: 12px; }

.site-header { border-bottom: 1px solid var(--line); background: var(--surface); box-shadow: 0 2px 12px rgb(15 23 42 / 4%); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; }
.brand-logo { display: block; width: 154px; height: auto; }
.brand-caption { max-width: 150px; border-left: 1px solid var(--line); padding-left: 12px; color: var(--muted); font-size: .72rem; line-height: 1.3; }
.account-menu { display: flex; align-items: center; gap: 16px; }
.account-name { font-weight: 650; }
.main-navigation { border-top: 1px solid #edf1f6; }
.navigation-scroll { display: flex; gap: 3px; overflow-x: auto; scrollbar-width: thin; }
.nav-link { position: relative; flex: 0 0 auto; padding: 13px 16px 12px; color: #475569; text-decoration: none; font-size: .92rem; font-weight: 700; }
.nav-link:hover { color: var(--primary); background: #f8fafc; }
.nav-link.is-active { color: var(--primary); }
.nav-link.is-active::after { position: absolute; right: 14px; bottom: -1px; left: 14px; height: 3px; border-radius: 3px 3px 0 0; background: var(--brand-red); content: ""; }

.page-content { min-height: calc(100vh - 150px); padding-block: 32px 50px; }
.site-footer { padding: 18px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; background: var(--surface); }

.button { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 9px; padding: 9px 18px; cursor: pointer; color: #fff; background: var(--primary); font: inherit; font-weight: 700; text-decoration: none; }
.button:hover { background: var(--primary-dark); }
.button:disabled { cursor: not-allowed; color: #64748b; background: #e2e8f0; }
.button-quiet { min-height: 36px; border-color: var(--line); color: var(--text); background: #fff; }
.button-quiet:hover { background: #f1f5f9; }

.login-shell { display: grid; min-height: 66vh; place-items: center; }
.login-card { width: min(430px, 100%); padding: 34px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow); }
.login-card h1 { margin: 0 0 8px; font-size: 1.65rem; }
.login-card .intro { margin: 0 0 26px; color: var(--muted); }
.field { margin: 0 0 18px; }
.field label { display: block; margin-bottom: 7px; font-weight: 650; }
.field input { width: 100%; min-height: 46px; border: 1px solid #b9c5d6; border-radius: 9px; padding: 9px 12px; color: var(--text); background: #fff; font: inherit; }
.field select, .field textarea { width: 100%; border: 1px solid #b9c5d6; border-radius: 9px; padding: 10px 12px; color: var(--text); background: #fff; font: inherit; }
.field select { min-height: 46px; }
.field textarea { min-height: 170px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgb(21 94 239 / 18%); border-color: var(--primary); }
.field > small { display: block; margin-top: 6px; color: var(--muted); }
.login-card .button { width: 100%; }
.form-note { margin: 18px 0 0; color: var(--muted); font-size: .85rem; }
.alert { margin: 0 0 20px; border-left: 4px solid var(--danger); border-radius: 7px; padding: 12px 14px; background: #fff0f0; }
.alert-notice { border-left-color: var(--warning-line); background: var(--warning-bg); }
.alert-success { border-left-color: var(--success); background: #e6fcf5; }

.page-heading { margin-bottom: 25px; }
.page-heading h1 { margin: 0 0 4px; font-size: clamp(1.6rem, 3vw, 2.15rem); }
.page-heading p { margin: 0; color: var(--muted); }
.summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 24px; }
.summary-card, .panel { border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: 0 4px 14px rgb(15 23 42 / 4%); }
.summary-card { padding: 20px; }
.summary-link { color: var(--text); text-decoration: none; transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease; }
.summary-link:hover { border-color: #b9cae2; transform: translateY(-2px); box-shadow: var(--shadow); }
.summary-card .label { color: var(--muted); font-size: .83rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.summary-card .value { display: block; margin-top: 5px; font-size: 1.55rem; font-weight: 800; }
.summary-card .value-text { font-size: 1.25rem; }
.card-link { display: block; margin-top: 12px; color: var(--primary); font-size: .85rem; font-weight: 700; }
.summary-card .value.positive { color: var(--success); }
.summary-card .value.negative { color: var(--danger); }
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.panel { min-width: 0; overflow: hidden; }
.panel-wide { grid-column: 1 / -1; }
.panel-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.panel-header h2 { margin: 0; font-size: 1.1rem; }
.panel-body { padding: 20px; }
.content-stack { display: grid; gap: 22px; }
.section-heading { margin: 32px 0 15px; }
.section-heading h2 { margin: 0; font-size: 1.25rem; }
.section-heading p { margin: 3px 0 0; color: var(--muted); }
.shortcut-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.shortcut-card { display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; align-items: center; gap: 15px; min-height: 108px; border: 1px solid var(--line); border-radius: 14px; padding: 18px; color: var(--text); background: var(--surface); text-decoration: none; transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease; }
.shortcut-card:hover { border-color: #b9cae2; transform: translateY(-2px); box-shadow: var(--shadow); }
.shortcut-card strong, .shortcut-card small { display: block; }
.shortcut-card strong { margin-bottom: 3px; font-size: 1rem; }
.shortcut-card small { color: var(--muted); }
.shortcut-card .arrow { color: var(--primary); font-size: 1.4rem; }
.shortcut-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 13px; color: var(--primary); background: #eaf1ff; font-size: .72rem; font-weight: 900; letter-spacing: -.02em; }
.shortcut-featured { border-color: #f5c2c4; background: #fffafa; }
.shortcut-featured .shortcut-icon { color: #fff; background: var(--brand-red); font-size: 1.2rem; }
.count-label { border-radius: 999px; padding: 3px 9px; color: var(--muted); background: #eef2f6; font-size: .77rem; font-weight: 700; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; clip-path: inset(50%); }
.details { display: grid; grid-template-columns: auto 1fr; gap: 9px 20px; margin: 0; }
.details dt { color: var(--muted); }
.details dd { margin: 0; font-weight: 600; overflow-wrap: anywhere; }
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .91rem; }
th, td { padding: 12px 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--muted); background: #f8fafc; font-size: .78rem; letter-spacing: .03em; text-transform: uppercase; }
tbody tr:last-child td { border-bottom: 0; }
.money { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.badge { display: inline-block; border-radius: 999px; padding: 3px 9px; color: var(--success); background: #e6fcf5; font-size: .78rem; font-weight: 700; }
.badge-muted { color: #475569; background: #eef2f6; }
.badge-warning { color: #9a3412; background: #ffedd5; }
.empty { margin: 0; color: var(--muted); }
.empty-state { padding-block: 45px; text-align: center; }
.empty-state strong { font-size: 1.1rem; }
.empty-state p { margin: 5px 0 0; color: var(--muted); }

.balance-banner { display: grid; grid-template-columns: minmax(210px, .7fr) minmax(300px, 1.3fr); gap: 28px; margin-bottom: 22px; border-radius: 16px; padding: 23px 25px; color: #fff; background: linear-gradient(120deg, #172a46, #1d4e89); box-shadow: var(--shadow); }
.balance-banner span, .balance-banner strong { display: block; }
.balance-banner span { color: rgb(255 255 255 / 72%); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.balance-banner strong { margin-top: 5px; font-size: 1.45rem; overflow-wrap: anywhere; }
.balance-banner .positive, .balance-banner .negative { color: #fff; }
.bank-account { border-left: 1px solid rgb(255 255 255 / 25%); padding-left: 28px; }
.bank-account strong { font-size: 1.05rem; letter-spacing: .04em; }

.service-list { display: grid; }
.service-row { display: grid; grid-template-columns: minmax(180px, 1fr) minmax(360px, 1fr); gap: 24px; align-items: center; padding: 19px 20px; border-bottom: 1px solid var(--line); }
.service-row:last-child { border-bottom: 0; }
.service-row > div:first-child { display: flex; align-items: flex-start; flex-direction: column; gap: 3px; }
.service-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-meta span { font-weight: 650; }
.service-meta small { display: block; margin-bottom: 2px; color: var(--muted); font-size: .76rem; font-weight: 500; }
.profile-panel { max-width: 800px; }
.support-form-panel { max-width: 780px; }
.support-form-panel .panel-body { padding: 25px; }
.support-form-panel .button { min-width: 190px; }
.button-small { min-height: 35px; padding: 6px 12px; font-size: .82rem; white-space: nowrap; }
.document-action { width: 1%; text-align: right; white-space: nowrap; }
.availability-note { display: inline-block; max-width: 180px; color: #9a3412; font-size: .78rem; white-space: normal; }
.details-spacious { gap: 0; }
.details-spacious dt, .details-spacious dd { padding-block: 13px; border-bottom: 1px solid var(--line); }
.details-spacious dt:last-of-type, .details-spacious dd:last-of-type { border-bottom: 0; }

.table-note { display: block; margin-top: 3px; color: var(--muted); }

.offer-hero { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 280px; min-height: 275px; align-items: center; gap: 30px; overflow: hidden; margin-bottom: 24px; border-radius: 22px; padding: 38px 46px; color: #fff; background: linear-gradient(120deg, #142842 0%, #164b80 62%, #1562a8 100%); box-shadow: 0 18px 42px rgb(15 38 70 / 20%); }
.offer-hero::before { position: absolute; width: 390px; height: 390px; border: 1px solid rgb(255 255 255 / 9%); border-radius: 50%; right: -180px; bottom: -255px; content: ""; }
.offer-hero-copy { position: relative; z-index: 2; max-width: 750px; }
.offer-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 8px; color: #fecdd3; font-size: .76rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.offer-hero-eyebrow::before { width: 24px; height: 2px; background: #fb7185; content: ""; }
.offer-hero h1 { margin: 0; font-size: clamp(1.75rem, 4vw, 2.65rem); line-height: 1.12; letter-spacing: -.025em; }
.offer-hero p { max-width: 680px; margin: 14px 0 20px; color: rgb(255 255 255 / 78%); font-size: 1rem; }
.offer-hero-benefits { display: flex; flex-wrap: wrap; gap: 10px 18px; color: #fff; font-size: .83rem; font-weight: 700; }
.offer-hero-benefits span { display: inline-flex; align-items: center; gap: 7px; }
.offer-hero-benefits b { display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; color: #0f5132; background: #a7f3d0; font-size: .7rem; }
.offer-hero-art { position: relative; width: 230px; height: 210px; justify-self: center; }
.offer-hero-signal { position: absolute; border: 4px solid rgb(255 255 255 / 26%); border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; transform: rotate(-45deg); }
.offer-hero-signal-one { inset: 78px 88px 88px 78px; }
.offer-hero-signal-two { inset: 47px 57px 57px 47px; }
.offer-hero-signal-three { inset: 16px 26px 26px 16px; }
.offer-hero-symbol { position: absolute; z-index: 2; right: 5px; bottom: 7px; display: grid; width: 100px; height: 100px; place-items: center; border: 7px solid rgb(255 255 255 / 14%); border-radius: 30px; color: #fff; background: linear-gradient(145deg, #f43f5e, #c91834); box-shadow: 0 18px 35px rgb(6 22 45 / 32%); transform: rotate(7deg); }
.offer-hero-icon { width: 58px; height: 58px; transform: rotate(-7deg); }
.offer-hero-dot { position: absolute; left: 94px; bottom: 92px; width: 13px; height: 13px; border: 3px solid #fff; border-radius: 50%; background: #fb7185; box-shadow: 0 0 0 8px rgb(255 255 255 / 12%); }

.gdata-promo { position: relative; display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; overflow: hidden; min-height: 300px; margin: 0 0 28px; border: 1px solid #ffc9d1; border-radius: 22px; padding: 34px 38px; color: #fff; background: linear-gradient(90deg, rgb(75 5 18 / 95%) 0%, rgb(119 11 30 / 84%) 39%, rgb(139 17 40 / 34%) 67%, rgb(139 17 40 / 0%) 100%), url("/images/gdata-promo-20260811.webp?v=20260812-opt") center / cover no-repeat; box-shadow: 0 18px 42px rgb(129 25 40 / 18%); isolation: isolate; }
.gdata-promo-copy { position: relative; z-index: 2; max-width: 710px; }
.gdata-kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 7px; color: #ffe4e8; font-size: .76rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.gdata-kicker::before { width: 25px; height: 2px; background: #fff; content: ""; }
.gdata-promo h2 { margin: 0; font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1.12; }
.gdata-promo p { max-width: 680px; margin: 12px 0 18px; color: rgb(255 255 255 / 84%); }
.gdata-benefits { display: grid; gap: 8px; margin: 0 0 22px; padding: 0; list-style: none; color: #fff; font-size: .9rem; font-weight: 700; }
.gdata-benefits li { display: flex; align-items: center; gap: 9px; }
.gdata-benefits span { display: grid; width: 23px; height: 23px; place-items: center; border-radius: 50%; color: #c91f3b; background: #fff; }
.gdata-benefits .ui-icon { width: 15px; height: 15px; }
.gdata-order-button { min-width: 145px; color: #a5162c; background: #fff; box-shadow: 0 12px 25px rgb(65 7 17 / 20%); }
.gdata-order-button:hover { color: #7b1020; background: #fff1f3; }

.offer-progress-card { margin-bottom: 28px; overflow: hidden; border: 1px solid #bbd5f3; border-radius: 18px; background: #fff; box-shadow: 0 8px 26px rgb(15 23 42 / 7%); }
.offer-progress-card.is-realized { border-color: #a7dac8; }
.offer-progress-head { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 17px; align-items: start; padding: 24px 26px 20px; background: linear-gradient(115deg, #f2f7ff, #fff); }
.offer-progress-card.is-realized .offer-progress-head { background: linear-gradient(115deg, #ecfdf5, #fff); }
.offer-status-icon { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 16px; color: #fff; background: var(--primary); font-size: 1.45rem; font-weight: 900; box-shadow: 0 8px 18px rgb(21 94 239 / 22%); }
.offer-status-icon .ui-icon { width: 27px; height: 27px; }
.offer-progress-card.is-realized .offer-status-icon { background: var(--success); box-shadow: 0 8px 18px rgb(8 127 91 / 18%); }
.offer-progress-head h2 { margin: 6px 0 2px; font-size: 1.3rem; }
.offer-progress-head p { margin: 0; color: #52647c; }
.offer-status-pill { display: inline-flex; align-items: center; width: fit-content; border-radius: 999px; padding: 4px 10px; color: #1d4f91; background: #e5effd; font-size: .73rem; font-weight: 800; letter-spacing: .02em; }
.offer-status-pill.is-processing::before { width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: #2563eb; content: ""; }
.offer-status-pill.is-realized { color: #076044; background: #d9f8ec; }
.offer-status-pill.is-realized::before { margin-right: 5px; content: "✓"; }
.offer-status-pill.is-decision { color: #9a3412; background: #ffedd5; }
.offer-status-pill.is-failed { color: #991b1b; background: #fee2e2; }

.offer-timeline { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; padding: 24px 30px 21px; border-top: 1px solid #e7edf5; border-bottom: 1px solid #e7edf5; list-style: none; background: #fbfdff; }
.offer-timeline li { position: relative; z-index: 1; display: grid; grid-template-rows: 34px auto; gap: 9px; align-items: start; min-width: 0; padding-right: 26px; }
.offer-timeline li:not(:last-child)::after { position: absolute; z-index: -1; top: 16px; left: 34px; width: calc(100% - 8px); height: 3px; border-radius: 999px; background: #dce5f1; content: ""; }
.offer-timeline li.is-complete:not(:last-child)::after { background: #93c5b3; }
.offer-step-marker { display: grid; width: 34px; height: 34px; place-items: center; border: 3px solid #dce5f1; border-radius: 50%; color: #64748b; background: #fff; font-size: .78rem; font-weight: 900; }
.offer-timeline .is-complete .offer-step-marker { border-color: var(--success); color: #fff; background: var(--success); }
.offer-timeline .is-current .offer-step-marker { border-color: #3b82f6; color: #1d4f91; background: #dbeafe; box-shadow: 0 0 0 5px rgb(59 130 246 / 10%); }
.offer-timeline strong, .offer-timeline small { display: block; }
.offer-timeline strong { font-size: .85rem; line-height: 1.25; }
.offer-timeline small { margin-top: 1px; color: var(--muted); font-size: .72rem; }
.offer-current-description { margin: 22px 26px 0; border-left: 3px solid var(--primary); padding: 2px 0 2px 15px; }
.offer-current-description > strong { font-size: .85rem; }
.offer-current-description p { margin: 4px 0 0; color: #475569; }

.offer-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; margin: 0; }
.offer-facts-current { margin: 20px 26px; }
.offer-facts > div { min-width: 0; border: 1px solid #e1e8f1; border-radius: 11px; padding: 12px 14px; background: #fff; }
.offer-facts dt { color: var(--muted); font-size: .7rem; font-weight: 700; line-height: 1.25; text-transform: uppercase; letter-spacing: .035em; }
.offer-facts dd { margin: 5px 0 0; font-weight: 800; overflow-wrap: anywhere; }
.offer-facts dd small { color: var(--muted); font-weight: 500; }
.offer-progress-note { display: grid; grid-template-columns: 32px minmax(0, 1fr) auto; gap: 13px; align-items: center; margin: 0 26px 25px; border-radius: 12px; padding: 14px 16px; color: #24446c; background: #eef6ff; }
.offer-progress-card.is-realized .offer-progress-note { color: #165b47; background: #ecfbf5; }
.offer-note-icon { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; color: #fff; background: #3977bd; font-family: Georgia, serif; font-weight: 800; }
.offer-note-icon .ui-icon { width: 16px; height: 16px; }
.offer-progress-card.is-realized .offer-note-icon { background: var(--success); }
.offer-progress-note strong { display: block; font-size: .86rem; }
.offer-progress-note p { margin: 2px 0 0; font-size: .8rem; }
.offer-progress-note .button { white-space: nowrap; }

.offer-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-top: 30px; }
.offer-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.offer-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid #d8e2ef; border-radius: 18px; background: var(--surface); box-shadow: 0 6px 22px rgb(15 23 42 / 6%); transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease; }
.offer-card:hover { border-color: #b7cae2; transform: translateY(-2px); box-shadow: 0 14px 32px rgb(15 23 42 / 9%); }
.offer-card.has-progress { border-color: #a9c8ed; }
.offer-card-head { border-bottom: 1px solid #e3eaf3; padding: 23px 25px; background: linear-gradient(135deg, #f5f9ff, #fff 68%); }
.offer-card h2 { margin: 5px 0 0; font-size: 1.4rem; line-height: 1.25; }
.offer-eyebrow { color: var(--brand-red); font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.offer-tariff { margin: 7px 0 0; color: #475569; font-size: .88rem; }
.offer-tariff .badge { margin-right: 5px; }
.offer-title-line { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--muted); font-size: .78rem; }
.offer-heading-main { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 6px; }
.offer-heading-main > div:first-child { min-width: 0; }
.offer-price-box { flex: 0 0 220px; border-left: 1px solid #dce5f0; padding-left: 25px; text-align: right; }
.offer-price-box small, .offer-price-box > span { display: block; color: var(--muted); font-size: .71rem; }
.offer-price-box strong { display: block; margin: 1px 0; color: var(--brand-red); font-size: 1.7rem; font-variant-numeric: tabular-nums; line-height: 1.1; }
.offer-price-box strong span { font-size: .95rem; }
.offer-price-box strong > span:only-child { color: #475569; font-size: .9rem; }
.offer-card-body { display: grid; gap: 19px; padding: 22px 25px 5px; }
.offer-block-label { display: block; margin-bottom: 5px; color: var(--muted); font-size: .71rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.offer-description { margin: 0; padding: 0; color: #3f5067; font-size: .94rem; }
.offer-description-fallback { font-style: normal; }
.offer-feature-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }
.offer-feature-list span { display: inline-flex; align-items: center; gap: 5px; border-radius: 999px; padding: 5px 9px; color: #315676; background: #edf5fb; font-size: .72rem; font-weight: 650; }
.offer-feature-list b { color: var(--success); }
.offer-stage-box { border: 1px solid #dce5f0; border-radius: 13px; padding: 15px 17px; background: #f8fafc; }
.offer-stage-head { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.offer-stage-head > strong { font-size: .86rem; }
.offer-mini-progress { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 15px 0 0; padding: 0; list-style: none; }
.offer-mini-progress li { position: relative; display: grid; grid-template-rows: 27px auto; gap: 7px; align-items: start; min-width: 0; }
.offer-mini-progress li:not(:last-child)::after { position: absolute; z-index: 0; top: 13px; left: 27px; width: calc(100% + 14px); height: 2px; border-radius: 999px; background: #d8e1ec; content: ""; }
.offer-mini-progress li > span { z-index: 1; display: grid; width: 27px; height: 27px; place-items: center; border: 2px solid #cad5e3; border-radius: 50%; color: #64748b; background: #fff; font-size: .68rem; font-weight: 900; }
.offer-mini-progress .is-complete > span { border-color: var(--success); color: #fff; background: var(--success); }
.offer-mini-progress .is-current > span { border-color: #3b82f6; color: #1d4f91; background: #dbeafe; }
.offer-mini-progress .is-failed > span { border-color: #dc2626; color: #991b1b; background: #fee2e2; }
.offer-mini-progress strong, .offer-mini-progress small { display: block; }
.offer-mini-progress strong { font-size: .75rem; line-height: 1.25; }
.offer-mini-progress small { color: var(--muted); font-size: .67rem; }
.offer-action { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 390px); gap: 24px; align-items: center; margin-top: 20px; border-top: 1px solid #e3eaf3; padding: 18px 25px 22px; background: #fbfcfe; }
.offer-action-copy strong, .offer-action-copy small { display: block; }
.offer-action-copy strong { font-size: .87rem; }
.offer-action-copy small { margin-top: 2px; color: var(--muted); }
.offer-action form, .offer-action .button { width: 100%; }
.offer-empty-state { display: flex; align-items: center; gap: 18px; padding: 28px; }
.offer-empty-icon { display: grid; flex: 0 0 auto; width: 58px; height: 58px; place-items: center; border-radius: 17px; color: var(--brand-red); background: #fff0f1; font-size: 1.5rem; font-weight: 900; }
.offer-empty-icon .ui-icon { width: 30px; height: 30px; }
.offer-empty-state strong { font-size: 1.05rem; }
.offer-empty-state p { margin: 3px 0 0; color: var(--muted); }

.offer-process-info { display: grid; grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr); gap: 35px; margin-top: 30px; border: 1px solid #dbe4ef; border-radius: 18px; padding: 27px 29px; background: linear-gradient(135deg, #fff, #f5f8fc); }
.offer-process-heading > span { color: var(--brand-red); font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .07em; }
.offer-process-heading h2 { margin: 4px 0 6px; font-size: 1.25rem; line-height: 1.25; }
.offer-process-heading p { margin: 0; color: var(--muted); font-size: .86rem; }
.offer-process-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin: 0; padding: 0; list-style: none; }
.offer-process-steps li { display: flex; gap: 10px; }
.offer-process-number { display: grid; flex: 0 0 auto; width: 31px; height: 31px; place-items: center; border-radius: 10px; color: #fff; background: #244f7f; font-size: .78rem; font-weight: 900; }
.offer-process-steps strong { display: block; font-size: .83rem; }
.offer-process-steps p { margin: 3px 0 0; color: var(--muted); font-size: .74rem; line-height: 1.4; }

@media (max-width: 820px) {
    .summary-grid, .panel-grid { grid-template-columns: 1fr; }
    .panel-wide { grid-column: auto; }
    .account-name { display: none; }
    .shortcut-grid, .offer-grid { grid-template-columns: 1fr; }
    .service-row { grid-template-columns: 1fr; gap: 12px; }
    .offer-hero { grid-template-columns: 1fr 170px; padding: 32px; }
    .offer-hero-art { width: 170px; transform: scale(.8); }
    .gdata-promo { grid-template-columns: 1fr; min-height: 285px; padding: 30px; background-position: 58% center; }
    .offer-process-info { grid-template-columns: 1fr; gap: 22px; }
    .offer-action { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 520px) {
    .container { width: min(100% - 20px, 1180px); }
    .brand-caption { display: none; }
    .brand-logo { width: 125px; }
    .page-content { padding-top: 20px; }
    .login-card { padding: 24px 18px; }
    .summary-grid { gap: 10px; }
    .details { grid-template-columns: 1fr; gap: 2px; }
    .details dd { margin-bottom: 10px; }
    .details-spacious dt { padding-bottom: 1px; border-bottom: 0; }
    .details-spacious dd { padding-top: 1px; }
    .balance-banner { grid-template-columns: 1fr; gap: 17px; }
    .bank-account { border-top: 1px solid rgb(255 255 255 / 25%); border-left: 0; padding-top: 17px; padding-left: 0; }
    .service-meta { grid-template-columns: 1fr; gap: 8px; }
    .offer-hero { display: block; min-height: 0; padding: 27px 22px; }
    .offer-hero-art { position: absolute; right: -65px; bottom: -68px; opacity: .32; }
    .offer-hero-benefits { align-items: flex-start; flex-direction: column; gap: 7px; }
    .gdata-promo { grid-template-columns: 1fr; min-height: 420px; padding: 26px 21px; align-items: start; background-image: linear-gradient(90deg, rgb(75 5 18 / 96%) 0%, rgb(119 11 30 / 88%) 55%, rgb(139 17 40 / 42%) 100%), url("/images/gdata-promo-20260811.webp?v=20260812-opt"); background-position: 58% center; }
    .gdata-promo-copy { max-width: none; }
    .gdata-promo p, .gdata-benefits { max-width: none; }
    .gdata-order-button { width: 100%; max-width: 230px; }
    .offer-progress-head { grid-template-columns: 43px minmax(0, 1fr); padding: 20px 18px 17px; }
    .offer-status-icon { width: 43px; height: 43px; border-radius: 13px; }
    .offer-timeline { grid-template-columns: 1fr; gap: 15px; padding: 19px; }
    .offer-timeline li { grid-template-columns: 34px minmax(0, 1fr); grid-template-rows: auto; gap: 11px; padding: 0; }
    .offer-timeline li:not(:last-child)::after { top: 33px; left: 16px; width: 3px; height: calc(100% - 17px); }
    .offer-current-description, .offer-facts-current { margin-right: 18px; margin-left: 18px; }
    .offer-progress-note { grid-template-columns: 30px minmax(0, 1fr); margin: 0 18px 20px; }
    .offer-progress-note .button { grid-column: 1 / -1; }
    .offer-title-line { align-items: flex-start; flex-direction: column; gap: 3px; }
    .offer-heading-main { align-items: flex-start; flex-direction: column; gap: 17px; }
    .offer-price-box { width: 100%; flex-basis: auto; border-top: 1px solid #dce5f0; border-left: 0; padding-top: 15px; padding-left: 0; text-align: left; }
    .offer-card-head, .offer-card-body, .offer-action { padding-right: 18px; padding-left: 18px; }
    .offer-stage-head { align-items: flex-start; flex-direction: column; }
    .offer-mini-progress { grid-template-columns: 1fr; gap: 11px; }
    .offer-mini-progress li { grid-template-columns: 27px minmax(0, 1fr); grid-template-rows: auto; gap: 8px; }
    .offer-mini-progress li:not(:last-child)::after { top: 26px; left: 13px; width: 2px; height: calc(100% - 12px); }
    .offer-process-steps { grid-template-columns: 1fr; }
    .offer-empty-state { align-items: flex-start; padding: 22px 18px; }
}

/* Modern shared interface */
.ui-icon { display: block; width: 1.25rem; height: 1.25rem; flex: 0 0 auto; }
body { background: radial-gradient(circle at 8% 18%, rgb(21 94 239 / 4%), transparent 28rem), var(--bg); }
.site-header { position: relative; z-index: 10; border-bottom: 0; box-shadow: 0 6px 24px rgb(15 23 42 / 6%); }
.header-inner { min-height: 80px; }
.brand-logo { width: 158px; }
.account-menu { gap: 11px; }
.account-avatar { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 12px; color: #fff; background: linear-gradient(145deg, #1b6add, #174c8d); box-shadow: 0 6px 15px rgb(21 94 239 / 18%); font-size: .86rem; font-weight: 850; }
.account-copy { display: flex; min-width: 0; flex-direction: column; line-height: 1.15; }
.account-copy small { margin-bottom: 3px; color: var(--muted); font-size: .65rem; font-weight: 650; }
.account-name { display: block; max-width: 260px; overflow: hidden; font-size: .82rem; text-overflow: ellipsis; white-space: nowrap; }
.account-menu form { display: flex; }
.account-menu .button-quiet { min-height: 38px; border-radius: 11px; padding-inline: 14px; color: #334155; }
.main-navigation { border-top: 1px solid #edf1f6; background: #fff; }
.navigation-scroll { display: flex; gap: 4px; overflow-x: auto; overflow-y: hidden; padding-bottom: 0; scrollbar-width: none; overscroll-behavior-x: contain; }
.navigation-scroll::-webkit-scrollbar { display: none; width: 0; height: 0; }
.nav-link { display: inline-flex; min-height: 51px; align-items: center; gap: 7px; border-radius: 10px 10px 0 0; padding: 10px 14px 9px; font-size: .86rem; }
.nav-link:hover { color: #174f91; background: #f3f7fc; }
.nav-link.is-active { color: #174f91; background: linear-gradient(180deg, #f4f8fe, #fff); }
.nav-link.is-active::after { right: 13px; bottom: 0; left: 13px; }
.nav-icon { display: grid; width: 23px; height: 23px; place-items: center; border-radius: 7px; color: #52708f; background: #edf3f9; font-size: .66rem; font-weight: 850; line-height: 1; }
.nav-icon .ui-icon { width: 14px; height: 14px; }
.nav-link.is-active .nav-icon { color: #fff; background: #1e5fa6; box-shadow: 0 4px 10px rgb(30 95 166 / 20%); }

.page-content { padding-block: 30px 54px; }
.page-hero { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 210px; min-height: 230px; align-items: center; gap: 30px; overflow: hidden; margin-bottom: 25px; border-radius: 22px; padding: 37px 44px; color: #fff; background: linear-gradient(120deg, #142842, #174d82 62%, #1b65aa); box-shadow: 0 18px 42px rgb(15 38 70 / 17%); }
.page-hero::before, .page-hero::after { position: absolute; border: 1px solid rgb(255 255 255 / 9%); border-radius: 50%; content: ""; }
.page-hero::before { right: -125px; bottom: -255px; width: 390px; height: 390px; }
.page-hero::after { top: -205px; right: 80px; width: 310px; height: 310px; }
.page-hero-copy { position: relative; z-index: 2; max-width: 760px; }
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 8px; color: #fecdd3; font-size: .72rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.page-hero-eyebrow::before { width: 24px; height: 2px; background: #fb7185; content: ""; }
.page-hero h1 { margin: 0; font-size: clamp(1.75rem, 4vw, 2.55rem); line-height: 1.12; letter-spacing: -.025em; }
.page-hero p { max-width: 690px; margin: 13px 0 0; color: rgb(255 255 255 / 78%); }
.page-hero-compact { min-height: 205px; }
.page-hero-finance { background: linear-gradient(120deg, #172941, #174e81 62%, #1767ab); }
.page-hero-documents { background: linear-gradient(120deg, #28243c, #4d315c 58%, #774466); }
.page-hero-services { background: linear-gradient(120deg, #102b3a, #124d61 58%, #14738a); }
.page-hero-support { background: linear-gradient(120deg, #202d47, #344f7b 60%, #3c6b9b); }
.page-hero-profile { background: linear-gradient(120deg, #28334c, #3f5379 60%, #526d98); }
.page-hero-help { grid-template-columns: minmax(0, 1fr); min-height: 350px; padding: 47px 54px; background: linear-gradient(90deg, rgb(6 23 46 / 94%) 0%, rgb(8 30 58 / 80%) 38%, rgb(8 30 58 / 18%) 67%, rgb(8 30 58 / 0%) 100%), url("/images/help-speedtest-20260811.webp?v=20260812-opt") center / cover no-repeat; }
.page-hero-help .page-hero-copy { max-width: 720px; }
.page-hero-help::before, .page-hero-help::after { display: none; }
.page-hero-badge { position: relative; z-index: 2; display: grid; width: 128px; height: 128px; place-items: center; justify-self: center; border: 8px solid rgb(255 255 255 / 13%); border-radius: 36px; color: #fff; background: linear-gradient(145deg, #f43f5e, #c91834); box-shadow: 0 18px 35px rgb(6 22 45 / 30%); transform: rotate(6deg); }
.hero-badge-icon { width: 68px; height: 68px; transform: rotate(-6deg); }
.document-badge { background: linear-gradient(145deg, #f45a6b, #b81c39); }
.support-badge { border-radius: 50% 50% 50% 15px; background: linear-gradient(145deg, #42a5f5, #155eef); }
.support-badge .hero-badge-icon { width: 72px; height: 72px; }
.speedtest-hero-button { margin-top: 24px; color: #13406a; background: #fff; box-shadow: 0 14px 26px rgb(6 22 45 / 18%); }
.speedtest-hero-button:hover { color: #0f3151; background: #eef8ff; }

.customer-number { display: inline-flex; align-items: center; gap: 8px; margin-top: 19px; border: 1px solid rgb(255 255 255 / 15%); border-radius: 999px; padding: 6px 12px; color: rgb(255 255 255 / 84%); background: rgb(255 255 255 / 8%); font-size: .78rem; font-weight: 650; }
.customer-number b { display: grid; width: 23px; height: 23px; place-items: center; border-radius: 7px; color: #174f91; background: #fff; font-size: .6rem; }
.dashboard-hero-art { position: relative; z-index: 1; width: 190px; height: 170px; justify-self: center; }
.hero-orbit { position: absolute; border: 2px solid rgb(255 255 255 / 15%); border-radius: 50%; }
.orbit-one { inset: 18px; }
.orbit-two { inset: 0; border-style: dashed; transform: rotate(15deg); }
.hero-router { position: absolute; inset: 50% auto auto 50%; display: grid; width: 94px; height: 94px; place-items: center; border: 7px solid rgb(255 255 255 / 12%); border-radius: 29px; color: #fff; background: linear-gradient(145deg, #2474c4, #164578); box-shadow: 0 18px 32px rgb(6 22 45 / 30%); font-size: 2.4rem; font-weight: 900; transform: translate(-50%, -50%) rotate(-5deg); }
.hero-router .ui-icon { width: 49px; height: 49px; transform: rotate(5deg); }
.hero-status-dot { position: absolute; right: 15px; bottom: 19px; width: 18px; height: 18px; border: 4px solid #fff; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 8px rgb(52 211 153 / 14%); }
.service-hero-art { position: relative; z-index: 2; display: grid; width: 170px; height: 150px; place-items: center; justify-self: center; }
.service-hero-wifi { width: 148px; height: 148px; color: rgb(255 255 255 / 82%); filter: drop-shadow(0 16px 24px rgb(6 22 45 / 22%)); }
.service-hero-wifi path { stroke-width: 1.55; }
.service-hero-wifi circle { fill: #34d399; stroke: #fff; stroke-width: 1.3; }
.profile-hero-card { position: relative; z-index: 2; width: 150px; height: 112px; justify-self: center; border: 7px solid rgb(255 255 255 / 13%); border-radius: 24px; padding: 20px; background: linear-gradient(145deg, #6884ad, #344e76); box-shadow: 0 18px 34px rgb(10 22 43 / 30%); transform: rotate(5deg); }
.profile-hero-card span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 11px; color: #37537a; background: #fff; font-size: .72rem; font-weight: 900; }
.profile-hero-card span .ui-icon { width: 22px; height: 22px; transform: rotate(-5deg); }
.profile-hero-card i { position: absolute; right: 18px; left: 68px; height: 5px; border-radius: 5px; background: rgb(255 255 255 / 72%); }
.profile-hero-card i:first-of-type { top: 34px; }
.profile-hero-card i:last-of-type { top: 52px; opacity: .45; }

.section-kicker { display: block; margin-bottom: 3px; color: var(--brand-red); font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.section-heading-modern { display: flex; align-items: end; justify-content: space-between; }
.section-heading-modern h2 { font-size: 1.4rem; }
.summary-grid { gap: 16px; }
.summary-card { position: relative; display: grid; grid-template-columns: 55px minmax(0, 1fr); gap: 16px; align-items: center; overflow: hidden; border-radius: 18px; padding: 22px; }
.summary-card::after { position: absolute; right: -34px; bottom: -45px; width: 100px; height: 100px; border: 1px solid #edf2f8; border-radius: 50%; content: ""; }
.summary-icon { display: grid; width: 55px; height: 55px; place-items: center; border-radius: 16px; color: #1c5b9f; background: #eaf3ff; font-size: .9rem; font-weight: 900; box-shadow: inset 0 0 0 1px rgb(21 94 239 / 6%); }
.summary-icon .ui-icon { width: 27px; height: 27px; }
.summary-icon.is-finance { color: #087f5b; background: #e8f8f2; }
.summary-icon.is-support { color: #a04458; background: #fff0f3; font-size: 1.2rem; }
.summary-content { min-width: 0; }
.summary-card .value { margin-top: 2px; font-size: 1.42rem; }
.summary-card .card-link { margin-top: 7px; }
.summary-card .card-link b { margin-left: 3px; transition: margin-left .15s ease; }
.summary-card:hover .card-link b { margin-left: 7px; }

.panel { border-color: #dbe4ef; border-radius: 18px; box-shadow: 0 7px 24px rgb(15 23 42 / 5%); }
.panel-header { min-height: 75px; padding: 16px 20px; background: linear-gradient(135deg, #fbfdff, #fff); }
.panel-title { display: flex; min-width: 0; align-items: center; gap: 12px; }
.panel-title h2, .panel-title small { display: block; }
.panel-title h2 { margin: 0; }
.panel-title small { margin-top: 2px; color: var(--muted); font-size: .73rem; }
.panel-title-icon { display: grid; flex: 0 0 auto; width: 39px; height: 39px; place-items: center; border-radius: 12px; color: #1d5c9c; background: #eaf3fc; font-size: .7rem; font-weight: 900; }
.panel-title-icon .ui-icon { width: 20px; height: 20px; }
.panel-title-icon.is-red { color: #ae2639; background: #fff0f2; }
.panel-title-icon.is-green { color: #087f5b; background: #e7f8f1; }
.count-label { color: #4f657e; background: #edf2f7; }
.content-stack { gap: 24px; }
.table-scroll { scrollbar-color: #bdc9d8 transparent; scrollbar-width: thin; }
table { font-size: .88rem; }
th { padding-top: 13px; padding-bottom: 13px; color: #66758a; background: #f7f9fc; }
td { padding-top: 14px; padding-bottom: 14px; }
tbody tr { transition: background .12s ease; }
tbody tr:hover { background: #f8fbff; }
.button { border-radius: 11px; box-shadow: 0 5px 13px rgb(21 94 239 / 15%); transition: background .15s ease, transform .15s ease, box-shadow .15s ease; }
.button:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgb(21 94 239 / 20%); }
.button-quiet { box-shadow: none; }
.button-with-arrow { gap: 16px; }
.button-with-arrow span { font-size: 1.15rem; }

.balance-banner { position: relative; overflow: hidden; min-height: 145px; align-items: center; border-radius: 18px; padding: 27px 30px; background: linear-gradient(120deg, #152942, #1b5187 65%, #1b69ab); box-shadow: 0 15px 34px rgb(15 38 70 / 16%); }
.balance-banner::after { position: absolute; right: -65px; bottom: -130px; width: 270px; height: 270px; border: 1px solid rgb(255 255 255 / 12%); border-radius: 50%; content: ""; }
.balance-banner > div { position: relative; z-index: 1; }
.balance-banner strong { font-size: 1.65rem; }
.balance-banner small { display: block; margin-top: 5px; color: rgb(255 255 255 / 62%); font-size: .74rem; }
.bank-account strong { font-size: 1.08rem; }

.shortcut-grid { gap: 15px; }
.shortcut-card { position: relative; overflow: hidden; min-height: 118px; border-radius: 17px; padding: 20px; background: linear-gradient(135deg, #fff, #fbfdff); }
.shortcut-card::after { position: absolute; right: -32px; bottom: -43px; width: 95px; height: 95px; border: 1px solid #edf2f8; border-radius: 50%; content: ""; }
.shortcut-card .arrow { position: relative; z-index: 1; display: grid; width: 32px; height: 32px; place-items: center; border-radius: 10px; color: #305e90; background: #edf4fb; font-size: 1rem; }
.shortcut-icon { width: 52px; height: 52px; border-radius: 15px; box-shadow: inset 0 0 0 1px rgb(21 94 239 / 7%); }
.shortcut-icon .ui-icon { width: 25px; height: 25px; }
.shortcut-featured { border-color: #f3c5cb; background: linear-gradient(135deg, #fff8f9, #fff); }

.service-list { gap: 12px; padding: 13px; }
.service-row { border: 1px solid #e2e9f2; border-radius: 14px; padding: 18px; background: #fff; }
.service-row:last-child { border-bottom: 1px solid #e2e9f2; }
.service-card-row { grid-template-columns: minmax(250px, .9fr) minmax(430px, 1.3fr); }
.service-identity { display: flex !important; align-items: center !important; flex-direction: row !important; gap: 13px !important; }
.service-identity > span:last-child { display: flex; min-width: 0; align-items: flex-start; flex-direction: column; }
.service-identity strong { line-height: 1.3; }
.service-identity small { margin-top: 3px; color: var(--muted); font-size: .72rem; }
.service-card-icon { display: grid; flex: 0 0 auto; width: 49px; height: 49px; place-items: center; border-radius: 15px; color: #fff; background: linear-gradient(145deg, #1d75bd, #175188); box-shadow: 0 8px 17px rgb(23 81 136 / 18%); font-size: .72rem; font-weight: 900; }
.service-card-icon .ui-icon { width: 26px; height: 26px; }
.service-card-icon.is-tv { background: linear-gradient(145deg, #8054a2, #55346f); }
.service-meta { gap: 10px; }
.service-meta > span { position: relative; min-width: 0; border-radius: 11px; padding: 10px 10px 10px 40px; background: #f6f9fc; }
.service-meta small { margin: 0; font-size: .64rem; }
.service-meta b { display: block; font-size: .82rem; overflow-wrap: anywhere; }
.metric-icon { position: absolute; top: 50%; left: 10px; display: grid; width: 24px; height: 24px; place-items: center; border-radius: 8px; color: #2d6196; background: #e4effa; font-size: .65rem; font-style: normal; font-weight: 900; transform: translateY(-50%); }
.metric-icon .ui-icon { width: 14px; height: 14px; }
.device-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; padding: 15px; }
.device-card { overflow: hidden; border: 1px solid #e0e8f1; border-radius: 14px; background: #fff; }
.device-card-head { display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; gap: 11px; align-items: center; padding: 15px; }
.device-card-head small, .device-card-head strong, .device-ip small, .device-ip strong { display: block; }
.device-card-head small, .device-ip small { color: var(--muted); font-size: .66rem; }
.device-card-head strong { margin-top: 2px; font-size: .86rem; overflow-wrap: anywhere; }
.device-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; color: #295f93; background: #eaf3fb; font-size: 1.05rem; }
.device-icon .ui-icon { width: 22px; height: 22px; }
.device-ip { border-top: 1px solid #e7edf4; padding: 12px 15px; background: #f8fafc; }
.device-ip strong { margin-top: 2px; color: #2e4f73; font-size: .83rem; overflow-wrap: anywhere; }

.support-layout { display: grid; grid-template-columns: minmax(0, 1.38fr) minmax(300px, .62fr); gap: 22px; align-items: start; }
.support-form-panel { max-width: none; }
.support-form-panel .panel-body { padding: 26px; }
.support-form-panel .button { min-width: 230px; }
.support-guide { border: 1px solid #dce5ef; border-radius: 18px; padding: 24px; background: linear-gradient(145deg, #fff, #f7faff); box-shadow: 0 7px 24px rgb(15 23 42 / 5%); }
.support-guide h2 { margin: 4px 0 20px; font-size: 1.2rem; line-height: 1.3; }
.support-guide ol { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.support-guide li { display: grid; grid-template-columns: 31px minmax(0, 1fr); gap: 11px; }
.support-guide li > span { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 10px; color: #fff; background: #275f99; font-size: .72rem; font-weight: 900; }
.support-guide li strong, .support-guide li small { display: block; }
.support-guide li strong { font-size: .82rem; }
.support-guide li small { margin-top: 2px; color: var(--muted); font-size: .71rem; line-height: 1.4; }
.privacy-note { display: flex; gap: 10px; margin-top: 22px; border-radius: 12px; padding: 13px; color: #126148; background: #e9faf4; }
.privacy-note > b { display: grid; flex: 0 0 auto; width: 23px; height: 23px; place-items: center; border-radius: 50%; color: #fff; background: var(--success); font-size: .65rem; }
.privacy-note > b .ui-icon { width: 14px; height: 14px; }
.privacy-note strong, .privacy-note small { display: block; }
.privacy-note strong { font-size: .77rem; }
.privacy-note small { margin-top: 1px; font-size: .69rem; }

.help-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr); gap: 22px; align-items: start; }
.help-main-panel .panel-body { padding: 15px; }
.speedtest-steps { display: grid; gap: 12px; }
.speedtest-steps article { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 14px; align-items: start; border: 1px solid #e0e8f1; border-radius: 15px; padding: 17px; background: linear-gradient(135deg, #fff, #fbfdff); }
.speedtest-steps article > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; color: #fff; background: linear-gradient(145deg, #1e6aa8, #16517f); font-weight: 900; box-shadow: 0 8px 15px rgb(22 81 127 / 18%); }
.speedtest-steps h3 { margin: 0 0 4px; font-size: 1rem; }
.speedtest-steps p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.55; }
.speedtest-card { position: sticky; top: 18px; overflow: hidden; border: 1px solid #cfe1f0; border-radius: 20px; padding: 25px; background: linear-gradient(145deg, #fff, #f3f9ff); box-shadow: 0 10px 28px rgb(15 23 42 / 7%); }
.speedtest-card::after { position: absolute; right: -70px; bottom: -95px; width: 220px; height: 220px; border-radius: 50%; background: linear-gradient(135deg, rgb(21 94 239 / 9%), transparent); content: ""; }
.speedtest-card h2 { position: relative; margin: 4px 0 8px; font-size: 1.32rem; line-height: 1.2; }
.speedtest-card p { position: relative; margin: 0 0 19px; color: var(--muted); font-size: .86rem; }
.speedtest-card .button { position: relative; z-index: 1; width: 100%; }
.speedtest-mini-checklist { position: relative; z-index: 1; margin-top: 18px; border-radius: 14px; padding: 15px; background: #fff; box-shadow: inset 0 0 0 1px #e1e9f2; }
.speedtest-mini-checklist strong { display: block; margin-bottom: 8px; font-size: .82rem; }
.speedtest-mini-checklist ul { display: grid; gap: 6px; margin: 0; padding-left: 18px; color: var(--muted); font-size: .78rem; }
.help-tips { margin-top: 28px; }
.help-tip-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.help-tip-grid article { border: 1px solid #dfe8f2; border-radius: 18px; padding: 20px; background: #fff; box-shadow: 0 7px 22px rgb(15 23 42 / 4%); }
.help-tip-grid b { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 14px; color: #1e5f96; background: #eaf4fb; }
.help-tip-grid b .ui-icon { width: 24px; height: 24px; }
.help-tip-grid h3 { margin: 14px 0 5px; font-size: 1rem; }
.help-tip-grid p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.help-contact-strip { margin-top: 24px; }

.profile-panel { max-width: none; }
.profile-sections { display: grid; gap: 20px; }
.profile-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; margin: 0; }
.profile-detail-grid > div { position: relative; min-width: 0; border: 1px solid #e1e8f1; border-radius: 14px; padding: 16px 16px 16px 58px; background: #fbfdff; }
.profile-detail-grid > div.is-wide { grid-column: 1 / -1; }
.profile-detail-grid dt { color: var(--muted); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .035em; }
.profile-detail-grid dd { margin: 4px 0 0; font-weight: 750; overflow-wrap: anywhere; }
.profile-detail-icon { position: absolute; top: 50%; left: 15px; display: grid; width: 31px; height: 31px; place-items: center; border-radius: 10px; color: #2d6094; background: #e8f1fa; font-size: .65rem; font-weight: 900; transform: translateY(-50%); }
.profile-detail-icon .ui-icon { width: 16px; height: 16px; }
.profile-detail-text { width: 37px; font-size: .48rem; letter-spacing: -.02em; }
.profile-change-status { margin-bottom: 22px; overflow: hidden; border: 1px solid #cbdcf0; border-radius: 18px; background: #f5f9fe; box-shadow: 0 7px 24px rgb(15 23 42 / 5%); }
.profile-change-status-head { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 13px; align-items: center; padding: 17px 20px; border-bottom: 1px solid #d8e5f3; }
.profile-change-status-head > span { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 12px; color: #fff; background: #3977bd; }
.profile-change-status-head h2, .profile-change-status-head p { margin: 0; }
.profile-change-status-head h2 { font-size: 1.02rem; }
.profile-change-status-head p { margin-top: 2px; color: var(--muted); font-size: .75rem; }
.profile-change-list { display: grid; gap: 10px; padding: 13px; }
.profile-change-list article { display: grid; grid-template-columns: minmax(150px, .35fr) auto minmax(280px, 1fr); gap: 14px; align-items: center; border: 1px solid #dce6f1; border-radius: 13px; padding: 13px 15px; background: #fff; }
.profile-change-list strong, .profile-change-list small { display: block; }
.profile-change-list small { margin-top: 2px; color: var(--muted); font-size: .7rem; }
.profile-change-list ul { display: flex; flex-wrap: wrap; gap: 5px 13px; margin: 0; padding: 0; color: #425875; font-size: .74rem; list-style: none; }
.profile-change-badge { border-radius: 999px; padding: 4px 9px; color: #8a4b0f; background: #fff0d8; font-size: .68rem; font-weight: 800; white-space: nowrap; }
.profile-change-badge.is-transmitted { color: #1d4f91; background: #e5effd; }
.profile-edit-form { display: grid; gap: 20px; }
.profile-edit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
.profile-edit-grid .field.is-wide { grid-column: 1 / -1; }
.profile-edit-actions { display: flex; justify-content: flex-end; gap: 10px; }
.profile-edit-note { margin-top: 0; }
.info-strip { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; gap: 13px; align-items: center; margin-top: 20px; border: 1px solid #cfe0f2; border-radius: 15px; padding: 15px 17px; color: #284b72; background: #f1f7fd; }
.info-strip-icon { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 50%; color: #fff; background: #3977bd; font-family: Georgia, serif; font-weight: 800; }
.info-strip-icon .ui-icon { width: 17px; height: 17px; }
.info-strip strong { display: block; font-size: .84rem; }
.info-strip p { margin: 2px 0 0; font-size: .76rem; }
.info-strip .button { white-space: nowrap; }
.graphical-empty { display: flex; align-items: center; flex-direction: column; }
.empty-state-icon { display: grid; width: 58px; height: 58px; place-items: center; margin-bottom: 13px; border-radius: 17px; color: #2e659c; background: #eaf3fb; font-size: 1.15rem; font-weight: 900; }
.empty-state-icon .ui-icon { width: 28px; height: 28px; }

.login-shell { grid-template-columns: minmax(0, 1.08fr) minmax(370px, .72fr); gap: 0; min-height: 650px; place-items: stretch; border: 1px solid #d9e3ef; border-radius: 24px; background: #fff; box-shadow: 0 20px 48px rgb(15 23 42 / 10%); }
.login-visual { position: relative; align-self: stretch; overflow: hidden; border-radius: 23px 0 0 23px; padding: 58px 54px; color: #fff; background: linear-gradient(90deg, rgb(9 28 54 / 96%) 0%, rgb(15 50 86 / 82%) 46%, rgb(15 72 124 / 28%) 76%, rgb(15 72 124 / 8%) 100%), url("/images/login-visual-20260812.webp?v=20260812-opt") right bottom / cover no-repeat; }
.login-visual::after { display: none; }
.login-visual h1 { position: relative; z-index: 2; margin: 4px 0 15px; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.07; letter-spacing: -.035em; }
.login-visual > p { position: relative; z-index: 2; max-width: 580px; margin: 0; color: rgb(255 255 255 / 73%); }
.login-benefits { position: relative; z-index: 2; display: grid; gap: 9px; margin-top: 27px; }
.login-benefits span { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 650; }
.login-benefits b { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; color: #086044; background: #a7f3d0; font-size: .66rem; }
.login-card { position: relative; width: auto; align-self: center; border: 0; border-radius: 0; padding: 50px 45px; box-shadow: none; }
.login-lock { display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 19px; border-radius: 14px; color: #fff; background: linear-gradient(145deg, #1f70b9, #174d82); box-shadow: 0 8px 18px rgb(21 94 239 / 20%); font-size: .55rem; }
.login-lock .ui-icon { width: 22px; height: 22px; }
.login-card .form-note { display: flex; gap: 8px; align-items: flex-start; border-radius: 10px; padding: 11px; background: #f5f8fc; font-size: .76rem; }
.login-card .form-note b { display: grid; flex: 0 0 auto; width: 19px; height: 19px; place-items: center; border-radius: 50%; color: #fff; background: #5a7da1; font-family: Georgia, serif; font-size: .7rem; }
.login-card .form-note b .ui-icon { width: 12px; height: 12px; }
.form-secondary-link { display: grid; grid-template-columns: 34px minmax(0, 1fr); margin-top: 16px; border: 1px solid #dfe7f1; border-radius: 12px; padding: 11px 13px; color: #294f78; background: #fbfdff; text-decoration: none; transition: border-color .15s ease, background .15s ease, transform .15s ease; }
.form-secondary-link:hover { border-color: #b9cde3; background: #f4f8fd; transform: translateY(-1px); }
.form-secondary-link > span { display: grid; grid-row: 1 / 3; width: 29px; height: 29px; place-items: center; align-self: center; border-radius: 9px; color: #fff; background: #3e75ad; font-size: .78rem; font-weight: 900; }
.form-secondary-link strong, .form-secondary-link small { display: block; }
.form-secondary-link strong { font-size: .79rem; }
.form-secondary-link small { color: var(--muted); font-size: .69rem; }
.form-secondary-link.is-back > span { color: #365b83; background: #e8f0f8; }
.reminder-card { padding-block: 38px; }
.reminder-icon { background: linear-gradient(145deg, #3f7db8, #224d78); font-size: 1rem; }
.reminder-card .alert { font-size: .78rem; }
.reminder-card .alert ul { margin: 6px 0 0; padding-left: 18px; }
.reminder-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner strong { color: #42566e; }
.footer-security { display: inline-flex; align-items: center; gap: 7px; }
.footer-security b { display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; color: #087f5b; background: #dff7ee; font-size: .63rem; }
.footer-security b .ui-icon { width: 13px; height: 13px; }

@media (max-width: 900px) {
    .account-copy { display: none; }
    .page-hero { grid-template-columns: minmax(0, 1fr) 150px; padding: 32px; }
    .page-hero-help { grid-template-columns: minmax(0, 1fr); min-height: 330px; background-position: 60% center; }
    .support-layout { grid-template-columns: 1fr; }
    .help-layout { grid-template-columns: 1fr; }
    .speedtest-card { position: relative; top: auto; }
    .help-tip-grid { grid-template-columns: 1fr; }
    .service-card-row { grid-template-columns: 1fr; }
    .device-grid { grid-template-columns: 1fr; }
    .login-shell { grid-template-columns: 1fr 390px; }
    .login-visual { padding: 45px 38px; background-position: 68% bottom; }
}

@media (max-width: 700px) {
    .header-inner { min-height: 70px; }
    .brand-caption { display: none; }
    .brand-logo { width: 132px; }
    .account-avatar { display: none; }
    .account-menu .button-quiet { min-height: 36px; padding-inline: 11px; font-size: .78rem; }
    .navigation-scroll { margin-right: -10px; margin-left: -10px; padding-right: 10px; padding-left: 10px; }
    .nav-link { min-height: 48px; padding-inline: 11px; }
    .page-content { padding-top: 20px; }
    .page-hero { display: block; min-height: 0; border-radius: 18px; padding: 27px 22px; }
    .page-hero h1 { max-width: 90%; font-size: 1.8rem; }
    .page-hero p { max-width: 88%; font-size: .88rem; }
    .page-hero-badge, .service-hero-art, .profile-hero-card, .dashboard-hero-art { position: absolute; right: -38px; bottom: -42px; opacity: .26; }
    .page-hero-help { min-height: 370px; padding: 30px 24px; background-image: linear-gradient(90deg, rgb(6 23 46 / 96%) 0%, rgb(8 30 58 / 86%) 54%, rgb(8 30 58 / 42%) 100%), url("/images/help-speedtest-20260811.webp?v=20260812-opt"); background-position: 60% center; }
    .page-hero-help h1 { max-width: 100%; }
    .page-hero-help p { max-width: 100%; }
    .speedtest-hero-button { width: 100%; max-width: 260px; }
    .page-hero-badge { transform: rotate(6deg) scale(.78); }
    .profile-hero-card { transform: rotate(5deg) scale(.78); }
    .service-hero-art, .dashboard-hero-art { transform: scale(.78); }
    .summary-grid { grid-template-columns: 1fr; }
    .gdata-promo p, .gdata-benefits { max-width: none; }
    .summary-card { min-height: 105px; }
    .panel-header { align-items: flex-start; }
    .panel-title small { display: none; }
    .balance-banner { padding: 23px 21px; }
    .service-meta { grid-template-columns: 1fr; }
    .profile-detail-grid { grid-template-columns: 1fr; }
    .profile-detail-grid > div.is-wide { grid-column: auto; }
    .profile-change-list article { grid-template-columns: 1fr; gap: 8px; }
    .profile-change-badge { width: fit-content; }
    .profile-edit-grid { grid-template-columns: 1fr; }
    .profile-edit-grid .field.is-wide { grid-column: auto; }
    .profile-edit-actions { flex-direction: column-reverse; }
    .profile-edit-actions .button { width: 100%; }
    .info-strip { grid-template-columns: 31px minmax(0, 1fr); }
    .info-strip .button { grid-column: 1 / -1; width: 100%; }
    .speedtest-steps article { grid-template-columns: 1fr; gap: 10px; }
    .speedtest-steps article > span { width: 36px; height: 36px; }
    .help-main-panel .panel-body { padding: 12px; }
    .support-form-panel .panel-body { padding: 21px 18px; }
    .support-form-panel .button { width: 100%; min-width: 0; }
    .login-shell { display: block; min-height: 0; border-radius: 20px; }
    .login-visual { min-height: 250px; border-radius: 19px 19px 0 0; padding: 31px 26px; background-image: linear-gradient(90deg, rgb(9 28 54 / 97%) 0%, rgb(15 50 86 / 86%) 58%, rgb(15 72 124 / 34%) 100%), url("/images/login-visual-20260812.webp?v=20260812-opt"); background-position: 70% bottom; }
    .login-visual h1 { font-size: 2rem; }
    .login-visual > p, .login-benefits span:nth-child(n+2) { display: none; }
    .login-benefits { margin-top: 18px; }
    .login-card { padding: 30px 23px; }
    .footer-inner { align-items: flex-start; flex-direction: column; gap: 7px; }
}
