:root {
  --bg: #f6f9fc;
        --panel: #ffffff;
        --panel-soft: #fbfdff;
        --line: #dde6ef;
        --line-soft: #e8eff5;
        --text: #141b24;
        --muted: #697683;
        --faint: #94a2af;
        --blue: #087bdc;
        --blue-strong: #0373d6;
        --blue-soft: #e8f6ff;
        --green: #12a978;
        --green-soft: #e8f8ef;
        --cyan: #3ab1d8;
        --cyan-soft: #e7f7fe;
        --purple: #8957df;
        --purple-soft: #f0eaff;
        --orange: #f08a24;
        --orange-soft: #fff3e6;
        --shadow: 0 16px 36px rgba(35, 64, 92, .08);
        --shadow-small: 0 6px 16px rgba(38, 65, 91, .06);
}
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
        min-height: 100%;
        background:
          radial-gradient(circle at 7% 96%, rgba(224, 246, 255, .66) 0 96px, transparent 97px),
          radial-gradient(circle at 100% 9%, rgba(238, 246, 255, .72) 0 170px, transparent 171px),
          linear-gradient(180deg, #f8fbff 0%, var(--bg) 48%, #f5f9fd 100%);
        color: var(--text);
        font-family: "Inter", "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
        letter-spacing: 0;
}
body {
  overflow-x: hidden;
}
button, input {
  font: inherit;
}
button {
  cursor: pointer;
        border: 0;
        background: none;
}
.page {
  width: 100%;
        min-height: 100vh;
        position: relative;
        padding: 0;
}
.page::before {
  content: "";
        position: absolute;
        inset: 138px 0 auto;
        height: 1px;
        background: #dbe8f1;
        display: none;
}
.shell {
  width: min(1880px, calc(100vw - 96px));
        margin: 0 auto;
        position: relative;
        z-index: 1;
}
.layout {
  display: grid;
        grid-template-columns: 29% 1fr;
        gap: 3.4%;
        align-items: start;
}
.sidebar {
  position: sticky;
        top: 18px;
}
.control-panel {
  min-height: 575px;
        padding: 0 22px 22px;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: var(--panel);
        box-shadow: var(--shadow-small);
}
.environment {
  padding: 22px 0 24px;
}
.label {
  display: flex;
        align-items: center;
        gap: 7px;
        margin-bottom: 10px;
        color: #626f7e;
        font-size: 14px;
        font-weight: 600;
}
.segmented {
  display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
}
.segment {
  height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        border: 1px solid var(--line);
        border-radius: 7px;
        color: #576577;
        background: #fff;
        font-weight: 700;
        transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.segment.active {
  color: #fff;
        border-color: var(--blue);
        background: var(--blue);
        box-shadow: 0 10px 22px rgba(8, 123, 220, .24);
}
.section-title {
  display: flex;
        align-items: center;
        gap: 11px;
        margin: 20px 0 22px;
        color: #151d27;
        font-size: 16px;
        font-weight: 800;
}
.num {
  display: inline-grid;
        place-items: center;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        color: #fff;
        background: var(--blue);
        font-size: 14px;
        font-weight: 800;
        flex: 0 0 auto;
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 8px;
        color: #677482;
        font-size: 14px;
        font-weight: 600;
}
.field input {
  width: 100%;
        height: 42px;
        border: 1px solid var(--line);
        border-radius: 6px;
        padding: 0 15px;
        color: #465360;
        background: #fff;
        outline: none;
        box-shadow: inset 0 1px 1px rgba(20, 35, 50, .02);
}
.field input:focus {
  border-color: #8dc6f0;
        box-shadow: 0 0 0 3px rgba(8, 123, 220, .11);
}
.panel-spacer {
  height: 210px;
}
.submit {
  width: 100%;
        height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-radius: 6px;
        color: #fff;
        background: var(--blue);
        font-size: 16px;
        font-weight: 800;
        box-shadow: 0 13px 22px rgba(8, 123, 220, .24);
        transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.submit:hover {
  background: var(--blue-strong);
        transform: translateY(-1px);
        box-shadow: 0 16px 28px rgba(8, 123, 220, .26);
}
.subnote {
  margin: 15px 0 0;
        color: #9aa6b2;
        text-align: center;
        font-size: 12px;
}
.main {
  min-width: 0;
}
.choices {
  display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        margin: 0 0 18px;
}
.choices.choice-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-bottom: 18px;
}
.choices.choice-pair .choice {
  min-height: 112px;
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        grid-template-areas:
          "badge title icon"
          ". desc icon";
        column-gap: 16px;
        row-gap: 8px;
        align-items: center;
        padding: 18px 22px;
        border-radius: 10px;
}
.choices.choice-pair .choice.active {
  border-width: 1px;
        box-shadow: 0 4px 12px rgba(8, 123, 220, .11);
}
.choices.choice-pair .choice-badge {
  grid-area: badge;
        height: 30px;
        min-width: 66px;
        padding: 0 12px;
        border-radius: 5px;
        font-size: 14px;
}
.choices.choice-pair .choice > span:not(.choice-badge) {
  display: contents;
}
.choices.choice-pair .choice h2 {
  grid-area: title;
        margin: 0;
        font-size: 22px;
        line-height: 1.18;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
}
.choices.choice-pair .choice p {
  grid-area: desc;
        font-size: 14px;
        line-height: 1.35;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
}
.choices.choice-pair .choice > svg {
  grid-area: icon;
        width: 24px;
        height: 24px;
        margin-top: 0;
}
.choice {
  height: 96px;
        min-height: 96px;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        grid-template-areas:
          "badge title icon"
          ". desc icon";
        column-gap: 13px;
        row-gap: 6px;
        align-items: center;
        padding: 10px 14px;
        border: 1px solid transparent;
        border-radius: 10px;
        background: transparent;
        position: relative;
}
.choice.active {
  border: 1px solid var(--blue);
        background: #fff;
        box-shadow: 0 6px 16px rgba(8, 123, 220, .12);
}
.choice-badge {
  display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 30px;
        min-width: 65px;
        padding: 0 12px;
        border-radius: 5px;
        color: #fff;
        background: #127ef1;
        font-size: 14px;
        font-weight: 800;
        grid-area: badge;
        align-self: center;
}
.choice > span:not(.choice-badge) {
  display: contents;
        min-width: 0;
}
.choice:nth-child(2) .choice-badge {
  background: var(--green);
}
.choice h2 {
  grid-area: title;
        margin: 0;
        font-size: 17px;
        line-height: 1.12;
        font-weight: 850;
        overflow-wrap: break-word;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
}
.choice p {
  grid-area: desc;
        margin: 0;
        color: #7c8895;
        font-size: 12px;
        line-height: 1.25;
        overflow-wrap: break-word;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
}
.choice svg {
  grid-area: icon;
        width: 20px;
        height: 20px;
        margin-top: 0;
        color: #228fba;
}
.steps {
  width: 100%;
        min-height: 0;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start;
        gap: 0;
        padding: 8px 0 14px;
        margin: 0 0 18px;
        background: transparent;
}
.step {
  display: flex;
        width: 100%;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
        color: #8a98a6;
        position: relative;
        justify-self: stretch;
        min-width: 0;
}
.step-body {
  position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        min-width: 0;
}
.step:not(:last-child)::after {
  content: "";
        position: absolute;
        left: 50%;
        width: 100%;
        height: 2px;
        top: 15px;
        background: #d9e4ef;
        z-index: 0;
}
.step-dot {
  width: 32px;
        height: 32px;
        display: inline-grid;
        place-items: center;
        border-radius: 50%;
        color: #7f8e9c;
        background: #f2f6fa;
        border: 2px solid #dbe5ef;
        box-shadow: 0 0 0 6px #fff;
        font-size: 13px;
        font-weight: 900;
}
.step-label {
  color: inherit;
        font-size: 16px;
        line-height: 1.2;
        font-weight: 800;
        letter-spacing: -.01em;
}
.step.completed, .step.active {
  color: #26313d;
}
.step.completed:not(:last-child)::after {
  background: linear-gradient(90deg, #1384e5 0%, #69bcff 100%);
}
.step.completed .step-dot, .step.active .step-dot {
  color: #fff;
        background: var(--blue);
        border-color: var(--blue);
        box-shadow: 0 0 0 6px #fff, 0 10px 20px rgba(8, 123, 220, .18);
}
.solution-shell {
  position: relative;
}
.ghost-card {
  position: absolute;
        top: 20px;
        right: -34px;
        width: 82px;
        height: 493px;
        border: 1px solid #e0e8f0;
        border-left: 0;
        border-radius: 0 12px 12px 0;
        background: rgba(255, 255, 255, .55);
        box-shadow: 18px 24px 38px rgba(56, 82, 107, .04);
}
.solution {
  position: relative;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 11px;
        background: #fff;
        box-shadow: var(--shadow-small);
}
.solution-head {
  height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 24px;
        border-bottom: 1px solid var(--line);
        background: #fff;
}
.solution-title {
  display: flex;
        align-items: center;
        gap: 12px;
        font-size: 18px;
        font-weight: 850;
}
.solution-title .num {
  background: var(--green);
}
.tag {
  min-width: 78px;
        height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        color: #fff;
        background: var(--green);
        font-size: 14px;
        font-weight: 800;
}
.metric-grid {
  display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px 24px;
        padding: 26px 24px 24px;
}
.metric {
  min-height: 132px;
        padding: 22px 24px 20px;
        border: 1px solid var(--line);
        border-radius: 9px;
        background: var(--panel-soft);
}
.metric-label {
  display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 11px;
        color: #7b8794;
        font-size: 14px;
        font-weight: 700;
}
.pvalue {
  color: var(--green);
        font-size: 38px;
        line-height: 1.08;
        font-weight: 850;
        font-variant-numeric: tabular-nums;
        font-feature-settings: "tnum";
}
.best {
  display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 28px;
        padding: 0 14px;
        margin-top: 10px;
        border-radius: 5px;
        color: var(--green);
        background: var(--green-soft);
        font-size: 14px;
        font-weight: 800;
}
.distance {
  display: flex;
        align-items: baseline;
        gap: 16px;
        color: #121820;
        font-size: 36px;
        line-height: 1.12;
        font-weight: 850;
        letter-spacing: 0;
        font-variant-numeric: tabular-nums;
        font-feature-settings: "tnum";
}
.distance span {
  font-size: 34px;
        font-weight: inherit;
}
.price {
  color: var(--green);
        font-size: 31px;
        line-height: 1.12;
        font-weight: 850;
        letter-spacing: .01em;
        white-space: nowrap;
        font-variant-numeric: tabular-nums;
        font-feature-settings: "tnum";
}
.hint {
  margin-top: 13px;
        color: #7d8792;
        font-size: 13px;
}
.status-text {
  display: flex;
        align-items: center;
        gap: 7px;
        margin-top: 13px;
        color: var(--orange);
        font-size: 24px;
        line-height: 1.18;
        font-weight: 850;
}
.status-text.good {
  color: var(--green);
}
.suggestion {
  margin-top: 12px;
        color: #697683;
        font-size: 13px;
        line-height: 1.45;
}
.screen-section {
  padding: 11px 24px 23px;
        border-top: 1px solid var(--line);
        background: #fff;
}
.ratio-block {
  margin-bottom: 18px;
}
.ratio-title {
  margin: 0 0 11px;
        font-size: 23px;
        line-height: 1;
        font-weight: 800;
}
.screen-cards {
  display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 13px;
}
.screen-card {
  min-height: 76px;
        display: grid;
        grid-template-columns: 45px 1fr;
        align-items: center;
        gap: 12px;
        padding: 13px 14px;
        border: 1px solid var(--line);
        border-radius: 7px;
        background: #fff;
}
.screen-icon {
  width: 39px;
        height: 39px;
        display: inline-grid;
        place-items: center;
        color: #168bdc;
        border-radius: 6px;
        background: #ddf6ff;
}
.screen-label {
  color: #778392;
        font-size: 13px;
        font-weight: 700;
}
.screen-value {
  margin-top: 4px;
        color: #222b35;
        font-size: 16px;
        font-weight: 800;
        white-space: nowrap;
}
.notice {
  min-height: 43px;
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 9px 14px;
        border: 1px solid #c8eedb;
        border-radius: 5px;
        color: #28755f;
        background: #eaf9f0;
        font-size: 14px;
        font-weight: 700;
}
.compare {
  position: relative;
        margin-top: 18px;
        border: 1px solid var(--line);
        border-radius: 11px;
        background: #fff;
        box-shadow: var(--shadow-small);
}
.compare::after {
  content: "";
        position: absolute;
        right: -32px;
        top: 17px;
        width: 80px;
        height: 236px;
        border: 1px solid #e0e8f0;
        border-left: 0;
        border-radius: 0 11px 11px 0;
        background: rgba(255, 255, 255, .55);
        z-index: -1;
}
.compare-head {
  height: 60px;
        display: flex;
        align-items: center;
        padding: 0 23px;
        border-bottom: 1px solid var(--line);
        font-size: 19px;
        font-weight: 850;
}
.plans {
  display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 14px;
        padding: 25px 24px 28px;
}
.plan-card {
  min-height: 255px;
        padding: 22px 24px 18px;
        border: 2px solid var(--green);
        border-radius: 8px;
        background: #fff;
        transition: transform .18s ease, box-shadow .18s ease;
}
.plan-card:hover {
  transform: translateY(-2px);
        box-shadow: 0 18px 32px rgba(51, 76, 100, .1);
}
.plan-card.economy {
  border-color: #6dc8e5;
}
.plan-card.premium {
  border-color: #b79bea;
}
.plan-badge {
  display: inline-flex;
        align-items: center;
        height: 30px;
        padding: 0 13px;
        border-radius: 5px;
        color: #0b8f68;
        background: var(--green-soft);
        font-size: 14px;
        font-weight: 800;
}
.economy .plan-badge {
  color: #1f88b3;
        background: var(--cyan-soft);
}
.premium .plan-badge {
  color: #7c47d1;
        background: var(--purple-soft);
}
.plan-p {
  margin: 12px 0 18px;
        color: var(--green);
        font-size: 38px;
        line-height: 1.08;
        font-weight: 850;
        font-variant-numeric: tabular-nums;
        font-feature-settings: "tnum";
}
.economy .plan-p {
  color: #147ed0;
}
.premium .plan-p {
  color: var(--purple);
}
.plan-label {
  color: #7a8693;
        font-size: 14px;
        line-height: 1.5;
}
.plan-price {
  margin: 1px 0 11px;
        color: #27313d;
        font-size: 15px;
        font-weight: 850;
        white-space: nowrap;
}
.pill {
  display: inline-flex;
        align-items: center;
        height: 25px;
        padding: 0 10px;
        border-radius: 5px;
        color: #0b8f68;
        background: var(--green-soft);
        font-size: 13px;
        font-weight: 800;
}
.pill.good {
  color: #237fa3;
        background: var(--cyan-soft);
}
.pill.warn {
  color: #7c47d1;
        background: var(--purple-soft);
}
.download-row {
  display: flex;
        justify-content: flex-end;
        margin-top: 18px;
        padding-right: 1px;
        position: relative;
}
.download-row::after {
  content: "";
        position: absolute;
        right: -34px;
        top: 20px;
        width: 96px;
        height: 42px;
        border: 1px solid #e0e8f0;
        border-left: 0;
        border-radius: 0 10px 10px 0;
        background: rgba(255, 255, 255, .7);
        z-index: -1;
}
.download {
  height: 42px;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 0 18px;
        border: 1px solid #d7e0e9;
        border-radius: 6px;
        color: #2e3945;
        background: #fff;
        box-shadow: 0 7px 15px rgba(46, 70, 92, .07);
        font-weight: 800;
}
.trust {
  width: min(1880px, calc(100vw - 96px));
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 36px;
        margin: 42px auto 0;
        padding: 0 18px;
        position: relative;
        z-index: 1;
}
.trust-item {
  display: flex;
        align-items: center;
        gap: 16px;
}
.trust-icon {
  width: 43px;
        height: 43px;
        display: inline-grid;
        place-items: center;
        color: #168bdc;
        border-radius: 7px;
        background: #dff7ff;
        flex: 0 0 auto;
}
.trust-title {
  margin: 0 0 4px;
        font-size: 18px;
        font-weight: 850;
}
.trust-text {
  margin: 0;
        color: #8a96a3;
        font-size: 13px;
}
svg {
  width: 20px;
        height: 20px;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        fill: none;
}
.icon-sm {
  width: 16px;
        height: 16px;
}
.page-view[hidden] {
  display: none;
}
.select {
  width: 100%;
        height: 44px;
        border: 1px solid var(--line);
        border-radius: 6px;
        padding: 0 14px;
        color: #465360;
        background: #fff;
        outline: none;
        font: inherit;
        font-weight: 700;
}
.model-note {
  margin: -10px 0 18px;
        color: #8a97a5;
        font-size: 12px;
}
.resolution-list {
  display: grid;
        gap: 9px;
        margin-top: 10px;
}
.resolution-option {
  height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--line-soft);
        border-radius: 4px;
        color: #1f2933;
        background: #fff;
        font-size: 18px;
        font-weight: 850;
        font-variant-numeric: tabular-nums;
        font-feature-settings: "tnum";
        transition: border-color .16s ease, background .16s ease, color .16s ease;
}
.resolution-option.active {
  color: #7d3ee0;
        border-color: #ff8b98;
        background: #ff909c;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2);
}
.engineering-panel {
  min-height: 684px;
}
.engineering-metrics {
  grid-template-columns: repeat(3, 1fr);
}
.engineering-metrics .metric {
  height: 112px;
}
.engineering-metrics .pvalue {
  font-size: 31px;
}
.engineering-main-value {
  color: #161d27;
        font-size: 25px;
        line-height: 1.16;
        font-weight: 850;
        white-space: normal;
        font-variant-numeric: tabular-nums;
        font-feature-settings: "tnum";
}
.engineering-main-value.compact {
  font-size: 24px;
}
.engineering-grid {
  margin-top: 18px;
        border: 1px solid var(--line);
        border-radius: 11px;
        background: #fff;
        box-shadow: var(--shadow-small);
        overflow: hidden;
}
.grid-head {
  min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 0 24px;
        border-bottom: 1px solid var(--line);
        font-size: 18px;
        font-weight: 850;
}
.grid-head span {
  color: #778392;
        font-size: 13px;
        font-weight: 700;
        text-align: right;
}
.cabinet-grid {
  display: grid;
        gap: 4px;
        padding: 24px;
        overflow: auto;
}
.cabinet-grid.diagram-mode {
  display: block;
        overflow: visible;
        padding: 26px 28px 30px;
}
.cabinet-cell {
  min-width: 48px;
        aspect-ratio: 2 / 1;
        height: auto;
        display: grid;
        place-items: center;
        border: 1px solid #1591d2;
        border-radius: 2px;
        color: #6c7884;
        background: #f8fcff;
        font-size: 11px;
        box-shadow: inset 0 0 0 1px rgba(21, 145, 210, .12);
}
.cabinet-overflow {
  color: #0b7fc5;
        border-style: dashed;
        background: #e8f6ff;
        font-weight: 850;
}
.module-dimension-diagram {
  width: min(780px, 100%);
        margin: 0 auto;
        --diagram-screen-height: clamp(150px, 17vw, 220px);
        --screen-ratio: 16 / 9;
        color: #25313d;
        font-size: 12px;
        font-weight: 700;
}
.dimension-line {
  height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
}
.dimension-line::before, .dimension-side::before {
  content: "";
        position: absolute;
        background: #566370;
}
.dimension-line::before {
  left: 0;
        right: 0;
        top: 50%;
        height: 1px;
}
.dimension-line::after {
  content: "";
        position: absolute;
        inset: 7px 0 auto;
        height: 8px;
        border-left: 1px solid #566370;
        border-right: 1px solid #566370;
}
.dimension-label {
  position: relative;
        z-index: 1;
        padding: 0 10px;
        color: #2b3744;
        background: #fff;
        white-space: nowrap;
}
.dimension-middle {
  display: grid;
        grid-template-columns: 60px minmax(0, 1fr);
        align-items: stretch;
        gap: 14px;
}
.dimension-side {
  min-height: var(--diagram-screen-height);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
}
.dimension-side::before {
  top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
}
.dimension-side::after {
  content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: calc(50% - 4px);
        width: 8px;
        border-top: 1px solid #566370;
        border-bottom: 1px solid #566370;
}
.dimension-side .dimension-label {
  transform: rotate(-90deg);
}
.dimension-screen {
  width: 100%;
        aspect-ratio: var(--screen-ratio, 16 / 9);
        height: auto;
        border: 2px solid #168bdc;
        border-radius: 8px;
        background: #e8f6ff;
        box-shadow: inset 0 0 0 1px rgba(21, 145, 210, .12);
}
.dimension-module-grid {
  display: grid;
        gap: 4px;
        overflow: auto;
}
.mode-grid {
  display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 18px;
}
.mode-option {
  min-height: 44px;
        border: 1px solid var(--line);
        border-radius: 6px;
        color: #586674;
        background: #fff;
        font-weight: 800;
}
.mode-option.active {
  color: #fff;
        border-color: var(--orange);
        background: var(--orange);
        box-shadow: 0 9px 18px rgba(240, 138, 36, .18);
}
.system-metrics {
  grid-template-columns: repeat(4, 1fr);
}
.system-card-grid {
  display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        margin-top: 18px;
}
.system-diagram {
  min-height: 206px;
        padding: 22px;
        border: 1px solid var(--line);
        border-radius: 11px;
        background: #fff;
        box-shadow: var(--shadow-small);
}
.system-diagram h3 {
  margin: 0 0 14px;
        font-size: 17px;
}
.system-map {
  display: grid;
        gap: 4px;
        max-height: 260px;
        overflow: auto;
}
.system-cell {
  min-width: 34px;
        height: 28px;
        display: grid;
        place-items: center;
        border-radius: 3px;
        color: #176b92;
        background: #e8f6ff;
        font-size: 10px;
        font-weight: 800;
}
.power-cell {
  color: #7a4b08;
        background: #fff3e6;
}
.system-note {
  margin: 12px 0 0;
        color: #788593;
        font-size: 12px;
        line-height: 1.5;
}
.engineering-bottom {
  display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        margin-top: 18px;
}
.estimate-download {
  grid-column: 1 / -1;
        margin-top: -2px;
        padding: 0;
}
.estimate-download .download {
  min-width: 230px;
        justify-content: center;
        color: #12304a;
        background: linear-gradient(180deg, #fff 0%, #f5fbff 100%);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 7px 15px rgba(46, 70, 92, .07);
}
.estimate-card {
  border: 1px solid var(--line);
        border-radius: 11px;
        background: #fff;
        box-shadow: var(--shadow-small);
        overflow: hidden;
}
.estimate-head {
  height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 22px;
        border-bottom: 1px solid var(--line);
        font-size: 17px;
        font-weight: 850;
}
.estimate-body {
  padding: 19px 22px 22px;
}
.estimate-row {
  display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 18px;
        padding: 11px 0;
        color: #6f7b87;
        border-bottom: 1px solid var(--line-soft);
        font-size: 14px;
}
.estimate-row strong {
  color: #161d27;
        font-size: 18px;
        font-weight: 850;
}
.estimate-row.total {
  border-bottom: 0;
        color: #111923;
        font-weight: 850;
}
.estimate-row.total strong {
  color: var(--green);
        font-size: 29px;
        font-weight: 850;
        font-variant-numeric: tabular-nums;
        font-feature-settings: "tnum";
}
.estimate-foot {
  margin: 13px 0 0;
        color: #8b97a4;
        font-size: 12px;
}
@media (max-width: 1120px) {
  .shell, .trust {
    width: min(940px, calc(100vw - 32px));
  }
  .layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .control-panel {
    min-height: 0;
  }
  .panel-spacer {
    height: 40px;
  }
  .choices {
    grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
  }
  .ghost-card, .compare::after, .download-row::after {
    display: none;
  }
}
@media (max-width: 768.98px) {
  .page {
    padding-top: 12px;
  }
  .choice {
    height: auto;
            min-height: 92px;
            padding: 10px;
            column-gap: 6px;
            row-gap: 6px;
  }
  .choices {
    grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
  }
  .choice-badge {
    height: 24px;
            min-width: 48px;
            padding: 0 8px;
            font-size: 12px;
  }
  .choice h2 {
    margin-bottom: 5px;
            font-size: 13px;
            line-height: 1.2;
  }
  .choice p {
    font-size: 11px;
            line-height: 1.28;
  }
  .choice svg {
    width: 16px;
            height: 16px;
            margin-top: 4px;
  }
  .plan-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
            margin: 12px 0 10px;
  }
  .plan-nav-card {
    min-height: 82px;
            gap: 8px;
            padding: 14px 12px 12px;
            border-radius: 16px;
  }
  .plan-nav-number {
    font-size: 24px;
  }
  .plan-nav-label {
    font-size: 13px;
            line-height: 1.2;
  }
  .steps {
    grid-template-columns: repeat(3, minmax(154px, 1fr));
            gap: 0;
            overflow-x: auto;
            padding: 8px 0 14px;
            margin-bottom: 12px;
  }
  .step {
    padding: 0 6px;
  }
  .step-body {
    gap: 8px;
  }
  .step-dot {
    width: 28px;
            height: 28px;
            box-shadow: 0 0 0 4px #fff;
            font-size: 12px;
  }
  .step-label {
    font-size: 14px;
  }
  .metric-grid, .screen-cards, .trust {
    grid-template-columns: 1fr;
  }
  .solution-head, .compare-head {
    padding-inline: 16px;
  }
  .metric-grid, .screen-section, .plans, .cabinet-grid, .estimate-body {
    padding-inline: 16px;
  }
  .engineering-metrics, .system-metrics, .system-card-grid, .mode-grid {
    grid-template-columns: 1fr;
  }
  .engineering-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
            padding: 12px 16px;
  }
  .engineering-metrics .metric {
    min-height: 0;
            height: auto;
            padding: 10px 10px 9px;
            border-radius: 10px;
  }
  .engineering-metrics .metric-label {
    margin-bottom: 5px;
            font-size: 10px;
            line-height: 1.2;
  }
  .engineering-metrics .pvalue {
    font-size: 24px;
  }
  .engineering-main-value, .engineering-main-value.compact {
    font-size: 14px;
            line-height: 1.12;
  }
  .engineering-metrics .hint {
    display: none;
  }
  .engineering-bottom {
    grid-template-columns: 1fr;
            gap: 8px;
            margin-top: 12px;
  }
  .engineering-bottom .estimate-card {
    min-width: 0;
  }
  .estimate-download {
    grid-column: 1 / -1;
            margin-top: 0;
            padding: 0;
  }
  .estimate-download .download {
    width: 100%;
            height: 42px;
            border-radius: 10px;
  }
  .engineering-grid {
    margin-top: 12px;
  }
  .grid-head {
    min-height: 48px;
            align-items: flex-start;
            flex-direction: column;
            gap: 4px;
            padding: 10px 16px;
  }
  .grid-head span {
    text-align: left;
            font-size: 11px;
            line-height: 1.25;
  }
  .cabinet-grid {
    padding: 12px;
  }
  .cabinet-grid.diagram-mode {
    padding: 14px 12px 16px;
  }
  .estimate-card {
    border-radius: 10px;
  }
  .estimate-head {
    height: 34px;
            padding-inline: 10px;
            font-size: 12px;
  }
  .estimate-body {
    padding: 8px 10px 10px;
  }
  .estimate-row {
    min-height: 27px;
            align-items: center;
            gap: 6px;
            padding: 6px 0;
            font-size: 10px;
  }
  .estimate-row strong {
    max-width: 104px;
            font-size: 11px;
            text-align: right;
            white-space: nowrap;
  }
  .estimate-row.total strong {
    font-size: 14px;
  }
  .estimate-card[aria-label="Price estimate"] .estimate-row:nth-child(3), .estimate-card[aria-label="Price estimate"] .estimate-row:nth-child(4), .estimate-card[aria-label="Price estimate"] .estimate-row:nth-child(5) {
    display: none;
  }
  .estimate-foot {
    display: none;
  }
  .price {
    font-size: 27px;
  }
  .compare-head {
    height: 42px;
            font-size: 15px;
  }
  .compare::after {
    display: none;
  }
  .plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 6px;
            padding: 10px 10px 12px;
  }
  .plan-card {
    min-height: 108px;
            padding: 8px 7px 7px;
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            grid-template-rows: auto minmax(36px, 1fr) auto auto;
            gap: 5px;
            align-items: stretch;
            border-width: 1px;
            border-radius: 12px;
            background: linear-gradient(180deg, #f4fff9 0%, #ffffff 100%);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78);
  }
  .plan-card.economy {
    background: linear-gradient(180deg, #f3fbff 0%, #ffffff 100%);
  }
  .plan-card.premium {
    background: linear-gradient(180deg, #f8f5ff 0%, #ffffff 100%);
  }
  .plan-badge {
    justify-self: start;
            max-width: 100%;
            height: 19px;
            padding: 0 6px;
            font-size: 9px;
            line-height: 1;
            white-space: nowrap;
  }
  .plan-p {
    margin: 0;
            display: flex;
            align-items: center;
            min-width: 0;
            min-height: 36px;
            font-size: 26px;
            line-height: .98;
            letter-spacing: -.04em;
            white-space: normal;
  }
  .premium .plan-p {
    font-size: 20px;
            line-height: 1.02;
            letter-spacing: -.045em;
  }
  .plan-label {
    display: none;
  }
  .plan-price {
    margin: 0;
            font-size: 12px;
            line-height: 1.1;
            letter-spacing: -.01em;
  }
  .pill {
    width: 100%;
            min-width: 0;
            height: 18px;
            justify-content: center;
            padding: 0 4px;
            border-radius: 6px;
            font-size: 9px;
            line-height: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
  }
  .plans .plan-card .pill {
    justify-self: stretch;
  }
  .trust {
    gap: 20px;
  }
}
.choice {
  color: inherit;
        text-decoration: none;
}
.choice:focus-visible {
  outline: 3px solid rgba(8, 123, 220, .28);
        outline-offset: 3px;
}
@media (min-width: 1121px) {
  body[data-page="page2"] .shell, body[data-page="page2"] .trust, body[data-page="page3"] .shell, body[data-page="page3"] .trust {
    width: min(1880px, calc(100vw - 96px));
  }
  body[data-page="page3"] {
    overflow-x: hidden;
  }
  body[data-page="page3"] .page {
    min-width: 0;
  }
  body[data-page="page2"] .layout, body[data-page="page3"] .layout {
    grid-template-columns: 29% 1fr;
            gap: 3.4%;
  }
}
body[data-page="page2"] .layout {
  grid-template-columns: 340px minmax(0, 1fr);
        gap: 28px;
}
@media (max-width: 1320px) {
  body[data-page="page2"] .layout {
    grid-template-columns: 310px minmax(0, 1fr);
            gap: 24px;
  }
}
@media (max-width: 1120px) and (min-width: 761px) {
  body[data-page="page2"] .layout {
    grid-template-columns: minmax(286px, 32%) minmax(0, 1fr);
            gap: 18px;
  }
  body[data-page="page2"] .layout > .sidebar {
    position: sticky;
            top: 14px;
  }
}
@media (max-width: 768.98px) {
  body[data-page="page2"] .layout {
    grid-template-columns: 1fr;
  }
  .dimension-label {
    white-space: normal;
            overflow-wrap: anywhere;
  }
}
.footer-inner {
  width: min(1880px, calc(100vw - 96px));
        margin: 0 auto;
        position: relative;
        z-index: 1;
}
.footer-button:focus-visible {
  outline: 2px solid #55b8ff;
        outline-offset: 4px;
}
.plan-nav {
  display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        margin: 18px 0 12px;
}
.plan-nav-card {
  --plan-accent: #1268f3;
        position: relative;
        min-width: 0;
        min-height: 124px;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        grid-template-areas: "label copy";
        align-content: center;
        align-items: center;
        justify-items: stretch;
        gap: 14px;
        padding: 22px 22px 20px;
        border: 1px solid #d5e2ef;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 251, 255, .96));
        box-shadow: 0 14px 32px rgba(35, 64, 92, .08);
        color: var(--text);
        text-decoration: none;
        transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.plan-nav-card:hover, .plan-nav-card:focus-visible {
  transform: translateY(-2px);
        border-color: color-mix(in srgb, var(--plan-accent) 44%, #d5e2ef 56%);
        box-shadow: 0 18px 36px rgba(35, 64, 92, .12);
        outline: none;
}
.plan-nav-card.is-active {
  border-color: transparent;
        background: linear-gradient(180deg, rgba(255, 255, 255, .99), color-mix(in srgb, #1268f3 10%, white 90%));
        box-shadow: 0 18px 38px rgba(35, 64, 92, .13);
}
.plan-nav-card.is-active .plan-nav-label {
  background: #1268f3;
}
.plan-nav-card--one {
  --plan-accent: #1268f3;
}
.plan-nav-card--two {
  --plan-accent: #17a76e;
}
.plan-nav-card--three {
  --plan-accent: #8756de;
}
.plan-nav-number {
  display: none;
        align-items: center;
        color: var(--plan-accent);
        font-size: 34px;
        line-height: 1;
        font-weight: 900;
        letter-spacing: 0;
}
.plan-nav-label {
  grid-area: label;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 64px;
        height: 30px;
        padding: 0 12px;
        border-radius: 5px;
        color: #fff;
        background: var(--plan-accent);
        font-size: 13px;
        line-height: 1;
        font-weight: 900;
        letter-spacing: 0;
        white-space: nowrap;
}
.plan-nav-copy {
  grid-area: copy;
        display: grid;
        gap: 8px;
        min-width: 0;
}
.plan-nav-title {
  display: block;
        color: #111923;
        font-size: 22px;
        line-height: 1.08;
        font-weight: 900;
        letter-spacing: 0;
        overflow-wrap: anywhere;
}
.plan-nav-desc {
  display: block;
        max-width: 460px;
        color: #344252;
        font-size: 14px;
        line-height: 1.36;
        font-weight: 500;
        letter-spacing: 0;
}
.marketing-footer {
  margin-top: 56px;
        color: #f7fbff;
        background:
          radial-gradient(circle at 13% 0%, rgba(18, 104, 243, .18) 0 180px, transparent 182px),
          linear-gradient(135deg, #061120 0%, #07182c 56%, #04101c 100%);
}
.footer-inner {
  padding: 34px 0 28px;
}
.footer-cta {
  display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 24px;
        align-items: center;
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.footer-kicker {
  margin: 0 0 8px;
        color: #55b8ff;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .08em;
}
.footer-title {
  margin: 0;
        font-size: 30px;
        line-height: 1.15;
        font-weight: 900;
        letter-spacing: -.02em;
}
.footer-text {
  max-width: 760px;
        margin: 10px 0 0;
        color: #b7c4d5;
        font-size: 15px;
        line-height: 1.6;
        font-weight: 600;
}
.footer-actions {
  display: flex;
        gap: 12px;
        align-items: center;
        justify-content: flex-end;
}
.footer-button {
  min-height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0 16px;
        border-radius: 8px;
        color: #f7fbff;
        text-decoration: none;
        font-weight: 900;
        white-space: nowrap;
}
.footer-button.whatsapp {
  background: #20b26b;
}
.footer-button.primary {
  background: #1268f3;
        box-shadow: 0 18px 32px rgba(18, 104, 243, .25);
}
.footer-button.outline {
  border: 1px solid rgba(255, 255, 255, .24);
        background: rgba(255, 255, 255, .04);
}
.footer-promises {
  display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
        padding: 24px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.promise-item {
  display: flex;
        gap: 12px;
        align-items: flex-start;
}
.promise-icon {
  width: 36px;
        height: 36px;
        display: inline-grid;
        place-items: center;
        color: #55b8ff;
        border-radius: 8px;
        background: rgba(85, 184, 255, .1);
        flex: 0 0 auto;
}
.promise-title {
  display: block;
        color: #f7fbff;
        font-size: 15px;
        font-weight: 900;
}
.promise-text {
  display: block;
        margin-top: 4px;
        color: #b7c4d5;
        font-size: 12px;
        line-height: 1.35;
        font-weight: 600;
}
.footer-seo {
  max-width: 1120px;
        margin: 20px 0 0;
        color: #b7c4d5;
        font-size: 13px;
        line-height: 1.65;
        font-weight: 600;
}
@media (max-width: 1120px) {
  .shell, .footer-inner {
    width: min(940px, calc(100vw - 32px));
  }
  .footer-cta {
    grid-template-columns: 1fr;
  }
  .footer-actions {
    justify-content: flex-start;
            flex-wrap: wrap;
  }
}
@media (max-width: 768.98px) {
  .page {
    padding-top: 0;
            padding-bottom: 0;
  }
  .shell, .footer-inner {
    width: min(100% - 28px, 480px);
  }
  .marketing-footer {
    margin-top: 34px;
            position: static;
            box-shadow: none;
  }
  .footer-inner {
    width: 100%;
            padding: 8px 14px;
  }
  .footer-cta {
    display: block;
            padding-bottom: 0;
            border-bottom: 0;
  }
  .footer-cta > div:first-child {
    display: none;
  }
  .footer-actions {
    display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 7px;
  }
  .footer-button {
    min-height: 42px;
            padding: 0 6px;
            border-radius: 7px;
            font-size: 11px;
  }
  .footer-button svg {
    width: 17px;
            height: 17px;
  }
  .footer-button.primary {
    grid-column: auto;
            order: 0;
  }
  .footer-promises, .footer-seo {
    display: none;
  }
}
@media (max-width: 768.98px) {
  .plan-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
            margin: 12px 0 10px;
  }
  .plan-nav-card {
    grid-template-columns: 1fr;
            grid-template-areas:
              "label"
              "copy";
            align-content: start;
            justify-items: start;
            min-height: 128px;
            gap: 8px;
            padding: 12px 10px;
            border-radius: 16px;
  }
  .plan-nav-label {
    min-width: 0;
            height: 24px;
            padding: 0 8px;
            font-size: 12px;
  }
  .plan-nav-copy {
    gap: 0;
  }
  .plan-nav-title {
    font-size: 14px;
            line-height: 1.18;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 4;
            overflow: hidden;
  }
  .plan-nav-desc {
    display: none;
  }
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
            overflow-x: hidden;
            padding: 8px 0 14px;
            margin-bottom: 12px;
  }
  .step {
    min-width: 0;
            padding: 0 4px;
  }
  .step-label {
    font-size: 12px;
            line-height: 1.15;
  }
}
.plan-nav .plan-nav-card.is-active {
  border-color: transparent !important;
        background: linear-gradient(180deg, rgba(255, 255, 255, .99), #e8f2ff) !important;
        box-shadow: 0 18px 38px rgba(35, 64, 92, .13) !important;
}
.plan-nav .plan-nav-card.is-active .plan-nav-label {
  color: #fff !important;
        background: #1268f3 !important;
}

/* Page 2 hero reference ratio map:
   title x 9.5%, y 12%; pixel wall x 9.5%, y 33%;
   distance card x 80%, y 29.5%; budget card x 49%, y 68.5%.
   The distance card intentionally overlaps the budget card background. */
body[data-page="page2"] {
  --page2-max: 1680px;
  --page2-pad: clamp(24px, 4vw, 72px);
  --page2-topbar-h: clamp(54px, 8.7vw, 152px);
  --page2-topbar-x: clamp(18px, 5.4vw, 92px);
  --page2-logo: clamp(22px, 3.45vw, 48px);
  --page2-logo-sub: clamp(8px, 1.12vw, 15px);
  --page2-nav-gap: clamp(22px, 3.4vw, 50px);
  --page2-icon-box: clamp(34px, 3.7vw, 54px);
  --page2-menu-line: clamp(25px, 3.1vw, 44px);
  --page2-menu-stroke: clamp(3px, .36vw, 5px);
  --page2-blue: #2f86ff;
  --page2-white: #f7fbff;
  --page2-card: rgba(5, 18, 38, .82);
  --page2-card-line: rgba(69, 139, 255, .56);
}

.page2-hero-shell {
  width: 100%;
  margin-inline: 0;
  padding-block: 0 clamp(30px, 4vw, 64px);
}

.page2-hero-container {
  width: 100%;
  margin-inline: auto;
}

.page2-hero {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 0;
  color: var(--page2-white);
  font-family: "Microsoft YaHei", "Microsoft YaHei UI", "Segoe UI", Arial, sans-serif;
  background: #020d1c;
  isolation: isolate;
}

.page2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("page2.webp");
  background-image: image-set(
    url("page2.avif") type("image/avif"),
    url("page2.webp") type("image/webp"),
    url("page2.png") type("image/png")
  );
  background-size: cover;
  background-position: center;
}

.page2-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, .58) 0%, rgba(2, 8, 18, .28) 42%, rgba(2, 8, 18, .38) 100%),
    linear-gradient(180deg, rgba(2, 8, 18, .22) 0%, rgba(2, 8, 18, .05) 45%, rgba(2, 8, 18, .48) 100%);
  pointer-events: none;
}

.hero-topbar {
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  height: var(--page2-topbar-h);
  padding-inline: var(--page2-topbar-x);
  background: rgba(1, 13, 28, .94);
}

.hero-brand {
  display: grid;
  gap: clamp(2px, .25vw, 4px);
  min-width: 0;
  color: var(--page2-white);
  text-decoration: none;
}

.hero-brand-main {
  display: block;
  font-size: var(--page2-logo);
  font-weight: 900;
  line-height: .88;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-brand-main span {
  color: var(--page2-blue);
}

.hero-brand-sub {
  display: block;
  font-size: var(--page2-logo-sub);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--page2-nav-gap);
  min-width: 0;
}

.hero-phone,
.hero-menu-button {
  width: var(--page2-icon-box);
  height: var(--page2-icon-box);
  border: 0;
  color: var(--page2-white);
  background: transparent;
}

.hero-phone {
  display: grid;
  place-items: center;
  text-decoration: none;
}

.hero-phone svg {
  width: 72%;
  height: 72%;
  fill: currentColor;
}

.hero-menu {
  position: relative;
}

.hero-menu-button {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(5px, .48vw, 7px);
  padding: 0;
}

.hero-menu-button span {
  display: block;
  width: var(--page2-menu-line);
  height: var(--page2-menu-stroke);
  border-radius: 999px;
  background: currentColor;
}

.hero-menu-panel {
  position: absolute;
  inset-block-start: calc(100% + clamp(8px, 1vw, 16px));
  inset-inline-end: 0;
  z-index: 30;
  display: grid;
  min-width: clamp(190px, 18vw, 280px);
  padding: clamp(8px, 1vw, 14px);
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(2, 15, 34, .96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
}

.hero-menu-panel a {
  display: block;
  padding: clamp(9px, .9vw, 13px) clamp(10px, 1vw, 16px);
  color: var(--page2-white);
  font-size: clamp(13px, .95vw, 16px);
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.hero-menu-panel a[aria-current="page"],
.hero-menu-panel a:hover,
.hero-menu-panel a:focus-visible {
  color: var(--page2-blue);
  background: rgba(47, 134, 255, .12);
  outline: none;
}

.hero-menu.is-open .hero-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.page2-title-area {
  position: absolute;
  inset-inline-start: var(--page2-topbar-x);
  inset-block-start: 12%;
  z-index: 2;
  width: min(68%, 980px);
  min-width: 0;
}

.page2-title {
  margin: 0;
  color: var(--page2-white);
  font-size: clamp(26px, 2.65vw, 44px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.page2-title span {
  color: var(--page2-blue);
}

.page2-copy {
  margin: clamp(8px, .85vw, 14px) 0 0;
  color: rgba(247, 251, 255, .92);
  font-size: clamp(12px, 1.12vw, 18px);
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
}

.page2-subtitle {
  margin: clamp(10px, 1.2vw, 18px) 0 0;
  color: var(--page2-white);
  font-size: clamp(16px, 1.5vw, 25px);
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

.page2-input-label {
  position: absolute;
  inset-inline-start: 17.5%;
  inset-block-start: 70.5%;
  z-index: 2;
  color: var(--page2-white);
  font-size: clamp(13px, 1.35vw, 22px);
  line-height: 1;
  font-weight: 900;
  text-align: center;
}

.page2-pitch-tags {
  position: absolute;
  inset-inline-start: 12.1%;
  inset-block-start: 35.8%;
  z-index: 3;
  width: 32.9%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  pointer-events: none;
}

.page2-pitch-tags span {
  display: block;
  color: var(--page2-white);
  font-size: clamp(12px, 1.08vw, 18px);
  line-height: 1;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .66);
}

.page2-mid-metrics {
  position: absolute;
  inset-inline-start: 48.6%;
  inset-block-start: 38.6%;
  z-index: 2;
  width: 27.5%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  grid-template-rows: repeat(3, auto);
  gap: clamp(10px, 1.3vw, 20px) clamp(18px, 2.1vw, 34px);
  align-items: start;
}

.page2-mini-metric {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(7px, .9vw, 13px);
  min-width: 0;
  color: var(--page2-white);
}

.page2-mini-metric svg {
  width: clamp(24px, 2.6vw, 42px);
  height: clamp(24px, 2.6vw, 42px);
  fill: none;
  stroke: var(--page2-blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page2-mini-metric strong {
  display: block;
  font-size: clamp(11px, 1.1vw, 17px);
  line-height: 1.05;
  font-weight: 900;
  white-space: nowrap;
}

.page2-mini-metric span {
  display: block;
  margin-block-start: 2px;
  color: rgba(247, 251, 255, .82);
  font-size: clamp(8px, .82vw, 13px);
  line-height: 1.12;
  white-space: nowrap;
}

.page2-mini-metric:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.page2-mini-metric:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.page2-mini-metric:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.page2-mini-metric:nth-child(4) {
  grid-column: 1;
  grid-row: 3;
}

.page2-distance-card {
  position: absolute;
  inset-inline-end: 3%;
  inset-block-start: 29.5%;
  z-index: 5;
  width: clamp(190px, 17.2vw, 290px);
  min-height: clamp(184px, 20.6vw, 340px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(12px, 1.25vw, 20px);
  border: 1px solid var(--page2-card-line);
  border-radius: 8px;
  color: var(--page2-white);
  background: linear-gradient(180deg, rgba(9, 29, 58, .92), rgba(4, 17, 36, .88));
  box-shadow: 0 0 0 1px rgba(47, 134, 255, .12), 0 18px 40px rgba(0, 0, 0, .34), 0 18px 22px rgba(47, 134, 255, .16);
}

.page2-card-label {
  display: block;
  color: var(--page2-white);
  font-size: clamp(9px, .82vw, 14px);
  line-height: 1.1;
  font-weight: 600;
}

.page2-distance-value {
  display: flex;
  align-items: center;
  gap: clamp(7px, .68vw, 12px);
  margin-block-start: clamp(6px, .62vw, 10px);
  font-size: clamp(16px, 1.55vw, 25px);
  line-height: 1;
  font-weight: 700;
}

.page2-distance-value svg {
  width: clamp(16px, 1.2vw, 22px);
  height: clamp(16px, 1.2vw, 22px);
  fill: currentColor;
}

.page2-slider {
  position: relative;
  height: clamp(22px, 2vw, 34px);
  margin-block: clamp(7px, .7vw, 12px) clamp(8px, .8vw, 14px);
}

.page2-slider::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-start: 42%;
  height: 2px;
  background: linear-gradient(90deg, var(--page2-blue) 0 48%, rgba(247, 251, 255, .24) 48% 100%);
}

.page2-ticks {
  position: absolute;
  inset-inline: 0;
  inset-block-start: 34%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.page2-ticks i {
  justify-self: center;
  width: 1px;
  height: clamp(8px, .7vw, 12px);
  background: rgba(247, 251, 255, .42);
}

.page2-tick-labels {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  color: rgba(247, 251, 255, .72);
  font-size: clamp(8px, .72vw, 11px);
  line-height: 1;
  text-align: center;
}

.page2-recommend {
  padding-block: clamp(7px, .74vw, 12px);
  border-block: 1px solid rgba(247, 251, 255, .14);
}

.page2-pitch {
  margin-block-start: clamp(4px, .46vw, 8px);
  color: var(--page2-blue);
  font-size: clamp(24px, 2.65vw, 40px);
  line-height: 1;
  font-weight: 900;
}

.page2-resolution {
  margin-block-start: clamp(8px, .82vw, 14px);
}

.page2-resolution strong {
  display: block;
  margin-block-start: clamp(4px, .45vw, 8px);
  color: var(--page2-white);
  font-size: clamp(13px, 1.22vw, 20px);
  line-height: 1.1;
  font-weight: 700;
}

.page2-budget-card {
  position: absolute;
  inset-inline-start: 47%;
  inset-block-start: 64.5%;
  z-index: 4;
  width: 48%;
  min-width: 0;
  min-height: 0;
  padding: clamp(13px, 1.35vw, 22px) clamp(34px, 4.8vw, 78px) clamp(12px, 1.25vw, 20px) clamp(18px, 1.7vw, 28px);
  border: 1px solid rgba(247, 251, 255, .26);
  border-radius: 8px;
  color: var(--page2-white);
  font: inherit;
  text-align: left;
  background: rgba(5, 18, 38, .80);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 18px 36px rgba(0, 0, 0, .25);
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.page2-budget-card:hover,
.page2-budget-card:focus-visible {
  border-color: rgba(47, 134, 255, .92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 0 0 2px rgba(47, 134, 255, .22), 0 22px 42px rgba(0, 0, 0, .28);
  outline: none;
  transform: translateY(-1px);
}

.page2-budget-title {
  margin: 0 0 clamp(9px, .8vw, 14px);
  color: var(--page2-white);
  font-size: clamp(16px, 1.55vw, 25px);
  line-height: 1.05;
  font-weight: 900;
}

.page2-budget-grid {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: clamp(7px, .62vw, 11px) clamp(24px, 3.2vw, 52px);
  align-items: start;
  justify-content: start;
  min-width: 0;
}

.page2-budget-item {
  min-width: 0;
  color: rgba(247, 251, 255, .92);
  font-size: clamp(9px, .82vw, 14px);
  line-height: 1.15;
  white-space: nowrap;
}

.page2-budget-total {
  grid-column: 2;
  padding-block-start: clamp(7px, .62vw, 11px);
  border-block-start: 1px solid rgba(247, 251, 255, .18);
  font-weight: 900;
}

.page2-bottom-stats {
  position: absolute;
  inset-inline: 25.8%;
  inset-block-end: 3.6%;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  min-width: 0;
  color: var(--page2-white);
}

.page2-bottom-stat {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.1vw, 18px);
  min-width: 0;
}

.page2-bottom-stat svg {
  width: clamp(26px, 3vw, 48px);
  height: clamp(26px, 3vw, 48px);
  fill: none;
  stroke: var(--page2-blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page2-bottom-stat strong {
  display: block;
  font-size: clamp(13px, 1.35vw, 22px);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.page2-bottom-stat span {
  display: block;
  margin-block-start: 3px;
  color: rgba(247, 251, 255, .78);
  font-size: clamp(9px, .9vw, 14px);
  line-height: 1;
  white-space: nowrap;
}

.hero-brand:focus-visible,
.hero-phone:focus-visible,
.hero-menu-button:focus-visible {
  outline: 2px solid var(--page2-blue);
  outline-offset: 4px;
}

@media (max-width: 1440px) {
  body[data-page="page2"] {
    --page2-pad: clamp(24px, 3.5vw, 56px);
    --page2-topbar-h: clamp(54px, 8.7vw, 152px);
    --page2-topbar-x: clamp(18px, 5.2vw, 78px);
  }

  .page2-title {
    font-size: clamp(25px, 2.55vw, 36px);
  }

  .page2-subtitle {
    font-size: clamp(16px, 1.45vw, 21px);
  }

  .page2-copy {
    font-size: clamp(12px, 1.08vw, 16px);
  }

  .page2-distance-card {
    width: clamp(174px, 16.5vw, 238px);
    min-height: clamp(178px, 20.2vw, 292px);
    padding: clamp(10px, 1vw, 15px);
  }

  .page2-slider {
    height: clamp(20px, 1.8vw, 26px);
    margin-block: clamp(5px, .55vw, 8px);
  }

  .page2-recommend {
    padding-block: clamp(6px, .62vw, 9px);
  }

  .page2-pitch {
    font-size: clamp(22px, 2.45vw, 34px);
  }

  .page2-resolution {
    margin-block-start: clamp(6px, .62vw, 9px);
  }

  .page2-budget-card {
    padding-inline: clamp(16px, 1.55vw, 22px) clamp(26px, 3.5vw, 48px);
  }

  .page2-budget-grid {
    gap: clamp(6px, .55vw, 9px) clamp(18px, 2.6vw, 36px);
  }

  .page2-budget-item {
    font-size: clamp(9px, .78vw, 12px);
  }
}

@media (max-width: 768.98px) {
  body[data-page="page2"] {
    --page2-pad: clamp(16px, 5vw, 24px);
    --page2-topbar-h: clamp(50px, 13vw, 60px);
    --page2-topbar-x: clamp(10px, 4vw, 18px);
    --page2-logo: clamp(20px, 6.2vw, 26px);
    --page2-logo-sub: clamp(7px, 2.2vw, 9px);
    --page2-nav-gap: clamp(12px, 4vw, 20px);
    --page2-icon-box: clamp(30px, 8vw, 38px);
    --page2-menu-line: clamp(24px, 7vw, 32px);
    --page2-menu-stroke: 3px;
  }

  .page2-hero-shell {
    padding-block-end: clamp(18px, 6vw, 30px);
  }

  .page2-hero {
    aspect-ratio: 1 / 1;
  }

  .page2-hero::before {
    background-position: 34% center;
  }

  .hero-menu-panel {
    min-width: clamp(168px, 46vw, 196px);
    padding: 6px;
  }

  .hero-menu-panel a {
    padding: 8px 10px;
    font-size: clamp(12px, 3.2vw, 13px);
  }

  .page2-title-area {
    inset-inline-start: var(--page2-topbar-x);
    inset-block-start: calc(var(--page2-topbar-h) + clamp(8px, 2.8vw, 16px));
    width: calc(100% - (var(--page2-topbar-x) * 2));
  }

  .page2-title {
    font-size: clamp(22px, 6.1vw, 30px);
    line-height: 1.04;
    white-space: normal;
  }

  .page2-subtitle {
    margin-block-start: clamp(6px, 1.8vw, 9px);
    font-size: clamp(13px, 3.6vw, 16px);
    white-space: normal;
  }

  .page2-copy {
    margin-block-start: clamp(5px, 1.5vw, 7px);
    font-size: clamp(10px, 2.8vw, 12px);
    white-space: normal;
  }

  .page2-input-label {
    inset-inline-start: clamp(24px, 7vw, 34px);
    inset-block-start: 71.5%;
    font-size: clamp(10px, 3vw, 13px);
  }

  .page2-pitch-tags {
    inset-inline-start: 7.4%;
    inset-block-start: 43.6%;
    width: 42%;
  }

  .page2-pitch-tags span {
    font-size: clamp(8px, 2.4vw, 12px);
  }

  .page2-mid-metrics,
  .page2-budget-card {
    display: none;
  }

  .page2-distance-card {
    inset-inline-end: clamp(14px, 4vw, 22px);
    inset-block-start: 38.5%;
    width: clamp(146px, 40vw, 174px);
    min-height: 0;
    gap: clamp(5px, 1.6vw, 7px);
    padding: clamp(9px, 2.8vw, 12px);
  }

  .page2-card-label {
    font-size: clamp(8px, 2.5vw, 10px);
  }

  .page2-distance-value {
    gap: clamp(5px, 1.8vw, 8px);
    margin-block-start: clamp(4px, 1.3vw, 6px);
    font-size: clamp(14px, 4vw, 17px);
  }

  .page2-distance-value svg {
    width: clamp(13px, 3.6vw, 16px);
    height: clamp(13px, 3.6vw, 16px);
  }

  .page2-slider {
    display: none;
  }

  .page2-recommend {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: clamp(5px, 1.6vw, 8px);
    padding-block: clamp(6px, 1.9vw, 8px);
    margin-block-start: clamp(7px, 2vw, 9px);
  }

  .page2-pitch {
    margin-block-start: 0;
    font-size: clamp(20px, 5.8vw, 25px);
  }

  .page2-resolution {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: clamp(5px, 1.6vw, 8px);
    margin-block-start: clamp(6px, 1.9vw, 8px);
  }

  .page2-resolution strong {
    margin-block-start: 0;
    font-size: clamp(11px, 3.1vw, 14px);
    white-space: nowrap;
  }

  .page2-bottom-stats {
    inset-inline: clamp(16px, 5vw, 24px);
    inset-block-end: clamp(10px, 3vw, 16px);
  }

  .page2-bottom-stat {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3px;
    text-align: center;
  }

  .page2-bottom-stat svg {
    width: clamp(21px, 6vw, 28px);
    height: clamp(21px, 6vw, 28px);
  }

  .page2-bottom-stat strong {
    font-size: clamp(10px, 3vw, 13px);
  }

  .page2-bottom-stat span {
    font-size: clamp(8px, 2.3vw, 10px);
  }
}

/* Final Page 2 hero header lock: match Page 1 exactly. */
body[data-page="page2"] {
  --page2-topbar-h: clamp(54px, 8.7vw, 152px);
  --page2-topbar-x: clamp(18px, 5.4vw, 92px);
  --page2-logo: clamp(22px, 3.45vw, 48px);
  --page2-logo-sub: clamp(8px, 1.12vw, 15px);
  --page2-nav-gap: clamp(22px, 3.4vw, 50px);
  --page2-icon-box: clamp(34px, 3.7vw, 54px);
  --page2-menu-line: clamp(25px, 3.1vw, 44px);
  --page2-menu-stroke: clamp(3px, .36vw, 5px);
}

.page2-hero {
  font-family: "Microsoft YaHei", "Microsoft YaHei UI", "Segoe UI", Arial, sans-serif !important;
}

.page2-hero .hero-topbar {
  height: var(--page2-topbar-h) !important;
  padding-inline: var(--page2-topbar-x) !important;
  background: rgba(1, 13, 28, .94) !important;
}

.page2-hero .hero-brand-main {
  font-size: var(--page2-logo) !important;
}

.page2-hero .hero-brand-sub {
  font-size: var(--page2-logo-sub) !important;
}

.page2-hero .hero-nav-actions {
  gap: var(--page2-nav-gap) !important;
}

.page2-hero .hero-phone,
.page2-hero .hero-menu-button {
  width: var(--page2-icon-box) !important;
  height: var(--page2-icon-box) !important;
}

.page2-hero .hero-menu-button span {
  width: var(--page2-menu-line) !important;
  height: var(--page2-menu-stroke) !important;
}

.page2-hero .page2-title-area {
  inset-block-start: calc(var(--page2-topbar-h) + clamp(8px, 1.2vw, 18px)) !important;
}

@media (max-width: 1440px) {
  body[data-page="page2"] {
    --page2-topbar-h: clamp(54px, 8.7vw, 152px);
    --page2-topbar-x: clamp(18px, 5.2vw, 78px);
  }
}

@media (max-width: 768.98px) {
  body[data-page="page2"] {
    --page2-topbar-h: clamp(50px, 13vw, 60px);
    --page2-topbar-x: clamp(10px, 4vw, 18px);
    --page2-logo: clamp(20px, 6.2vw, 26px);
    --page2-logo-sub: clamp(7px, 2.2vw, 9px);
    --page2-nav-gap: clamp(12px, 4vw, 20px);
    --page2-icon-box: clamp(30px, 8vw, 38px);
    --page2-menu-line: clamp(24px, 7vw, 32px);
    --page2-menu-stroke: 3px;
  }
}

/* Final Page 2 mobile hero lock: keep the right card and budget card inside the 1:1 hero. */
@media (max-width: 768.98px) {
  .page2-hero {
    aspect-ratio: 1 / 1;
  }

  .page2-title-area {
    inset-inline-start: var(--page2-topbar-x);
    inset-block-start: calc(var(--page2-topbar-h) + clamp(6px, 2.1vw, 14px)) !important;
    width: calc(100% - (var(--page2-topbar-x) * 2));
  }

  .page2-title {
    font-size: clamp(20px, 5.6vw, 30px);
    line-height: 1.03;
    white-space: normal;
  }

  .page2-copy {
    margin-block-start: clamp(4px, 1.25vw, 7px);
    font-size: clamp(9px, 2.35vw, 12px);
    line-height: 1.15;
    white-space: normal;
  }

  .page2-subtitle {
    margin-block-start: clamp(5px, 1.5vw, 9px);
    font-size: clamp(12px, 3.1vw, 16px);
    line-height: 1.05;
    white-space: nowrap;
  }

  .page2-mid-metrics {
    display: none;
  }

  .page2-distance-card {
    inset-inline-end: clamp(12px, 3.7vw, 22px);
    inset-block-start: 34.5%;
    width: clamp(158px, 35vw, 210px);
    min-height: 0;
    max-height: 38%;
    gap: clamp(4px, 1.15vw, 7px);
    padding: clamp(8px, 2vw, 12px);
    overflow: hidden;
  }

  .page2-card-label {
    font-size: clamp(7px, 2vw, 10px);
    line-height: 1;
    white-space: nowrap;
  }

  .page2-distance-value {
    gap: clamp(4px, 1.3vw, 8px);
    margin-block-start: clamp(3px, .95vw, 5px);
    font-size: clamp(12px, 3.35vw, 18px);
  }

  .page2-distance-value svg {
    width: clamp(12px, 3.2vw, 16px);
    height: clamp(12px, 3.2vw, 16px);
  }

  .page2-slider {
    display: block;
    height: clamp(15px, 4.3vw, 24px);
    margin-block: clamp(3px, 1vw, 6px);
  }

  .page2-ticks i {
    height: clamp(5px, 1.8vw, 9px);
  }

  .page2-tick-labels {
    font-size: clamp(5px, 1.6vw, 8px);
  }

  .page2-recommend {
    display: block;
    padding-block: clamp(5px, 1.3vw, 8px);
    margin-block-start: 0;
  }

  .page2-pitch {
    margin-block-start: clamp(2px, .75vw, 4px);
    font-size: clamp(19px, 5.2vw, 27px);
  }

  .page2-resolution {
    display: block;
    min-width: 0;
    margin-block-start: clamp(4px, 1.2vw, 7px);
  }

  .page2-resolution strong {
    display: block;
    max-width: 100%;
    margin-block-start: clamp(2px, .75vw, 4px);
    overflow: hidden;
    font-size: clamp(8px, 2.35vw, 12px);
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .page2-input-label {
    inset-inline-start: clamp(18px, 5.6vw, 34px);
    inset-block-start: 60%;
    font-size: clamp(9px, 2.5vw, 13px);
  }

  .page2-pitch-tags {
    inset-inline-start: 7.5%;
    inset-block-start: 43.2%;
    width: 42%;
  }

  .page2-budget-card {
    display: block;
    inset-inline-start: clamp(16px, 4.2vw, 24px);
    inset-block-start: 67.5%;
    width: calc(100% - clamp(32px, 8.4vw, 48px));
    max-height: 15.5%;
    padding: clamp(6px, 1.55vw, 10px) clamp(8px, 2.5vw, 14px);
    overflow: hidden;
  }

  .page2-budget-title {
    margin-block-end: clamp(3px, .9vw, 6px);
    font-size: clamp(10px, 2.7vw, 14px);
    line-height: 1;
  }

  .page2-budget-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2px, .75vw, 5px) clamp(6px, 1.9vw, 10px);
    width: 100%;
  }

  .page2-budget-item {
    overflow: hidden;
    font-size: clamp(6px, 1.75vw, 9px);
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .page2-budget-total {
    grid-column: 2;
    padding-block-start: clamp(2px, .65vw, 4px);
  }

  .page2-bottom-stats {
    inset-inline: clamp(14px, 4vw, 24px);
    inset-block-end: clamp(8px, 2.4vw, 14px);
  }
}

@media (max-width: 430px) {
  body[data-page="page2"] {
    --page2-topbar-h: clamp(46px, 12.3vw, 54px);
    --page2-topbar-x: clamp(10px, 3.7vw, 16px);
    --page2-logo: clamp(18px, 5.8vw, 24px);
    --page2-logo-sub: clamp(6px, 1.9vw, 8px);
    --page2-nav-gap: clamp(8px, 3vw, 14px);
    --page2-icon-box: clamp(28px, 7.2vw, 34px);
    --page2-menu-line: clamp(21px, 6vw, 26px);
  }

  .page2-title {
    font-size: clamp(17px, 5.35vw, 23px);
  }

  .page2-copy {
    max-width: 62%;
    font-size: clamp(7px, 2.05vw, 9px);
  }

  .page2-subtitle {
    max-width: 62%;
    overflow: visible;
    font-size: clamp(9px, 2.75vw, 12px);
    white-space: normal;
  }

  .page2-distance-card {
    inset-inline-end: clamp(10px, 3.5vw, 16px);
    inset-block-start: 35.5%;
    width: clamp(136px, 40vw, 164px);
    max-height: 34%;
    gap: clamp(2px, .85vw, 4px);
    padding: clamp(6px, 1.7vw, 8px);
    border-radius: 6px;
  }

  .page2-slider {
    height: clamp(12px, 3.7vw, 17px);
    margin-block: clamp(2px, .8vw, 4px);
  }

  .page2-recommend {
    padding-block: clamp(4px, 1vw, 6px);
  }

  .page2-pitch {
    font-size: clamp(17px, 5vw, 22px);
  }

  .page2-resolution strong {
    font-size: clamp(7px, 2.1vw, 9px);
  }

  .page2-input-label {
    inset-block-start: 61.5%;
    font-size: clamp(8px, 2.3vw, 10px);
  }

  .page2-pitch-tags {
    inset-block-start: 43.8%;
  }

  .page2-pitch-tags span {
    font-size: clamp(7px, 2.1vw, 10px);
  }

  .page2-budget-card {
    inset-block-start: 70.5%;
    max-height: 13.5%;
    padding: clamp(5px, 1.35vw, 7px) clamp(6px, 1.9vw, 10px);
    border-radius: 6px;
  }

  .page2-budget-title {
    font-size: clamp(8px, 2.45vw, 10px);
  }

  .page2-budget-grid {
    gap: clamp(1px, .45vw, 3px) clamp(5px, 1.5vw, 8px);
  }

  .page2-budget-item {
    font-size: clamp(5px, 1.55vw, 7px);
  }

  .page2-bottom-stat svg {
    width: clamp(16px, 5vw, 21px);
    height: clamp(16px, 5vw, 21px);
  }

  .page2-bottom-stat strong {
    font-size: clamp(7px, 2.4vw, 10px);
  }

  .page2-bottom-stat span {
    font-size: clamp(5px, 1.8vw, 7px);
  }
}

@media (max-width: 360px) {
  .page2-title {
    font-size: clamp(14px, 4.7vw, 17px);
    line-height: 1.02;
  }

  .page2-copy,
  .page2-subtitle {
    max-width: 52%;
  }

  .page2-copy {
    font-size: clamp(6px, 1.9vw, 8px);
    line-height: 1.08;
  }

  .page2-subtitle {
    font-size: clamp(7px, 2.35vw, 9px);
    line-height: 1.05;
  }

  .page2-distance-card {
    inset-block-start: 36%;
    width: clamp(122px, 38vw, 138px);
    max-height: 32%;
    padding: clamp(5px, 1.45vw, 7px);
  }

  .page2-card-label {
    font-size: clamp(6px, 1.8vw, 8px);
  }

  .page2-distance-value {
    font-size: clamp(10px, 3.1vw, 13px);
  }

  .page2-slider {
    height: clamp(10px, 3.1vw, 13px);
  }

  .page2-pitch {
    font-size: clamp(14px, 4.4vw, 18px);
  }

  .page2-resolution strong {
    font-size: clamp(6px, 1.85vw, 8px);
  }

  .page2-budget-card {
    inset-block-start: 70.5%;
    max-height: 13%;
  }

  .footer-actions {
    min-width: 0;
  }

  .footer-button {
    min-width: 0;
    max-width: 100%;
    white-space: nowrap;
  }

  .footer-button.outline {
    flex: 1 1 0;
  }
}
