: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);
        --brand-night: #061120;
        --brand-navy: #071a2f;
        --brand-blue: #1268f3;
        --brand-blue-strong: #0b5ee8;
        --brand-cyan: #55b8ff;
        --brand-green: #20b26b;
        --brand-line-dark: rgba(255, 255, 255, .14);
        --brand-text-light: #f7fbff;
        --brand-text-muted: #b7c4d5;
}
* {
  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: "Microsoft YaHei", "Microsoft YaHei UI", "Segoe UI", Arial, sans-serif;
        letter-spacing: 0;
}
body {
  overflow-x: hidden;
}
button, input, select {
  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;
}
.footer-button:focus-visible {
  outline: 2px solid var(--brand-cyan);
        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: var(--brand-blue);
        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;
}
.layout {
  display: grid;
        grid-template-columns: 29% 1fr;
        gap: 3.4%;
        align-items: start;
        margin-top: 42px;
}
.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, .field select {
  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 select {
  appearance: none;
        background:
          linear-gradient(45deg, transparent 50%, #657384 50%) right 18px center / 6px 6px no-repeat,
          linear-gradient(135deg, #657384 50%, transparent 50%) right 12px center / 6px 6px no-repeat,
          #fff;
        padding-right: 42px;
}
.field input:focus, .field select: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 {
  display: block;
        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: 218px;
        padding: 22px 24px 20px;
        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 24px;
        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;
        padding: 0 24px 24px;
        position: relative;
}
.download-row::after {
  display: none;
}
.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;
}
.marketing-footer {
  margin-top: 56px;
        color: var(--brand-text-light);
        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 {
  width: min(1880px, calc(100vw - 96px));
        margin: 0 auto;
        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 var(--brand-line-dark);
}
.footer-kicker {
  margin: 0 0 8px;
        color: var(--brand-cyan);
        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: var(--brand-text-muted);
        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: var(--brand-text-light);
        text-decoration: none;
        font-weight: 900;
        white-space: nowrap;
}
.footer-button.whatsapp {
  background: var(--brand-green);
}
.footer-button.primary {
  background: var(--brand-blue);
        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 var(--brand-line-dark);
}
.promise-item {
  display: flex;
        gap: 12px;
        align-items: flex-start;
}
.promise-icon {
  width: 36px;
        height: 36px;
        display: inline-grid;
        place-items: center;
        color: var(--brand-cyan);
        border-radius: 8px;
        background: rgba(85, 184, 255, .1);
        flex: 0 0 auto;
}
.promise-title {
  display: block;
        color: var(--brand-text-light);
        font-size: 15px;
        font-weight: 900;
}
.promise-text {
  display: block;
        margin-top: 4px;
        color: var(--brand-text-muted);
        font-size: 12px;
        line-height: 1.35;
        font-weight: 600;
}
.footer-seo {
  max-width: 1120px;
        margin: 20px 0 0;
        color: var(--brand-text-muted);
        font-size: 13px;
        line-height: 1.65;
        font-weight: 600;
}
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-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;
}
.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-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, .footer-inner {
    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;
  }
  .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);
  }
    .layout {
      margin-top: 14px;
    }
  .control-panel {
    width: 100%;
            min-width: 0;
            padding: 0 14px 16px;
  }
  .environment {
    padding: 16px 0 18px;
  }
  .segmented {
    width: 100%;
            min-width: 0;
            gap: 6px;
  }
  .segment {
    width: 100%;
            min-width: 0;
            height: 44px;
            gap: 5px;
            padding: 0 6px;
            font-size: 13px;
            white-space: nowrap;
  }
  .segment .icon-sm {
    width: 16px;
            height: 16px;
            flex: 0 0 auto;
  }
  .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(0, 1fr));
            gap: 0;
            overflow-x: hidden;
            padding: 8px 0 14px;
            margin-bottom: 12px;
  }
  .step {
    min-width: 0;
            padding: 0 4px;
  }
  .step-body {
    gap: 8px;
  }
  .step-dot {
    width: 28px;
            height: 28px;
            box-shadow: 0 0 0 4px #fff;
            font-size: 12px;
  }
  .step-label {
    font-size: 12px;
            line-height: 1.15;
  }
  .metric-grid, .screen-cards {
    grid-template-columns: 1fr;
  }
  .metric-grid {
    display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 6px;
            padding: 12px 16px 10px;
  }
  .metric {
    min-height: 0;
            padding: 9px 10px 8px;
            border-radius: 12px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: center;
            column-gap: 8px;
            row-gap: 4px;
  }
  .metric-label {
    margin: 0;
            font-size: 11px;
            line-height: 1.25;
  }
  .pvalue {
    font-size: 26px;
  }
  .best {
    height: 22px;
            margin-top: 0;
            padding: 0 8px;
            font-size: 11px;
            justify-self: end;
  }
  .distance {
    gap: 6px;
            font-size: 22px;
  }
  .distance span {
    font-size: 21px;
  }
  .price {
    font-size: 20px;
  }
  .hint {
    margin-top: 0;
            font-size: 11px;
            line-height: 1.35;
  }
  .status-text {
    margin-top: 0;
            font-size: 14px;
            line-height: 1.22;
  }
  .suggestion {
    margin-top: 0;
            font-size: 11px;
            line-height: 1.35;
  }
  .metric:nth-child(1) .metric-label {
    grid-column: 1 / -1;
  }
  .metric:nth-child(1) .pvalue {
    grid-column: 1 / 2;
            grid-row: 2;
  }
  .metric:nth-child(1) .best {
    grid-column: 2 / 3;
            grid-row: 2;
  }
  .metric:nth-child(2) .metric-label {
    grid-column: 1 / -1;
  }
  .metric:nth-child(2) .distance {
    grid-column: 1 / -1;
            grid-row: 2;
  }
  .metric:nth-child(3) .metric-label, .metric:nth-child(4) .metric-label {
    grid-column: 1 / -1;
  }
  .metric:nth-child(3) .price, .metric:nth-child(4) .status-text {
    grid-column: 1 / -1;
            grid-row: 2;
  }
  .metric:nth-child(3) .hint, .metric:nth-child(4) .suggestion {
    display: none;
            grid-column: 1 / -1;
            grid-row: 3;
  }
  .solution-head, .compare-head {
    padding-inline: 16px;
  }
  .metric-grid, .screen-section, .plans, .cabinet-grid, .estimate-body {
    padding-inline: 16px;
  }
  .screen-section {
    padding-top: 8px;
            padding-bottom: 14px;
  }
  .ratio-block {
    margin-bottom: 12px;
  }
  .ratio-title {
    margin-bottom: 8px;
            font-size: 16px;
  }
  .screen-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 6px;
  }
  .screen-card {
    min-height: 0;
            grid-template-columns: 1fr;
            gap: 2px;
            padding: 7px 7px;
            border-radius: 10px;
  }
  .screen-icon {
    display: none;
  }
  .screen-icon svg {
    width: 13px;
            height: 13px;
  }
  .screen-label {
    font-size: 9px;
            line-height: 1.2;
  }
  .screen-value {
    margin-top: 2px;
            font-size: 11px;
            line-height: 1.15;
            white-space: normal;
  }
  .notice {
    min-height: 0;
            padding: 8px 10px;
            font-size: 12px;
            line-height: 1.35;
  }
  .notice svg {
    width: 16px;
            height: 16px;
            flex: 0 0 16px;
  }
  .notice svg + * {
    min-width: 0;
  }
  .notice, .status-text, .suggestion {
    word-break: break-word;
  }
  .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 10px;
  }
  .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;
  }
  .download-row {
    padding: 0 10px 10px;
  }
  .download {
    width: 100%;
            height: 42px;
            border-radius: 10px;
            color: #12304a;
            background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
  }
  .engineering-metrics, .engineering-bottom, .system-metrics, .system-card-grid, .mode-grid {
    grid-template-columns: 1fr;
  }
  .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 {
    display: none;
  }
  .footer-seo {
    display: none;
  }
}
.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="page1"] .layout {
  grid-template-columns: 340px minmax(0, 1fr);
          column-gap: 28px;
          row-gap: 0;
          margin-top: 0;
}
@media (max-width: 1320px) {
  body[data-page="page1"] .layout {
    grid-template-columns: 310px minmax(0, 1fr);
            column-gap: 24px;
            row-gap: 0;
            margin-top: 0;
  }
}
@media (max-width: 1120px) and (min-width: 761px) {
  body[data-page="page1"] .layout {
    grid-template-columns: minmax(286px, 32%) minmax(0, 1fr);
            column-gap: 18px;
            row-gap: 0;
            margin-top: 0;
  }
  body[data-page="page1"] .layout > .sidebar {
    position: sticky;
            top: 14px;
  }
}
@media (max-width: 768.98px) {
  body[data-page="page1"] .layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768.98px) {
  .shell {
    width: min(940px, calc(100vw - 32px));
  }

  .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;
            overflow-wrap: normal;
            word-break: normal;
            hyphens: none;
  }
  .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;
}
    @media (min-width: 1600px) {
      body[data-page="page1"] {
        --page1-shell-gutter: clamp(96px, 5.4vw, 144px);
      }
    }
    @media (min-width: 1440px) and (max-width: 1599.98px) {
      body[data-page="page1"] {
        --page1-shell-gutter: clamp(84px, 5vw, 120px);
      }
    }
    @media (min-width: 1280px) and (max-width: 1439.98px) {
      body[data-page="page1"] {
        --page1-shell-gutter: clamp(72px, 5vw, 108px);
      }
    }
    @media (min-width: 1024px) and (max-width: 1279.98px) {
      body[data-page="page1"] {
        --page1-shell-gutter: clamp(64px, 4.6vw, 96px);
      }
    }
    @media (min-width: 768px) and (max-width: 1023.98px) {
      body[data-page="page1"] {
        --page1-shell-gutter: 56px;
      }
    }

/* Page 1 hero reference ratio map:
   topbar 0-16.1%, left content x 5.5-51%, visual starts near x 55%,
   stats x 5.5-94.5% and y 79-94%. */
body[data-page="page1"] {
  --page-max: 1680px;
  --page-pad: clamp(24px, 4vw, 72px);
  --hero-topbar-h: clamp(54px, 8.7vw, 152px);
  --hero-topbar-x: clamp(18px, 5.4vw, 92px);
  --hero-logo: clamp(22px, 3.45vw, 48px);
  --hero-logo-sub: clamp(8px, 1.12vw, 15px);
  --hero-nav-gap: clamp(22px, 3.4vw, 50px);
  --hero-icon-box: clamp(34px, 3.7vw, 54px);
  --hero-menu-line: clamp(25px, 3.1vw, 44px);
  --hero-menu-stroke: clamp(3px, .36vw, 5px);
  --hero-blue: #2f86ff;
  --hero-white: #f7fbff;
}

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

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

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

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

.page1-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(1, 10, 23, .42) 0%, rgba(1, 10, 23, .20) 42%, rgba(1, 10, 23, .04) 72%),
    linear-gradient(180deg, rgba(1, 8, 18, .18) 0%, rgba(1, 8, 18, .04) 46%, rgba(1, 8, 18, .40) 100%);
  pointer-events: none;
}

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

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

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

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

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

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

.hero-phone,
.hero-menu-button {
  width: var(--hero-icon-box);
  height: var(--hero-icon-box);
  border: 0;
  color: var(--hero-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(--hero-menu-line);
  height: var(--hero-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;
  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(--hero-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(--hero-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;
}

.page1-hero-inner {
  position: absolute;
  inset-block-start: 16.1%;
  inset-block-end: 20.8%;
  inset-inline: 5.5%;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 51.5%) minmax(0, 48.5%);
  min-width: 0;
}

.page1-hero-left,
.page1-hero-right {
  min-width: 0;
}

.page1-hero-left {
  display: grid;
  align-content: start;
  padding-block-start: clamp(42px, 5.2vw, 76px);
  max-width: min(100%, 780px);
}

.page1-hero-title {
  margin: 0;
  color: var(--hero-white);
  font-size: clamp(36px, 4.15vw, 66px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.page1-hero-title-line {
  display: block;
  white-space: nowrap;
}

.page1-hero-title-accent {
  color: var(--hero-blue);
}

.page1-hero-copy {
  max-width: min(100%, 700px);
  margin: clamp(22px, 2.2vw, 34px) 0 0;
  color: rgba(247, 251, 255, .92);
  font-size: clamp(17px, 1.82vw, 29px);
  line-height: 1.42;
  font-weight: 500;
  letter-spacing: 0;
}

.page1-hero-form {
  display: grid;
  gap: clamp(8px, .95vw, 14px);
  margin-block-start: clamp(22px, 2.4vw, 38px);
  max-width: min(100%, 760px);
}

.page1-hero-label {
  color: var(--hero-white);
  font-size: clamp(17px, 1.45vw, 26px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.page1-hero-controls {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(7px, .9vw, 16px);
  min-width: 0;
}

.page1-hero-input-wrap {
  position: relative;
  flex: 0 1 clamp(150px, 16vw, 300px);
  min-width: 0;
}

.page1-hero-currency {
  position: absolute;
  inset-inline-start: clamp(13px, 1.1vw, 20px);
  inset-block: 0;
  display: grid;
  place-items: center;
  color: rgba(247, 251, 255, .72);
  font-size: clamp(26px, 2.1vw, 36px);
  line-height: 1;
  pointer-events: none;
}

.page1-hero-input {
  width: 100%;
  height: clamp(48px, 4.25vw, 68px);
  padding: 0 clamp(16px, 1.2vw, 22px) 0 clamp(52px, 4.2vw, 72px);
  border: 1px solid rgba(247, 251, 255, .78);
  border-radius: 8px;
  color: var(--hero-white);
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
  font-size: clamp(18px, 1.45vw, 26px);
  line-height: 1;
  outline: none;
}

.page1-hero-input:focus {
  border-color: var(--hero-blue);
  box-shadow: 0 0 0 3px rgba(47, 134, 255, .28);
}

.page1-hero-icon-button {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: clamp(36px, 3.8vw, 58px);
  height: clamp(36px, 3.8vw, 58px);
  border: 0;
  color: var(--hero-white);
  background: transparent;
}

.page1-hero-icon-button svg {
  width: 82%;
  height: 82%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page1-hero-cta {
  flex: 0 1 clamp(155px, 16vw, 300px);
  min-width: 0;
  min-height: clamp(44px, 4.4vw, 66px);
  padding: clamp(10px, .8vw, 14px) clamp(18px, 1.6vw, 28px);
  border: 1px solid rgba(85, 184, 255, .75);
  border-radius: 8px;
  color: var(--hero-white);
  background: linear-gradient(180deg, #3f98ff 0%, #1478ee 100%);
  box-shadow: 0 14px 28px rgba(18, 104, 243, .32);
  font-size: clamp(11px, .96vw, 18px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  overflow-wrap: anywhere;
}

.page1-hero-right {
  pointer-events: none;
}

.page1-hero-stats {
  position: absolute;
  inset-inline: 5.5%;
  inset-block-end: 5.7%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  min-width: 0;
  height: 15.35%;
  border: 1px solid rgba(247, 251, 255, .46);
  border-radius: 8px;
  background: rgba(2, 16, 35, .50);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.page1-hero-stat {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 36px);
  min-width: 0;
  height: 100%;
  padding-inline: clamp(18px, 3.1vw, 54px);
}

.page1-hero-stat + .page1-hero-stat::before {
  content: "";
  position: absolute;
  inset-block: 25%;
  inset-inline-start: 0;
  width: 1px;
  background: rgba(247, 251, 255, .36);
}

.page1-hero-stat svg {
  width: clamp(46px, 4.5vw, 78px);
  height: clamp(46px, 4.5vw, 78px);
  fill: none;
  stroke: var(--hero-blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page1-hero-stat strong {
  display: block;
  color: var(--hero-white);
  font-size: clamp(22px, 2.15vw, 34px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.page1-hero-stat span {
  display: block;
  margin-block-start: clamp(5px, .65vw, 10px);
  color: rgba(247, 251, 255, .80);
  font-size: clamp(16px, 1.72vw, 29px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

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

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

  .page1-hero-left {
    padding-block-start: clamp(34px, 4.6vw, 64px);
  }

  .page1-hero-title {
    font-size: clamp(36px, 4.15vw, 60px);
  }

  .page1-hero-copy {
    font-size: clamp(16px, 1.75vw, 25px);
  }

  .page1-hero-controls {
    gap: clamp(10px, 1.25vw, 18px);
  }

  .page1-hero-stat {
    padding-inline: clamp(16px, 2.55vw, 40px);
    gap: clamp(14px, 1.9vw, 28px);
  }
}

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

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

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

  .page1-hero::before {
    background-position: 60% center;
  }

  .page1-hero::after {
    background:
      linear-gradient(90deg, rgba(1, 10, 23, .72) 0%, rgba(1, 10, 23, .38) 63%, rgba(1, 10, 23, .12) 100%),
      linear-gradient(180deg, rgba(1, 8, 18, .14) 0%, rgba(1, 8, 18, .10) 58%, rgba(1, 8, 18, .62) 100%);
  }

  .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);
  }

  .page1-hero-inner {
    inset-block-start: var(--hero-topbar-h);
    inset-block-end: clamp(70px, 20vw, 88px);
    inset-inline: clamp(16px, 5vw, 24px);
    grid-template-columns: 1fr;
  }

  .page1-hero-left {
    padding-block-start: clamp(18px, 4.4vw, 30px);
    max-width: 100%;
  }

  .page1-hero-title {
    max-width: min(50%, 300px);
    font-size: clamp(22px, 5.8vw, 31px);
    line-height: 1.04;
  }

  .page1-hero-title-line {
    white-space: normal;
  }

  .page1-hero-copy {
    display: none;
  }

  .page1-hero-form {
    gap: clamp(6px, 1.8vw, 9px);
    margin-block-start: clamp(10px, 2.8vw, 15px);
    max-width: 100%;
  }

  .page1-hero-label {
    font-size: clamp(13px, 4vw, 16px);
  }

  .page1-hero-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: clamp(7px, 2vw, 10px);
  }

  .page1-hero-input-wrap {
    flex-basis: auto;
  }

  .page1-hero-input {
    height: clamp(38px, 11vw, 44px);
    padding-inline-start: clamp(36px, 10vw, 42px);
    font-size: clamp(15px, 4.4vw, 17px);
  }

  .page1-hero-currency {
    font-size: clamp(18px, 5.4vw, 22px);
  }

  .page1-hero-icon-button {
    width: clamp(38px, 11vw, 44px);
    height: clamp(38px, 11vw, 44px);
  }

  .page1-hero-cta {
    grid-column: 1 / -1;
    justify-self: start;
    width: clamp(220px, 64vw, 280px);
    min-height: clamp(40px, 11vw, 46px);
    padding: 8px clamp(14px, 3.5vw, 18px);
    font-size: clamp(9px, 2.55vw, 12px);
    white-space: nowrap;
  }

  .page1-hero-right {
    display: none;
  }

  .page1-hero-stats {
    inset-inline: clamp(12px, 4vw, 18px);
    inset-block-end: clamp(10px, 3.4vw, 16px);
    height: clamp(54px, 16vw, 70px);
  }

  .page1-hero-stat {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3px;
    padding-inline: clamp(6px, 2vw, 10px);
    text-align: center;
  }

  .page1-hero-stat svg {
    width: clamp(22px, 7vw, 28px);
    height: clamp(22px, 7vw, 28px);
  }

  .page1-hero-stat strong {
    font-size: clamp(12px, 3.5vw, 15px);
  }

  .page1-hero-stat span {
    margin-block-start: 0;
    font-size: clamp(9px, 2.6vw, 11px);
    white-space: normal;
  }
}

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

  .page1-hero::before {
    background-position: 64% center;
  }

  .page1-hero::after {
    background:
      linear-gradient(90deg, rgba(1, 10, 23, .88) 0%, rgba(1, 10, 23, .72) 43%, rgba(1, 10, 23, .22) 75%, rgba(1, 10, 23, .08) 100%),
      linear-gradient(180deg, rgba(1, 8, 18, .10) 0%, rgba(1, 8, 18, .14) 54%, rgba(1, 8, 18, .70) 100%);
  }

  .page1-hero-inner {
    inset-block-end: clamp(58px, 15vw, 66px);
    inset-inline: clamp(14px, 4vw, 18px);
  }

  .page1-hero-left {
    padding-block-start: clamp(21px, 5.8vw, 28px);
  }

  .page1-hero-title {
    max-width: min(46%, 200px);
    font-size: clamp(18px, 5.25vw, 23px);
    line-height: 1.04;
  }

  .page1-hero-form {
    gap: clamp(5px, 1.25vw, 7px);
    margin-block-start: clamp(14px, 4vw, 18px);
    max-width: clamp(252px, 72vw, 310px);
  }

  .page1-hero-label {
    font-size: clamp(10px, 2.8vw, 12px);
  }

  .page1-hero-controls {
    grid-template-columns: minmax(0, 1fr);
    justify-content: start;
    align-items: center;
    gap: clamp(5px, 1.25vw, 7px);
    position: relative;
    width: clamp(252px, 72vw, 310px);
  }

  .page1-hero-input {
    height: clamp(32px, 8.8vw, 38px);
    padding-inline-start: clamp(29px, 8.5vw, 36px);
    padding-inline-end: clamp(78px, 20vw, 90px);
    border-color: rgba(247, 251, 255, .66);
    background: rgba(2, 15, 34, .34);
    font-size: clamp(12px, 3.5vw, 15px);
  }

  .page1-hero-currency {
    font-size: clamp(15px, 4.5vw, 19px);
  }

  .page1-hero-icon-button {
    position: absolute;
    inset-block-start: 0;
    width: clamp(32px, 8.8vw, 38px);
    height: clamp(32px, 8.8vw, 38px);
    border: 1px solid rgba(247, 251, 255, .46);
    border-radius: 7px;
    background: rgba(2, 15, 34, .28);
  }

  .page1-hero-icon-button:nth-of-type(1) {
    inset-inline-end: clamp(38px, 10vw, 44px);
  }

  .page1-hero-icon-button:nth-of-type(2) {
    inset-inline-end: 0;
  }

  .page1-hero-icon-button svg {
    width: 68%;
    height: 68%;
  }

  .page1-hero-cta {
    width: clamp(218px, 62vw, 268px);
    min-height: clamp(32px, 8.8vw, 38px);
    padding: clamp(6px, 1.6vw, 8px) clamp(14px, 3.4vw, 18px);
    border-radius: 7px;
    box-shadow: 0 10px 22px rgba(18, 104, 243, .34);
    font-size: clamp(8.8px, 2.6vw, 11.2px);
    line-height: 1;
  }

  .page1-hero-stats {
    inset-inline: clamp(11px, 3.3vw, 15px);
    inset-block-end: clamp(12px, 3.3vw, 15px);
    height: clamp(58px, 15.7vw, 68px);
    border-color: rgba(247, 251, 255, .34);
    background: rgba(2, 14, 32, .58);
  }

  .page1-hero-stat {
    gap: 2px;
    padding-inline: clamp(4px, 1.4vw, 7px);
  }

  .page1-hero-stat svg {
    width: clamp(19px, 5.6vw, 24px);
    height: clamp(19px, 5.6vw, 24px);
  }

  .page1-hero-stat strong {
    font-size: clamp(9px, 2.85vw, 12px);
  }

  .page1-hero-stat span {
    font-size: clamp(6px, 2.05vw, 8.5px);
  }

  .plan-nav-card {
    min-height: clamp(92px, 24vw, 104px);
    align-content: start;
    padding: clamp(10px, 2.6vw, 13px) clamp(7px, 2vw, 10px);
  }

  .plan-nav-title {
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.12;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    font-size: clamp(10px, 2.65vw, 12px);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }
}

@media (max-width: 360px) {
  .page1-hero-inner {
    inset-block-end: clamp(54px, 16vw, 60px);
    inset-inline: clamp(12px, 4vw, 16px);
  }

  .page1-hero-left {
    padding-block-start: clamp(11px, 3.6vw, 15px);
  }

  .page1-hero-title {
    max-width: min(42%, 160px);
    font-size: clamp(15px, 4.9vw, 18px);
    line-height: 1.03;
  }

  .page1-hero-form {
    gap: clamp(3px, 1vw, 5px);
    margin-block-start: clamp(10px, 3.2vw, 13px);
    max-width: clamp(238px, 74vw, 280px);
  }

  .page1-hero-controls {
    width: clamp(238px, 74vw, 280px);
  }

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

  .page1-hero-input {
    height: clamp(28px, 8.6vw, 32px);
    padding-inline-start: clamp(25px, 8vw, 29px);
    padding-inline-end: clamp(65px, 20vw, 74px);
    font-size: clamp(10px, 3.1vw, 12px);
  }

  .page1-hero-icon-button {
    width: clamp(28px, 8.6vw, 32px);
    height: clamp(28px, 8.6vw, 32px);
    border-radius: 6px;
  }

  .page1-hero-icon-button:nth-of-type(1) {
    inset-inline-end: clamp(31px, 9.5vw, 36px);
  }

  .page1-hero-cta {
    width: clamp(204px, 64vw, 226px);
    min-height: clamp(29px, 8.8vw, 33px);
    font-size: clamp(8px, 2.55vw, 9.2px);
  }

  .page1-hero-stats {
    height: clamp(50px, 15.5vw, 56px);
  }

  .page1-hero-stat svg {
    width: clamp(15px, 4.9vw, 18px);
    height: clamp(15px, 4.9vw, 18px);
  }

  .page1-hero-stat strong {
    font-size: clamp(7px, 2.35vw, 8.6px);
  }

  .page1-hero-stat span {
    font-size: clamp(5px, 1.75vw, 6.5px);
  }

  .plan-nav-card {
    min-height: clamp(88px, 27vw, 96px);
    padding: clamp(8px, 2.6vw, 10px) clamp(5px, 1.8vw, 7px);
  }

  .plan-nav-title {
    -webkit-line-clamp: 4;
    font-size: clamp(9px, 2.95vw, 10px);
  }

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

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

@media (max-width: 340px) {
  .page1-hero-controls {
    width: clamp(232px, 74vw, 250px);
    gap: 3px;
  }

  .page1-hero-cta {
    width: clamp(196px, 63vw, 208px);
  }

  .hero-menu-panel {
    min-width: clamp(150px, 45vw, 168px);
    padding: 5px;
  }

  .hero-menu-panel a {
    padding: 7px 8px;
    font-size: clamp(10px, 3.1vw, 11px);
  }
}
