:root {
  --primary: #0d9488;
  --primary-hover: #14b8a6;
  --primary-active: #0f766e;
  --primary-bg: #e6f7f5;
  --primary-border: #99e0d8;
  --text: rgba(0, 0, 0, 0.88);
  --text-secondary: rgba(0, 0, 0, 0.65);
  --text-tertiary: rgba(0, 0, 0, 0.45);
  --border: #f0f0f0;
  --border-strong: #d9d9d9;
  --bg: #f2f3f5;
  --bg-elevated: #ffffff;
  --success: #52c41a;
  --warning: #faad14;
  --error: #ff4d4f;
  --sidebar-w: 220px;
  --header-h: 64px;
  --radius: 8px;
  --shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02);
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.5714285714285714;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }
button, input, select, textarea { font: inherit; }
code, .mono { font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 32px; padding: 0 15px; border-radius: 6px; border: 1px solid transparent;
  font-size: 14px; font-weight: 400; cursor: pointer; transition: all .2s;
  white-space: nowrap; user-select: none; background: #fff; color: var(--text);
}
.btn:hover { opacity: .9; }
.btn:disabled { cursor: not-allowed; opacity: .45; }
.btn-primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); color: #fff; }
.btn-default { background: #fff; border-color: var(--border-strong); color: var(--text); }
.btn-default:hover { color: var(--primary); border-color: var(--primary); }
.btn-link { background: transparent; border: none; color: var(--primary); height: auto; padding: 0 4px; }
.btn-lg { height: 40px; padding: 0 20px; font-size: 16px; border-radius: 8px; }
.btn-sm { height: 24px; padding: 0 8px; font-size: 12px; }
.btn-block { width: 100%; }

/* Form */
.input, .select, .textarea {
  width: 100%; height: 32px; padding: 4px 11px;
  border: 1px solid var(--border-strong); border-radius: 6px;
  background: #fff; color: var(--text); transition: all .2s;
}
.textarea { height: auto; min-height: 80px; padding: 8px 11px; }
.input:hover, .select:hover { border-color: var(--primary-hover); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.14);
}
.label {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--text); font-size: 14px; margin-bottom: 8px;
}
.label .req { color: var(--error); font-family: SimSun, sans-serif; }
.form-item { margin-bottom: 20px; }
.form-item-inline { display: flex; align-items: flex-start; gap: 12px; }
.form-item-inline .label { width: 90px; flex-shrink: 0; margin: 0; height: 32px; line-height: 32px; text-align: right; justify-content: flex-end; }
.form-item-inline .control { flex: 1; min-width: 0; }

/* Alerts */
.alert {
  padding: 9px 12px; border-radius: 6px; border: 1px solid transparent;
  margin-bottom: 16px; font-size: 14px; display: flex; gap: 8px; align-items: flex-start;
}
.alert-success { background: #f6ffed; border-color: #b7eb8f; color: #389e0d; }
.alert-error { background: #fff2f0; border-color: #ffccc7; color: #cf1322; }
.alert-warning { background: #fffbe6; border-color: #ffe58f; color: #d48806; }
.alert-info { background: #e6f4ff; border-color: #91caff; color: #0958d9; }

/* Card */
.card {
  background: var(--bg-elevated); border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.card + .card { margin-top: 16px; }
.card-body { padding: 20px 24px; }
.card-head {
  padding: 12px 24px; border-bottom: 1px solid var(--border);
  font-weight: 600; font-size: 16px; display: flex; align-items: center; justify-content: space-between;
}

/* Table */
.table-wrap { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; }
table.data th, table.data td {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  text-align: left; vertical-align: middle; font-size: 14px;
}
table.data th {
  background: #fafafa; color: var(--text); font-weight: 600;
  white-space: nowrap;
}
table.data tbody tr:hover td { background: #fafafa; }
table.data .ops { white-space: nowrap; }
table.data .ops a, table.data .ops button { margin-right: 8px; }

.badge {
  display: inline-flex; align-items: center; height: 20px; padding: 0 7px;
  border-radius: 4px; font-size: 12px; line-height: 20px;
}
.badge-success { background: #f6ffed; color: #52c41a; border: 1px solid #b7eb8f; }
.badge-warning { background: #fffbe6; color: #d48806; border: 1px solid #ffe58f; }
.badge-default { background: #fafafa; color: var(--text-secondary); border: 1px solid var(--border); }

/* ========== Console Shell (OwlProxy style) ========== */
.console-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.console-header {
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 16px 0 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.console-logo {
  width: var(--sidebar-w);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  flex-shrink: 0;
  border-right: 1px solid transparent;
}
.console-logo img, .logo-mark {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
}
.logo-mark {
  background: linear-gradient(145deg, #14b8a6, #0369a1);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 14px;
}
.console-logo .name {
  font-size: 18px; font-weight: 700; color: #1f1f1f; letter-spacing: -.02em;
}
.anni-badge {
  height: 22px; padding: 0 8px; border-radius: 4px;
  background: linear-gradient(90deg, #ffd666, #ffc53d);
  color: #874d00; font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; white-space: nowrap;
}

.header-center { flex: 1; display: flex; align-items: center; gap: 12px; min-width: 0; padding: 0 12px; }
.expire-banner {
  background: #fff7e6; border: 1px solid #ffd591; color: #d46b08;
  border-radius: 4px; padding: 8px 12px; font-size: 13px;
  white-space: normal; overflow-wrap: anywhere; word-break: break-word;
  max-width: 100%; box-sizing: border-box; line-height: 1.5;
}
.promo-banner {
  height: 36px; border-radius: 18px; padding: 0 16px;
  background: linear-gradient(90deg, #1d39c4, #10239e);
  color: #fff; display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; white-space: nowrap; margin-left: auto;
}
.promo-banner .cta {
  background: #fff; color: #1d39c4; border-radius: 12px;
  padding: 2px 10px; font-weight: 600; font-size: 12px;
}

.header-right {
  display: flex; align-items: center; gap: 16px; padding-right: 8px; flex-shrink: 0;
}
.lang-switch, .user-drop {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text); cursor: default; font-size: 14px;
}
.flag { width: 18px; height: 12px; border-radius: 2px; background: linear-gradient(#de2910 33%, #ffde00 33% 66%, #de2910 66%); display: inline-block; }

.console-body { display: flex; flex: 1; min-height: 0; }

.console-sidebar {
  width: var(--sidebar-w);
  background: #fff;
  border-right: 1px solid var(--border);
  padding: 8px 0 24px;
  flex-shrink: 0;
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.side-menu { list-style: none; margin: 0; padding: 0; }
.side-menu a {
  display: flex; align-items: center; gap: 10px;
  height: 40px; padding: 0 16px 0 20px;
  color: var(--text); position: relative; transition: all .15s;
}
.side-menu a:hover { color: var(--primary); background: #f5f5f5; }
.side-menu a.active {
  color: var(--primary); background: var(--primary-bg); font-weight: 500;
}
.side-menu a.active::before {
  content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 3px;
  background: var(--primary); border-radius: 0 2px 2px 0;
}
.side-menu .ico {
  width: 18px; height: 18px; display: grid; place-items: center; flex-shrink: 0;
  font-size: 16px; line-height: 1;
}
.side-menu .label-text { flex: 1; min-width: 0; }
.side-tag {
  font-size: 10px; line-height: 16px; padding: 0 5px; border-radius: 3px;
  font-weight: 600; white-space: nowrap;
}
.side-tag.gold { background: linear-gradient(90deg,#ffd666,#ff9c6e); color: #fff; }
.side-tag.blue { background: #1677ff; color: #fff; }
.side-tag.red { background: #ff4d4f; color: #fff; }
.side-tag.green { background: #52c41a; color: #fff; }
.side-spark { color: #faad14; font-size: 12px; }
.side-divider {
  height: 1px; background: var(--border); margin: 8px 16px;
}

.console-main {
  flex: 1; min-width: 0;
  padding: 16px;
  overflow: auto;
}

/* ========== Buy page ========== */
.buy-panel { position: relative; overflow: hidden; }
.buy-panel .card-body { padding: 24px 24px 0; }
.buy-deco {
  position: absolute; right: 24px; top: 80px; width: 180px; height: 200px;
  pointer-events: none; opacity: .95;
  background:
    radial-gradient(circle at 70% 30%, #ffe58f 0 8px, transparent 9px),
    radial-gradient(circle at 40% 70%, #91caff 0 40px, transparent 41px),
    radial-gradient(circle at 75% 75%, #ffd666 0 18px, transparent 19px);
}
.buy-deco::after {
  content: "🎂"; position: absolute; right: 20px; bottom: 30px; font-size: 72px;
  filter: drop-shadow(0 8px 16px rgba(22,119,255,.25));
}

.section-label {
  font-size: 14px; color: var(--text); font-weight: 500; margin-bottom: 12px;
}
.type-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px;
}
.type-tab {
  height: 32px; padding: 0 16px; border-radius: 6px;
  border: 1px solid var(--border-strong); background: #fff; color: var(--text);
  cursor: pointer; transition: all .15s; font-size: 14px;
}
.type-tab:hover { color: var(--primary); border-color: var(--primary); }
.type-tab.active {
  background: var(--primary); border-color: var(--primary); color: #fff;
}
.type-desc {
  color: var(--text-secondary); font-size: 13px; margin-bottom: 10px;
}
.app-icons {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.app-icons span {
  width: 28px; height: 28px; border-radius: 6px; background: #f5f5f5;
  display: grid; place-items: center; font-size: 14px; border: 1px solid var(--border);
}

.field-row {
  display: flex; align-items: flex-start; margin-bottom: 20px; gap: 12px;
}
.field-row > .flabel {
  width: 72px; flex-shrink: 0; text-align: right; line-height: 32px; color: var(--text);
}
.field-row > .fbody { flex: 1; min-width: 0; }
.field-hint { color: var(--text-tertiary); font-size: 12px; margin-top: 6px; }

.seg {
  display: inline-flex; border: 1px solid var(--border-strong); border-radius: 6px; overflow: hidden;
}
.seg button {
  height: 32px; padding: 0 16px; border: none; background: #fff; color: var(--text);
  cursor: pointer; border-right: 1px solid var(--border-strong);
}
.seg button:last-child { border-right: none; }
.seg button.active { background: var(--primary); color: #fff; }

.shop-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.shop-btn {
  height: 32px; padding: 0 16px; border-radius: 6px;
  border: 1px solid var(--border-strong); background: #fff; cursor: pointer;
}
.shop-btn.active { border-color: var(--primary); color: var(--primary); background: var(--primary-bg); }

.switch {
  position: relative; width: 44px; height: 22px; display: inline-block;
}
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider {
  position: absolute; inset: 0; background: rgba(0,0,0,.25); border-radius: 100px; cursor: pointer; transition: .2s;
}
.switch .slider::before {
  content: ""; position: absolute; width: 18px; height: 18px; left: 2px; top: 2px;
  background: #fff; border-radius: 50%; transition: .2s;
}
.switch input:checked + .slider { background: var(--primary); }
.switch input:checked + .slider::before { transform: translateX(22px); }

.pkg-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.pkg-card {
  width: 148px; min-height: 110px; border: 1px solid var(--border-strong);
  border-radius: 8px; padding: 14px 12px; cursor: pointer; position: relative;
  background: #fff; transition: all .15s;
}
.pkg-card:hover { border-color: var(--primary); }
.pkg-card.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
  background: linear-gradient(180deg, #f0f7ff, #fff);
}
.pkg-card .crown { position: absolute; left: 8px; top: -2px; font-size: 14px; }
.pkg-card .discount {
  position: absolute; right: -1px; top: -1px;
  background: #ff4d4f; color: #fff; font-size: 11px;
  padding: 2px 8px; border-radius: 0 8px 0 8px; font-weight: 600;
}
.pkg-card .pname { font-weight: 600; margin-bottom: 8px; padding-left: 4px; }
.pkg-card .pprice { color: var(--primary); font-size: 22px; font-weight: 700; line-height: 1.2; }
.pkg-card .pold { color: var(--text-tertiary); text-decoration: line-through; font-size: 12px; margin-left: 4px; }
.pkg-card .pday { color: var(--text-tertiary); font-size: 12px; margin-top: 4px; }

.qty-input { width: 120px; }

.buy-footer {
  position: sticky; bottom: 0; margin: 24px -24px 0;
  background: #fff; border-top: 1px solid var(--border);
  padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 10;
}
.buy-footer .agree { color: var(--text-secondary); font-size: 13px; display: flex; align-items: center; gap: 8px; }
.buy-footer .pay-info { display: flex; align-items: center; gap: 16px; }
.buy-footer .pay-label { color: var(--text-secondary); }
.buy-footer .pay-price { color: #f56c6c; font-size: 26px; font-weight: 700; }
.buy-footer .pay-count { color: #909399; font-size: 12px; }

/* ========== Static page ========== */
.static-layout {
  display: grid; grid-template-columns: 200px 1fr; gap: 16px; align-items: start;
}
.group-panel { padding: 0; overflow: hidden; }
.group-head {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.group-head strong { font-size: 14px; }
.group-head a { font-size: 13px; }
.group-list { list-style: none; margin: 0; padding: 8px 0; max-height: calc(100vh - 160px); overflow: auto; }
.group-list a {
  display: flex; justify-content: space-between; padding: 8px 16px;
  color: var(--text); border-left: 3px solid transparent;
}
.group-list a:hover { background: #fafafa; color: var(--primary); }
.group-list a.active {
  background: var(--primary-bg); color: var(--primary); border-left-color: var(--primary);
}
.group-list .cnt {
  min-width: 24px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: #eef4f7;
  color: var(--nx-muted);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.group-list a.active .cnt {
  background: rgba(13,148,136,.15);
  color: var(--nx-teal-deep);
}

.buy-empty {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f7fbfd;
  border: 1px dashed var(--nx-line-strong);
  color: var(--nx-muted);
  font-size: 13px;
  margin-bottom: 16px;
}
.buy-empty svg { color: var(--nx-teal); flex-shrink: 0; }

.toolbar {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 12px;
}
.toolbar .spacer { flex: 1; }
.action-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }

.proxy-str {
  display: inline-flex; align-items: center; gap: 6px; max-width: 320px;
}
.proxy-str code {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-size: 12px; color: var(--text-secondary);
}
.copy-btn {
  border: none; background: transparent; color: var(--primary); cursor: pointer; padding: 0;
  font-size: 14px;
}

.table-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0 0; color: var(--text-secondary); font-size: 13px; flex-wrap: wrap; gap: 8px;
}
.pager { display: flex; align-items: center; gap: 4px; }
.pager a, .pager span {
  min-width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-strong); border-radius: 6px; color: var(--text); padding: 0 8px;
  background: #fff;
}
.pager a:hover { color: var(--primary); border-color: var(--primary); }
.pager .current { border-color: var(--primary); color: var(--primary); font-weight: 600; }

/* ========== Dynamic / Mobile extract ========== */
.balance-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.balance-row .blabel { color: var(--text-secondary); font-size: 14px; margin-bottom: 4px; }
.balance-row .bvalue { font-size: 36px; font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
.balance-actions { display: flex; gap: 8px; }

.extract-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 20px;
  align-items: end;
}
.extract-grid .full { grid-column: span 2; }
.extract-grid .span-btn { display: flex; gap: 12px; align-items: end; }

.terminal-box {
  background: #1f1f1f; border-radius: 8px; min-height: 220px;
  padding: 16px; color: rgba(255,255,255,.85);
  font-family: SFMono-Regular, Consolas, Menlo, monospace; font-size: 13px;
  white-space: pre-wrap; word-break: break-all; line-height: 1.7;
  position: relative;
}
.terminal-box .ph { color: rgba(255,255,255,.35); }
.terminal-actions {
  display: flex; justify-content: flex-end; gap: 8px; margin-top: 12px;
}

/* Auth / Landing */
.auth-page {
  min-height: 100vh; display: grid; place-items: center;
  background: linear-gradient(180deg, #e6f4ff 0%, #f5f5f5 40%, #f5f5f5 100%);
  padding: 24px;
}
.auth-card {
  width: min(400px, 100%); background: #fff; border-radius: 12px;
  padding: 32px 28px; box-shadow: 0 6px 16px rgba(0,0,0,.08);
}
.auth-card h1 { margin: 0 0 8px; font-size: 24px; }
.auth-card .sub { color: var(--text-secondary); margin-bottom: 24px; }
.auth-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 20px; font-weight: 700; }

.landing-header {
  height: 64px; background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center;
}
.landing-header .inner {
  width: min(1160px, calc(100% - 32px)); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.landing-hero {
  background:
    radial-gradient(900px 400px at 85% 0%, rgba(22,119,255,.18), transparent 60%),
    linear-gradient(180deg, #f0f7ff, #f5f5f5);
  padding: 72px 0 80px;
}
.landing-hero .inner {
  width: min(1160px, calc(100% - 32px)); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
.landing-hero h1 {
  font-size: clamp(36px, 5vw, 52px); line-height: 1.15; margin: 0 0 16px; letter-spacing: -.03em;
}
.landing-hero p { color: var(--text-secondary); font-size: 16px; line-height: 1.7; margin: 0 0 28px; max-width: 520px; }
.hero-card {
  background: linear-gradient(145deg, #0958d9, #1677ff 50%, #69b1ff);
  border-radius: 20px; min-height: 300px; color: #fff; padding: 28px;
  box-shadow: 0 20px 40px rgba(22,119,255,.3);
  display: flex; flex-direction: column; justify-content: space-between;
}
.features {
  width: min(1160px, calc(100% - 32px)); margin: 0 auto; padding: 48px 0 72px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 24px;
}
.feature-card h3 { margin: 0 0 8px; }
.feature-card p { margin: 0; color: var(--text-secondary); line-height: 1.6; }
.landing-footer {
  border-top: 1px solid var(--border); background: #fff; padding: 24px;
  text-align: center; color: var(--text-tertiary); font-size: 13px;
}

/* Superadmin reuse console light theme */
.sa-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-bottom: 16px;
}
.sa-stat {
  background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 16px;
}
.sa-stat .l { color: var(--text-secondary); font-size: 13px; }
.sa-stat .v { font-size: 24px; font-weight: 700; margin-top: 4px; }

.empty {
  text-align: center; padding: 48px 16px; color: var(--text-tertiary);
}

/* Floating contact dock (bottom-right) */
.contact-dock {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* 控制台页：浮层上移，避免挡住表格底部「续费」 */
body:has(.console-layout) .contact-dock {
  bottom: 88px;
  right: 14px;
}
.contact-dock-btn {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .16);
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}
.contact-dock-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, .2);
}
.contact-dock-btn.is-email { background: #2f80ed; }
.contact-dock-btn.is-whatsapp { background: #25d366; }
.contact-dock-btn.is-telegram { background: #2aabee; }
.contact-dock-btn.is-top {
  background: #fff;
  color: #475569;
  border: 1px solid #cbd5e1;
  box-shadow: 0 6px 16px rgba(15, 23, 42, .1);
}
.contact-dock-btn.is-top:hover { color: #0f172a; filter: none; }
.contact-dock-btn[hidden] { display: none !important; }

@media (max-width: 768px) {
  .contact-dock { right: 12px; bottom: 14px; }
  .contact-dock-btn { width: 42px; height: 42px; border-radius: 7px; }
}

@media (max-width: 1100px) {
  .extract-grid { grid-template-columns: repeat(2, 1fr); }
  .extract-grid .full { grid-column: span 2; }
  .buy-deco { display: none; }
  .static-layout { grid-template-columns: 1fr; }
  .promo-banner { display: none; }
}
@media (max-width: 768px) {
  .console-sidebar { display: none; }
  .console-logo { width: auto; }
  .landing-hero .inner, .features { grid-template-columns: 1fr; }
  .field-row { flex-direction: column; }
  .field-row > .flabel { text-align: left; width: auto; }
  .buy-footer { flex-direction: column; align-items: stretch; }
  .extract-grid { grid-template-columns: 1fr; }
  .extract-grid .full { grid-column: span 1; }
}
