:root {
  --black: #202020;
  --dark: #303030;
  --ink: #222222;
  --muted: #777777;
  --line: #dddddd;
  --soft: #f6f6f6;
  --white: #ffffff;
  --red: #c40000;
  --orange: #f39a00;
  --blue: #075385;
  --cyan: #50bdc4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.anchor-target {
  display: block;
  height: 0;
  scroll-margin-top: 130px;
}

.top-strip {
  color: var(--white);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 5px),
    var(--dark);
  font-size: 12px;
}

.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 39px;
}

.top-links {
  color: #ffd08a;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--blue);
  border: 3px solid var(--blue);
  border-right-color: #76b82a;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: #333333;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

.brand small {
  color: #333333;
  font-size: 16px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  color: #111111;
  font-size: 15px;
}

.site-nav a {
  padding: 10px 12px;
  white-space: nowrap;
}

.site-nav a::before {
  color: #777777;
  content: "·";
  margin-right: 12px;
}

.site-nav a:first-child::before {
  display: none;
}

.site-nav a:hover,
.site-nav .active {
  color: var(--red);
}

.cart-count {
  margin-left: 2px;
  color: var(--red);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--line);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 478px;
  overflow: hidden;
  background:
    linear-gradient(120deg, var(--blue) 0 30%, transparent 30%),
    linear-gradient(120deg, rgba(0, 0, 0, 0.10) 0 56%, transparent 56%),
    linear-gradient(90deg, #f1f1f1, #d8d8d8 56%, #cfcfcf);
  border-bottom: 1px solid #e5e5e5;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.28) 30% 31%, transparent 31% 64%, rgba(255, 255, 255, 0.24) 64% 65%, transparent 65%),
    linear-gradient(120deg, transparent 0 48%, rgba(255, 255, 255, 0.24) 48% 49%, transparent 49%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  min-height: 398px;
  gap: 36px;
}

.device-scene {
  position: relative;
  min-height: 330px;
}

.desktop {
  position: absolute;
  left: 164px;
  top: 28px;
  width: 326px;
  height: 226px;
  padding: 14px;
  background: #111111;
  border-radius: 7px 7px 0 0;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.25);
}

.desktop::after {
  position: absolute;
  left: 50%;
  bottom: -38px;
  width: 92px;
  height: 38px;
  background: linear-gradient(#222222, #111111);
  content: "";
  transform: translateX(-50%);
  clip-path: polygon(38% 0, 62% 0, 74% 100%, 26% 100%);
}

.browser-bar {
  display: flex;
  gap: 5px;
  height: 14px;
  background: #e8e8e8;
  padding: 4px 6px;
}

.browser-bar i {
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
}

.mock-site {
  height: 184px;
  padding: 18px;
  background: #ffffff;
}

.mock-site b {
  display: block;
  width: 120px;
  height: 22px;
  background: #eeeeee;
}

.mock-site span {
  display: block;
  width: 88%;
  height: 8px;
  margin-top: 10px;
  background: #dddddd;
}

.mock-site em {
  display: inline-block;
  width: 76px;
  height: 58px;
  margin: 22px 8px 0 0;
  background: #f1f1f1;
  border-top: 4px solid var(--red);
}

.laptop,
.tablet,
.phone {
  position: absolute;
  background: #1a1a1a;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.laptop {
  left: 48px;
  top: 146px;
  width: 246px;
  height: 148px;
  padding: 10px;
  border-radius: 7px 7px 2px 2px;
}

.tablet {
  left: 388px;
  top: 142px;
  width: 128px;
  height: 168px;
  padding: 9px;
  border-radius: 8px;
}

.phone {
  left: 502px;
  top: 198px;
  width: 68px;
  height: 114px;
  padding: 7px;
  border-radius: 8px;
}

.laptop div,
.tablet div,
.phone div {
  height: 58%;
  background: linear-gradient(135deg, #f4f4f4, #dbeaf4);
  border-top: 4px solid var(--red);
}

.laptop span,
.tablet span,
.phone span {
  display: block;
  height: 7px;
  margin-top: 9px;
  background: #e8e8e8;
}

.hero-slogan {
  padding-top: 34px;
}

.hero-slogan h1 {
  margin: 0;
  color: #b60000;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-slogan h1 span {
  font-size: 1.42em;
}

.hero-slogan p {
  margin: 8px 0 22px;
  color: #333333;
  font-size: 28px;
  line-height: 1.3;
}

.slogan-actions {
  display: flex;
  gap: 88px;
}

.slogan-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  height: 38px;
  color: var(--white);
  background: var(--red);
  border-radius: 20px;
  font-size: 18px;
  font-weight: 800;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.feature-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: -68px;
  padding-bottom: 45px;
}

.feature-card {
  min-height: 100px;
  padding: 12px 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
}

.feature-card.active {
  color: var(--white);
  background: rgba(60, 184, 194, 0.9);
}

.feature-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
}

.feature-card h2::after {
  display: block;
  height: 1px;
  margin: 8px 0 4px;
  background: rgba(0, 0, 0, 0.12);
  content: "";
}

.feature-card.active h2::after {
  background: rgba(255, 255, 255, 0.36);
}

.feature-card p {
  margin: 0;
  color: #888888;
  font-size: 13px;
}

.feature-card.active p {
  color: var(--white);
}

.advantages {
  padding: 19px 0 10px;
  background: var(--white);
  border-bottom: 1px solid #ececec;
}

.advantage-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
}

.advantage-inner strong {
  color: #0065a8;
  font-size: 15px;
}

.advantage-inner span {
  color: #333333;
  font-size: 12px;
}

.advantage-inner span::before {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 1px solid #c6c6c6;
  border-radius: 50%;
  vertical-align: -2px;
  content: "";
}

.section,
.gray-section,
.contact {
  padding: 54px 0 64px;
}

.price-hero {
  padding: 68px 0 74px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 83, 133, 0.92), rgba(32, 32, 32, 0.92)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 7px);
}

.price-hero h1 {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: 0;
}

.price-hero p {
  max-width: 820px;
  margin: 0;
  color: #eeeeee;
  font-size: 17px;
}

.price-section {
  padding: 58px 0 68px;
}

.price-section.alt {
  background: var(--soft);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.price-card.highlight {
  border-top: 4px solid var(--red);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.price-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.price {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
}

.price span {
  font-size: 20px;
}

.price em {
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}

.price-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.price-card ul {
  flex: 1;
  margin: 0 0 24px;
  padding-left: 18px;
  color: #444444;
}

.price-card li {
  margin: 7px 0;
}

.price-card a,
.price-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  color: var(--white);
  background: var(--black);
  border: 0;
  font: inherit;
  cursor: pointer;
}

.addon-table {
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--white);
}

.addon-table div {
  display: grid;
  grid-template-columns: 190px 1fr 150px;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

.addon-table div:last-child {
  border-bottom: 0;
}

.addon-table strong {
  font-size: 18px;
}

.addon-table span {
  color: var(--muted);
}

.addon-table b {
  color: var(--red);
  text-align: right;
}

.price-note {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
}

.account-page,
.cart-page {
  padding: 62px 0 74px;
  background: var(--soft);
}

.login-page {
  min-height: calc(100vh - 183px);
  padding: 62px 0;
}

.login-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 520px;
  align-items: stretch;
  max-width: 1040px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.register-shell {
  grid-template-columns: minmax(320px, 0.82fr) 540px;
}

.auth-card,
.cart-panel {
  background: var(--white);
  border: 1px solid var(--line);
}

.account-hero {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 24px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 83, 133, 0.94), rgba(32, 32, 32, 0.94)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 7px);
}

.login-visual {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 46px 36px;
  min-height: 520px;
}

.account-hero h1,
.cart-head h1 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.2;
}

.account-hero p {
  margin: 0 0 8px;
  color: #ffd08a;
  font-weight: 800;
}

.account-hero span {
  display: block;
  max-width: 720px;
  color: #eeeeee;
  font-size: 16px;
}

.account-status {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.account-status.compact {
  justify-content: flex-start;
  min-height: 42px;
  margin: -4px 0 18px;
  padding: 10px 12px;
  background: #f7f7f7;
  border: 1px solid var(--line);
}

.cart-head p {
  color: var(--muted);
}

.account-status button,
.cart-summary button {
  height: 36px;
  margin-left: 12px;
  padding: 0 16px;
  color: var(--white);
  background: var(--black);
  border: 0;
  cursor: pointer;
}

.auth-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.auth-single-layout {
  max-width: 960px;
}

.auth-card {
  padding: 34px;
}

.auth-single {
  max-width: none;
  margin: 0;
  border: 0;
  padding: 46px 36px;
}

.auth-title {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.auth-title h2 {
  margin: 0 0 4px;
  font-size: 24px;
}

.auth-title span {
  color: var(--muted);
}

.auth-card label {
  display: block;
  margin-bottom: 15px;
  color: #333333;
}

.auth-card input {
  display: block;
  width: 100%;
  height: 44px;
  margin-top: 6px;
  padding: 0 12px;
  border: 1px solid var(--line);
  outline: none;
  background: #ffffff;
}

.auth-card input:focus {
  border-color: var(--blue);
}

.auth-card button,
.cart-head a,
.cart-summary a,
.cart-summary .checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 38px;
  color: var(--white);
  background: var(--red);
  border: 0;
  cursor: pointer;
}

.auth-card button {
  width: 128px;
  font-weight: 700;
}

.auth-card p {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--red);
}

.auth-switch {
  margin-top: 18px;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.login-shell .auth-switch {
  margin-top: 34px;
}

.auth-switch a {
  color: var(--red);
  font-weight: 700;
}

.account-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.account-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  height: 38px;
  color: var(--white);
  background: var(--black);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.cart-panel {
  padding: 24px;
}

.cart-empty {
  padding: 34px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--line);
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr 240px 130px;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item span {
  color: var(--muted);
}

.cart-item b {
  color: var(--red);
  font-size: 18px;
  text-align: right;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-controls button {
  width: 30px;
  height: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
}

.cart-controls .remove {
  width: auto;
  padding: 0 10px;
  color: var(--red);
}

.cart-controls input {
  width: 54px;
  height: 30px;
  text-align: center;
  border: 1px solid var(--line);
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding-top: 22px;
}

.cart-summary p {
  margin: 0;
  font-size: 18px;
}

.cart-summary strong {
  color: var(--red);
  font-size: 24px;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.58);
}

.checkout-modal.open {
  display: grid;
}

.checkout-dialog {
  position: relative;
  width: min(420px, 100%);
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.checkout-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.checkout-dialog h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.checkout-dialog p {
  margin: 0 auto 14px;
  color: var(--muted);
}

.checkout-dialog strong {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 30px;
}

.checkout-dialog img {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 12px;
  border: 1px solid var(--line);
}

.checkout-dialog span {
  color: var(--muted);
}

.section-title {
  text-align: center;
}

.section-title h2 {
  margin: 0;
  color: var(--orange);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
}

.section-title p {
  margin: 4px 0 0;
  color: #333333;
  font-size: 26px;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-title.left {
  text-align: left;
}

.service-intro {
  max-width: 1000px;
  margin: 30px auto 36px;
  color: #555555;
  text-align: center;
  line-height: 2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-grid article {
  min-height: 212px;
  padding: 26px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}

.service-grid b {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--black);
  border-radius: 50%;
}

.service-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
}

.home-package {
  margin-top: 34px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.package-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  padding: 0 22px;
  background: #f7f7f7;
  border-bottom: 1px solid var(--line);
}

.package-head strong {
  color: #0065a8;
  font-size: 18px;
}

.package-head a {
  color: var(--red);
  font-weight: 700;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.package-grid article {
  min-height: 168px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.package-grid article:last-child {
  border-right: 0;
}

.package-grid h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.package-grid p {
  min-height: 48px;
  margin: 0 0 14px;
  color: var(--muted);
}

.package-grid b {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 28px;
  line-height: 1.1;
}

.package-grid b span {
  font-size: 16px;
}

.package-grid b em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
}

.package-grid button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  color: var(--white);
  background: var(--black);
  border: 0;
  cursor: pointer;
}

.gray-section {
  background: var(--soft);
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.solution-list div {
  min-height: 150px;
  padding: 26px 20px;
  background: var(--white);
}

.solution-list strong,
.solution-list span {
  display: block;
}

.solution-list strong {
  margin-bottom: 12px;
  font-size: 20px;
}

.solution-list span {
  color: var(--muted);
}

.two-col-inner {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 60px;
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-list p {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  margin: 0;
  padding: 20px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.process-list b {
  color: var(--ink);
  font-size: 18px;
}

.contact {
  color: var(--white);
  background: var(--black);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
}

.contact h2 {
  margin: 0 0 12px;
  font-size: 32px;
}

.contact p {
  color: #d0d0d0;
}

.contact-box {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-box p {
  margin: 0 0 14px;
}

.contact-box span {
  display: block;
  color: #aaaaaa;
  font-size: 12px;
}

.contact-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 38px;
  margin-top: 8px;
  color: var(--white);
  background: var(--red);
}

.float-consult {
  position: fixed;
  right: 26px;
  top: 252px;
  z-index: 40;
  width: 40px;
  text-align: center;
}

.float-consult a {
  display: block;
  padding: 10px 7px;
  color: var(--white);
  background: #ff6d3a;
  font-weight: 800;
  writing-mode: vertical-rl;
}

.float-consult a + a {
  margin-top: 2px;
  background: #1e9fea;
  font-size: 12px;
}

.site-footer {
  color: #cccccc;
  background: #111111;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1120px) {
  .top-inner,
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
  }

  .login-shell {
    grid-template-columns: 1fr;
  }

  .login-visual {
    min-height: auto;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .hero-slogan {
    padding: 0 0 80px;
  }

  .feature-row,
  .service-grid,
  .solution-list,
  .price-grid,
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-grid article {
    border-bottom: 1px solid var(--line);
  }

  .two-col-inner,
  .contact-inner,
  .account-hero,
  .auth-panels {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item b {
    text-align: left;
  }

  .addon-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .addon-table b {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 28px, 1200px);
  }

  .top-links {
    display: none;
  }

  .header-inner {
    position: relative;
    flex-direction: row;
    align-items: center;
    min-height: 72px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    font-size: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0;
    background: var(--white);
    border: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a::before {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .device-scene {
    min-height: 260px;
    transform: scale(0.72);
    transform-origin: left top;
  }

  .hero-slogan h1 {
    font-size: 34px;
  }

  .hero-slogan p {
    font-size: 20px;
  }

  .slogan-actions {
    gap: 14px;
  }

  .feature-row,
  .service-grid,
  .solution-list,
  .price-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

  .package-grid article {
    border-right: 0;
  }

  .feature-row {
    gap: 14px;
    margin-top: -36px;
  }

  .advantage-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    white-space: normal;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 21px;
  }

  .price-hero h1 {
    font-size: 34px;
  }

  .price-card {
    min-height: auto;
  }

  .process-list p {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-box {
    width: 100%;
  }

  .cart-head,
  .cart-summary,
  .account-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-hero {
    padding: 24px;
  }

  .account-status {
    justify-content: flex-start;
  }

  .account-status button,
  .cart-summary button {
    margin: 10px 0 0;
  }

  .float-consult {
    display: none;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }
}
