:root {
  --ink: #172026;
  --ink-soft: #31424d;
  --muted: #667783;
  --line: #d9e2e7;
  --paper: #ffffff;
  --wash: #f4f7f8;
  --wash-strong: #e8f0f2;
  --teal: #0d8f7a;
  --teal-dark: #076b5f;
  --orange: #e87522;
  --orange-dark: #c95c12;
  --blue: #2f6f9f;
  --fx-blue: #1663ff;
  --fx-blue-dark: #0d48c7;
  --fx-bg: #f5f8ff;
  --shadow: 0 18px 50px rgba(23, 32, 38, 0.14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans SC",
    Arial,
    sans-serif;
  background: var(--paper);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

svg {
  width: 1em;
  height: 1em;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 231, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: var(--ink);
  border-radius: 8px;
}

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

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  padding: 9px 12px;
  color: var(--ink-soft);
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--teal-dark);
  background: #eef7f5;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.fx-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 26%, rgba(22, 99, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

.fx-hero-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 34px;
  padding: 54px 0 104px;
}

.fx-hero-copy {
  position: relative;
  z-index: 2;
}

.fx-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--fx-blue);
  background: rgba(22, 99, 255, 0.08);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.fx-hero h1 {
  margin: 18px 0 8px;
  color: #101820;
  font-size: clamp(52px, 7vw, 86px);
  line-height: 1.04;
  letter-spacing: 0;
}

.fx-hero p {
  margin: 0;
  color: #4d6275;
  font-size: 22px;
  font-weight: 700;
}

.fx-primary {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 48px;
  padding: 0 28px;
  color: #ffffff;
  background: var(--fx-blue);
  border-radius: 4px;
  box-shadow: 0 14px 28px rgba(22, 99, 255, 0.22);
  font-weight: 900;
}

.fx-primary:hover {
  background: var(--fx-blue-dark);
}

.fx-hero-visual {
  position: relative;
  min-height: 380px;
  border-radius: 0;
}

.fx-hero-visual::before {
  content: "";
  position: absolute;
  inset: 56px 0 0 76px;
  background: #dce8ff;
  border-radius: 50%;
}

.fx-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: ellipse(48% 42% at 58% 50%);
  filter: saturate(1.04) brightness(1.05);
}

.fx-service-tabs {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 40px));
  margin: -72px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e4ebf3;
  border-radius: 4px;
  box-shadow: 0 16px 38px rgba(20, 44, 72, 0.12);
}

.fx-service-tabs a {
  min-height: 132px;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 8px;
  border-left: 1px solid #e4ebf3;
}

.fx-service-tabs a:first-child {
  border-left: 0;
}

.fx-service-tabs a.active,
.fx-service-tabs a:hover {
  background: #f6f9ff;
}

.fx-service-tabs svg {
  width: 30px;
  height: 30px;
  color: var(--fx-blue);
}

.fx-service-tabs strong {
  font-size: 20px;
}

.fx-service-tabs span {
  color: var(--muted);
  font-size: 14px;
}

.fx-repair-panel {
  width: min(1180px, calc(100% - 40px));
  margin: 54px auto 0;
  padding: 36px;
  background: #ffffff;
  border: 1px solid #e4ebf3;
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(20, 44, 72, 0.08);
}

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

.fx-panel-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
}

.fx-panel-head p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
}

.fx-repair-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fx-repair-options a {
  min-height: 168px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 10px;
  background: #f8fbff;
  border: 1px solid #e3ebf5;
  border-radius: 4px;
}

.fx-repair-options a:hover {
  border-color: rgba(22, 99, 255, 0.34);
  box-shadow: 0 12px 28px rgba(22, 99, 255, 0.1);
}

.fx-repair-options svg {
  width: 30px;
  height: 30px;
  color: var(--fx-blue);
}

.fx-repair-options strong {
  font-size: 20px;
}

.fx-repair-options span {
  color: var(--muted);
  font-size: 14px;
}

.fx-order-banner {
  background:
    radial-gradient(circle at 75% 10%, rgba(22, 99, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #edf4ff 100%);
  border-bottom: 1px solid #e4ebf3;
}

.fx-order-banner-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 260px;
  margin: 0 auto;
  padding: 54px 0;
}

.fx-order-banner span {
  color: var(--fx-blue);
  font-weight: 900;
}

.fx-order-banner h1 {
  margin: 10px 0 10px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
}

.fx-order-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.fx-order-steps {
  position: sticky;
  top: 72px;
  z-index: 5;
  min-height: 72px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #ffffff;
  border: 1px solid #e4ebf3;
  border-radius: 4px;
  box-shadow: 0 12px 26px rgba(20, 44, 72, 0.06);
}

.fx-order-steps span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 900;
}

.fx-order-steps span + span {
  border-left: 1px solid #e4ebf3;
}

.fx-order-steps b {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #ffffff;
  background: #b6c2cf;
  border-radius: 50%;
  font-size: 12px;
}

.fx-order-steps .active {
  color: var(--fx-blue);
  background: #f6f9ff;
}

.fx-order-steps .active b {
  background: var(--fx-blue);
}

.fx-order-aside .summary-card {
  border-radius: 4px;
}

.fx-platform-section {
  background: #ffffff;
}

.fx-platform-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fx-platform-grid a {
  min-height: 190px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 12px;
  background: #f8fbff;
  border: 1px solid #e3ebf5;
  border-radius: 4px;
}

.fx-platform-grid a:hover {
  border-color: rgba(22, 99, 255, 0.34);
  box-shadow: 0 12px 28px rgba(22, 99, 255, 0.1);
}

.fx-platform-grid svg {
  width: 32px;
  height: 32px;
  color: var(--fx-blue);
}

.fx-platform-grid strong {
  font-size: 21px;
}

.fx-platform-grid span {
  color: var(--muted);
  font-size: 14px;
}

body:not(.admin-page-body) .button {
  border-radius: 4px;
}

body:not(.admin-page-body) .button-primary {
  background: var(--fx-blue);
  box-shadow: 0 14px 30px rgba(22, 99, 255, 0.22);
}

body:not(.admin-page-body) .button-primary:hover {
  background: var(--fx-blue-dark);
}

body:not(.admin-page-body) .button-secondary {
  background: #12a594;
}

body:not(.admin-page-body) .section.muted,
body:not(.admin-page-body) .miniapp-section,
body:not(.admin-page-body) .faq-section {
  background: #f7faff;
}

body:not(.admin-page-body) .service-card,
body:not(.admin-page-body) .brand-card-rich,
body:not(.admin-page-body) .case-card,
body:not(.admin-page-body) .price-table,
body:not(.admin-page-body) .form-section,
body:not(.admin-page-body) .summary-card,
body:not(.admin-page-body) .notice-card,
body:not(.admin-page-body) .success-card,
body:not(.admin-page-body) .tracking-board,
body:not(.admin-page-body) .tracking-step,
body:not(.admin-page-body) .miniapp-grid article,
body:not(.admin-page-body) details {
  border-radius: 4px;
}

body:not(.admin-page-body) .service-card svg,
body:not(.admin-page-body) .miniapp-grid svg,
body:not(.admin-page-body) .terms-grid svg,
body:not(.admin-page-body) .shipping-option svg,
body:not(.admin-page-body) .tracking-step.done svg,
body:not(.admin-page-body) .tracking-step.active svg {
  color: var(--fx-blue);
}

body:not(.admin-page-body) .form-section-head > span {
  background: var(--fx-blue);
  border-radius: 4px;
}

body:not(.admin-page-body) .field-grid input,
body:not(.admin-page-body) .field-grid select,
body:not(.admin-page-body) .full-field textarea {
  border-radius: 4px;
}

body:not(.admin-page-body) .field-grid input:focus,
body:not(.admin-page-body) .field-grid select:focus,
body:not(.admin-page-body) .full-field textarea:focus {
  border-color: var(--fx-blue);
  box-shadow: 0 0 0 3px rgba(22, 99, 255, 0.12);
}

body:not(.admin-page-body) .shipping-option {
  border-radius: 4px;
}

body:not(.admin-page-body) .shipping-option.active,
body:not(.admin-page-body) .tracking-step.done {
  background: #f3f7ff;
  border-color: rgba(22, 99, 255, 0.3);
}

body:not(.admin-page-body) .success-card,
body:not(.admin-page-body) .recycle-board {
  background: #12345b;
  border-radius: 4px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #ffffff;
  border-radius: 8px;
  cursor: pointer;
}

.menu-button {
  display: none;
  margin-left: auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  color: #ffffff;
  background: var(--ink);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 16, 20, 0.92) 0%, rgba(10, 16, 20, 0.74) 35%, rgba(10, 16, 20, 0.2) 76%),
    linear-gradient(180deg, rgba(10, 16, 20, 0.18), rgba(10, 16, 20, 0.6));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 150px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(260px, 360px);
  align-items: center;
  gap: 72px;
  padding: 72px 0 110px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bdeee6;
  font-size: 14px;
  font-weight: 700;
}

.section-kicker {
  color: var(--teal-dark);
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(232, 117, 34, 0.28);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 14px 30px rgba(13, 143, 122, 0.22);
}

.button-secondary:hover {
  background: var(--teal-dark);
}

.button-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.17);
}

.hero-panel {
  align-self: end;
  display: grid;
  gap: 1px;
  padding: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 22px;
  background: rgba(9, 16, 20, 0.54);
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.hero-panel strong {
  margin-top: 5px;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.1;
}

.trust-strip {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 40px));
  min-height: 74px;
  margin: -74px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 22, 27, 0.78);
  border-radius: 8px 8px 0 0;
  backdrop-filter: blur(16px);
}

.trust-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 74px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.86);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.trust-strip div:first-child {
  border-left: 0;
}

.trust-strip svg {
  color: #8be1d4;
}

.quick-quote {
  width: min(1180px, calc(100% - 40px));
  margin: 26px auto 0;
  padding: 24px;
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  align-items: start;
  gap: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-heading {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 34px;
}

.section-heading.compact {
  width: auto;
  margin: 0;
}

.section-heading.row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2 {
  max-width: 780px;
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.16;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 690px;
  margin: 12px 0 0;
  color: var(--muted);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form label span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.quote-form select,
.quote-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.quote-form select:focus,
.quote-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 143, 122, 0.13);
}

.form-note {
  grid-column: 2;
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 86px 0;
}

.section.muted {
  background: var(--wash);
}

.service-grid,
.brand-grid,
.case-grid,
.faq-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 170px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 143, 122, 0.5);
  box-shadow: 0 18px 38px rgba(23, 32, 38, 0.1);
}

.service-card svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.service-card strong {
  font-size: 21px;
}

.service-card span {
  color: var(--muted);
  font-size: 14px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.brand-grid a,
.brand-card-rich {
  min-height: 118px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-grid span,
.brand-card-rich span {
  font-size: 20px;
  font-weight: 900;
}

.brand-grid small,
.brand-card-rich small {
  color: var(--muted);
  font-size: 13px;
}

.brand-grid a:hover,
.brand-card-rich:hover {
  border-color: rgba(47, 111, 159, 0.48);
  box-shadow: 0 14px 32px rgba(47, 111, 159, 0.12);
}

.brand-card-rich {
  justify-content: flex-start;
  min-height: 210px;
}

.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.model-tags b {
  padding: 5px 8px;
  color: var(--teal-dark);
  background: #eaf7f4;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.model-library {
  background: #ffffff;
}

.model-library-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.model-library-grid article {
  min-height: 340px;
  padding: 22px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.model-library-grid h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.2;
}

.model-library-grid p {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.model-library-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.model-library-grid li + li {
  margin-top: 7px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 900;
  white-space: nowrap;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 32, 38, 0.07);
}

.case-thumb {
  min-height: 148px;
  display: grid;
  place-items: center;
  color: #ffffff;
}

.case-thumb svg {
  width: 46px;
  height: 46px;
}

.repair-thumb-1 {
  background: linear-gradient(135deg, #172026, #2f6f9f);
}

.repair-thumb-2 {
  background: linear-gradient(135deg, #172026, #0d8f7a);
}

.repair-thumb-3 {
  background: linear-gradient(135deg, #172026, #e87522);
}

.repair-thumb-4 {
  background: linear-gradient(135deg, #172026, #3e8f7e);
}

.repair-thumb-5 {
  background: linear-gradient(135deg, #172026, #777d84);
}

.repair-thumb-6 {
  background: linear-gradient(135deg, #172026, #a35422);
}

.case-content {
  padding: 22px;
}

.case-content > span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.case-content h3 {
  margin: 8px 0 9px;
  font-size: 21px;
  line-height: 1.28;
}

.case-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.case-content dl {
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.case-content dl div {
  padding: 10px;
  background: var(--wash);
  border-radius: 8px;
}

.case-content dt,
.case-content dd {
  margin: 0;
}

.case-content dt {
  color: var(--muted);
  font-size: 12px;
}

.case-content dd {
  margin-top: 2px;
  font-weight: 900;
}

.recycle-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: center;
}

.recycle-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.14;
  letter-spacing: 0;
}

.recycle-copy p {
  margin: 0;
  color: var(--muted);
}

.recycle-tags {
  margin: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.recycle-tags span {
  padding: 8px 12px;
  color: var(--ink-soft);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.recycle-board {
  padding: 28px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.recycle-board h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

.recycle-board ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.recycle-board li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.recycle-board li svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: #8be1d4;
}

.pricing {
  background: var(--wash);
}

.price-table {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-row {
  display: grid;
  grid-template-columns: 1.05fr 0.62fr 1.3fr;
  min-height: 68px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.price-row:first-child {
  border-top: 0;
}

.price-row span,
.price-row strong {
  padding: 16px 18px;
}

.price-row strong {
  color: var(--orange-dark);
}

.price-row.head {
  min-height: 54px;
  color: #ffffff;
  background: var(--ink);
  font-weight: 900;
}

.price-row:not(.head) span:last-child {
  color: var(--muted);
}

.repair-terms {
  background: #ffffff;
}

.terms-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.terms-grid article {
  min-height: 230px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 10px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.terms-grid svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.terms-grid strong {
  font-size: 21px;
}

.terms-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.admin-section {
  background: #ffffff;
}

.admin-layout {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(23, 32, 38, 0.08);
}

.admin-menu {
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 8px;
  background: var(--ink);
}

.admin-menu button {
  min-height: 48px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.admin-menu button.active,
.admin-menu button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.admin-panel {
  display: none;
  padding: 24px;
  background: #ffffff;
}

.admin-panel.active {
  display: block;
}

.admin-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-stat-row div {
  min-height: 104px;
  padding: 16px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-stat-row span,
.admin-stat-row strong {
  display: block;
}

.admin-stat-row span {
  color: var(--muted);
  font-size: 13px;
}

.admin-stat-row strong {
  margin-top: 12px;
  font-size: 32px;
  line-height: 1;
}

.admin-list {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.admin-list div {
  min-height: 58px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.admin-list div:first-child {
  border-top: 0;
}

.admin-list em {
  padding: 5px 9px;
  color: var(--teal-dark);
  background: #eaf7f4;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.faq-section {
  background: var(--wash);
}

.brand-strategy {
  background: #ffffff;
}

.miniapp-section {
  background: var(--wash);
}

.miniapp-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.miniapp-grid article {
  min-height: 178px;
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.miniapp-grid svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.miniapp-grid strong {
  font-size: 18px;
}

.miniapp-grid span {
  color: var(--muted);
  font-size: 14px;
}

.strategy-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.strategy-grid article {
  min-height: 170px;
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 10px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.strategy-grid svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.strategy-grid strong {
  font-size: 18px;
}

.strategy-grid span {
  color: var(--muted);
  font-size: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  min-height: 62px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  color: #ffffff;
  background: #10171c;
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 96px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
}

.footer-brand .brand-mark {
  color: var(--ink);
  background: #ffffff;
}

.footer-brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer p {
  max-width: 560px;
  margin: 16px 0 0;
}

.icp-line {
  margin-top: 10px;
  font-size: 13px;
}

.icp-line a {
  color: rgba(255, 255, 255, 0.72);
}

.icp-line a:hover {
  color: #ffffff;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.86);
}

.mobile-action-bar {
  display: none;
}

.button-light {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
  box-shadow: none;
}

.button-light:hover {
  background: var(--wash);
}

.button-small {
  min-height: 38px;
  padding: 0 12px;
  font-size: 13px;
}

.order-hero {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(13, 27, 33, 0.95), rgba(13, 27, 33, 0.74)),
    url("./assets/hero-repair-bench.png") center / cover;
}

.order-hero-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 520px;
  margin: 0 auto;
  padding: 74px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 48px;
}

.order-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: 0;
}

.order-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.order-hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pickup-card {
  padding: 26px;
  color: #ffffff;
  background: rgba(10, 18, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.pickup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pickup-head span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 800;
}

.pickup-head strong {
  padding: 5px 10px;
  color: #07261f;
  background: #8be1d4;
  border-radius: 999px;
  font-size: 13px;
}

.pickup-route {
  margin: 26px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.pickup-route div {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.pickup-route svg {
  width: 32px;
  height: 32px;
  color: #8be1d4;
}

.pickup-route span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.route-line {
  height: 2px;
  background: linear-gradient(90deg, #8be1d4, rgba(139, 225, 212, 0.18));
}

.pickup-card dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.pickup-card dl div,
.summary-card dl div,
.detail-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pickup-card dt,
.pickup-card dd,
.summary-card dt,
.summary-card dd,
.detail-list dt,
.detail-list dd {
  margin: 0;
}

.pickup-card dt {
  color: rgba(255, 255, 255, 0.62);
}

.pickup-card dd {
  font-weight: 900;
}

.order-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.order-main,
.order-sidebar {
  min-width: 0;
}

.repair-order-form {
  display: grid;
  gap: 16px;
}

.form-section,
.summary-card,
.notice-card,
.success-card,
.tracking-board,
.dashboard-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 32, 38, 0.06);
}

.form-section {
  padding: 24px;
}

.form-section-head {
  margin-bottom: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.form-section-head > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: #ffffff;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

.form-section h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.form-section p {
  margin: 6px 0 0;
  color: var(--muted);
}

.field-grid {
  display: grid;
  gap: 14px;
}

.field-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-grid label,
.full-field,
.inspect-panel label {
  display: grid;
  gap: 8px;
}

.field-grid span,
.full-field span,
.inspect-panel label span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
}

.field-grid input,
.field-grid select,
.full-field textarea,
.inspect-panel textarea,
.inspect-panel input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  resize: vertical;
}

.field-grid input:focus,
.field-grid select:focus,
.full-field textarea:focus,
.inspect-panel textarea:focus,
.inspect-panel input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 143, 122, 0.13);
}

.fault-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.fault-picker label,
.confirm-list label {
  min-height: 44px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.fault-picker input,
.confirm-list input,
.shipping-option input {
  accent-color: var(--teal);
}

.full-field {
  margin-top: 14px;
}

.shipping-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.shipping-option {
  position: relative;
  min-height: 132px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 8px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.shipping-option.active {
  background: #eaf7f4;
  border-color: rgba(13, 143, 122, 0.42);
}

.shipping-option input {
  position: absolute;
  top: 14px;
  right: 14px;
}

.shipping-option svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.shipping-option strong,
.shipping-option span {
  display: block;
}

.shipping-option span {
  color: var(--muted);
  font-size: 14px;
}

.confirm-list {
  display: grid;
  gap: 10px;
}

.submit-order {
  margin-top: 18px;
  width: 100%;
}

.order-sidebar {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 16px;
}

.summary-card,
.notice-card,
.success-card {
  padding: 20px;
}

.summary-card h2,
.success-card h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.summary-card dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.summary-card dt {
  color: var(--muted);
}

.summary-card dd {
  font-weight: 900;
}

.notice-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff8ef;
  border-color: #f1d3af;
}

.notice-card svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--orange-dark);
}

.notice-card strong,
.notice-card p {
  display: block;
  margin: 0;
}

.notice-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.success-card {
  color: #ffffff;
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.12);
}

.success-card svg {
  width: 34px;
  height: 34px;
  color: #8be1d4;
}

.success-card p {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.78);
}

.success-card .button {
  margin-top: 14px;
  width: 100%;
}

.tracking-section {
  background: var(--wash);
}

.tracking-board {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.tracking-step {
  min-height: 160px;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 8px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tracking-step svg {
  width: 26px;
  height: 26px;
  color: #9aa8b0;
}

.tracking-step strong {
  line-height: 1.25;
}

.tracking-step span {
  color: var(--muted);
  font-size: 13px;
}

.tracking-step.done {
  background: #eaf7f4;
  border-color: rgba(13, 143, 122, 0.32);
}

.tracking-step.done svg,
.tracking-step.active svg {
  color: var(--teal);
}

.tracking-step.active {
  background: #fff8ef;
  border-color: #f1d3af;
}

.admin-page-body {
  background: #eef3f5;
}

.admin-login {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #eef5ff, #ffffff);
}

.admin-login[hidden] {
  display: none;
}

.admin-login-card {
  width: min(420px, 100%);
  padding: 30px;
  display: grid;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(23, 32, 38, 0.16);
}

.admin-login-card h1 {
  margin: 0;
  font-size: 28px;
}

.admin-login-card p {
  margin: 0;
  color: var(--muted);
}

.admin-login-card label {
  display: grid;
  gap: 8px;
}

.admin-login-card label span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
}

.admin-login-card input {
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
}

.admin-login-card input:focus {
  border-color: var(--fx-blue);
  box-shadow: 0 0 0 3px rgba(22, 99, 255, 0.12);
}

.admin-login-card em {
  color: #c43b1d;
  font-style: normal;
  font-weight: 800;
}

.admin-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.dashboard-sidebar {
  position: sticky;
  top: 0;
  min-height: 100vh;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #ffffff;
  background: #10171c;
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
}

.dashboard-brand .brand-mark {
  background: #ffffff;
  color: var(--ink);
}

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

.dashboard-brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.dashboard-nav {
  display: grid;
  gap: 6px;
}

.dashboard-nav a,
.sidebar-footer a {
  min-height: 44px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  font-weight: 800;
}

.dashboard-nav a.active,
.dashboard-nav a:hover,
.sidebar-footer a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dashboard-main {
  min-width: 0;
  padding: 26px;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.dashboard-topbar h1 {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.16;
}

.topbar-actions {
  display: flex;
  gap: 10px;
}

.dashboard-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-stats article {
  min-height: 134px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(23, 32, 38, 0.06);
}

.dashboard-stats span,
.dashboard-stats strong,
.dashboard-stats em {
  display: block;
}

.dashboard-stats span {
  color: var(--muted);
  font-weight: 800;
}

.dashboard-stats strong {
  margin-top: 12px;
  font-size: 40px;
  line-height: 1;
}

.dashboard-stats em {
  margin-top: 10px;
  color: var(--teal-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.dashboard-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 18px;
  align-items: stretch;
}

.dashboard-card {
  min-width: 0;
  padding: 20px;
}

.dashboard-card.large {
  grid-column: auto;
}

.full-card {
  margin-top: 18px;
}

.card-head {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.card-head h2 {
  margin: 5px 0 0;
  font-size: 24px;
  line-height: 1.2;
}

.order-table {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.table-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr 0.76fr 0.7fr;
  align-items: center;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.table-row:first-child {
  border-top: 0;
}

.table-row > span {
  min-width: 0;
  padding: 12px 10px;
  overflow-wrap: anywhere;
}

.table-row strong,
.table-row small {
  display: block;
}

.table-row small {
  margin-top: 3px;
  color: var(--muted);
}

.table-head {
  color: #ffffff;
  background: var(--ink);
  font-weight: 900;
}

.table-row.selected {
  background: #fff8ef;
}

.table-row button {
  min-height: 34px;
  padding: 0 8px;
  color: var(--teal-dark);
  background: #eaf7f4;
  border: 1px solid rgba(13, 143, 122, 0.28);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  font-size: 13px;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.status.orange {
  color: var(--orange-dark);
  background: #fff1e3;
}

.status.blue {
  color: #245e8b;
  background: #e8f2fb;
}

.status.teal {
  color: var(--teal-dark);
  background: #eaf7f4;
}

.detail-card {
  background: linear-gradient(180deg, #ffffff, #f7fafb);
}

.detail-list {
  margin: 0;
  display: grid;
  gap: 12px;
}

.detail-list div {
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.detail-list dt {
  color: var(--muted);
  flex: 0 0 62px;
}

.detail-list dd {
  text-align: right;
  font-weight: 800;
}

.detail-actions {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.pickup-list,
.recycle-admin-list {
  display: grid;
  gap: 10px;
}

.pickup-list > div {
  min-height: 66px;
  padding: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pickup-list svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.pickup-list strong,
.pickup-list small,
.pickup-list em {
  display: block;
}

.pickup-list small {
  color: var(--muted);
}

.pickup-list em,
.recycle-admin-list em {
  color: var(--teal-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.inspect-panel {
  display: grid;
  gap: 12px;
}

.compact-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.recycle-admin-list > div {
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.recycle-admin-list span {
  color: var(--muted);
  font-size: 14px;
}

.recycle-admin-list em {
  grid-row: span 2;
  align-self: center;
}

.content-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.content-matrix div {
  min-height: 126px;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 8px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-matrix span {
  color: var(--muted);
  font-size: 14px;
}

.content-matrix b {
  margin-top: 4px;
  font-size: 30px;
  line-height: 1;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.model-admin-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.model-admin-row {
  display: grid;
  grid-template-columns: 0.7fr 1.6fr 0.9fr 1.3fr;
  align-items: start;
  gap: 0;
  border-top: 1px solid var(--line);
}

.model-admin-row:first-child {
  border-top: 0;
}

.model-admin-row > * {
  padding: 14px;
  min-width: 0;
}

.model-admin-row.head {
  color: #ffffff;
  background: var(--ink);
  font-weight: 900;
}

.model-admin-row:not(.head) {
  background: #ffffff;
}

.model-admin-row:not(.head):nth-child(odd) {
  background: var(--wash);
}

.model-admin-row span {
  color: var(--ink-soft);
  font-size: 14px;
}

.role-grid div {
  min-height: 148px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 8px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.role-grid svg {
  width: 26px;
  height: 26px;
  color: var(--teal);
}

.role-grid span {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1020px) {
  .header-inner {
    width: min(100% - 28px, 1180px);
  }

  .menu-button {
    display: inline-grid;
  }

  .header-call {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    padding: 12px 14px 18px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(23, 32, 38, 0.14);
  }

  body.nav-open .main-nav {
    display: grid;
  }

  .main-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 80px 0 120px;
  }

  .fx-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 52px 0 110px;
  }

  .fx-hero-visual {
    min-height: 300px;
  }

  .fx-service-tabs,
  .fx-repair-options,
  .fx-platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    align-self: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-quote {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-note {
    grid-column: 1;
  }

  .service-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-grid,
  .model-library-grid,
  .terms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recycle-section {
    grid-template-columns: 1fr;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .strategy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .miniapp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-hero-inner,
  .order-shell {
    grid-template-columns: 1fr;
  }

  .order-sidebar {
    position: static;
  }

  .tracking-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-app {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: relative;
    min-height: auto;
  }

  .dashboard-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-stats,
  .role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-admin-row {
    grid-template-columns: 1fr 1.2fr;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 70px;
  }

  .header-inner,
  .hero-inner,
  .trust-strip,
  .quick-quote,
  .section-heading,
  .service-grid,
  .brand-grid,
  .case-grid,
  .recycle-section,
  .price-table,
  .admin-layout,
  .faq-grid,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: auto;
  }

  .fx-hero-inner,
  .fx-service-tabs,
  .fx-repair-panel,
  .fx-order-banner-inner {
    width: min(100% - 28px, 1180px);
  }

  .fx-hero-inner {
    padding: 42px 0 92px;
  }

  .fx-hero h1 {
    font-size: 54px;
  }

  .fx-hero p {
    font-size: 17px;
  }

  .fx-hero-visual {
    display: none;
  }

  .fx-service-tabs {
    grid-template-columns: 1fr;
    margin-top: -48px;
  }

  .fx-service-tabs a {
    min-height: 96px;
    padding: 18px;
  }

  .fx-repair-panel {
    margin-top: 34px;
    padding: 22px;
  }

  .fx-panel-head {
    display: grid;
  }

  .fx-panel-head h2 {
    font-size: 28px;
  }

  .fx-repair-options {
    grid-template-columns: 1fr;
  }

  .fx-platform-grid {
    width: min(100% - 28px, 1180px);
    grid-template-columns: 1fr;
  }

  .fx-order-banner-inner {
    min-height: auto;
    padding: 42px 0;
  }

  .fx-order-steps {
    position: static;
    grid-template-columns: 1fr;
  }

  .fx-order-steps span {
    min-height: 50px;
  }

  .fx-order-steps span + span {
    border-left: 0;
    border-top: 1px solid #e4ebf3;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 16, 20, 0.9), rgba(10, 16, 20, 0.6)),
      linear-gradient(180deg, rgba(10, 16, 20, 0.28), rgba(10, 16, 20, 0.72));
  }

  .hero-inner {
    padding: 54px 0 120px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -92px;
  }

  .trust-strip div {
    min-height: 56px;
    font-size: 13px;
  }

  .quick-quote {
    margin-top: 18px;
    padding: 18px;
  }

  .quote-form,
  .service-grid,
  .brand-grid,
  .model-library-grid,
  .terms-grid,
  .case-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading.row {
    align-items: start;
    flex-direction: column;
  }

  .section-heading h2,
  .recycle-copy h2 {
    font-size: 30px;
  }

  .price-table {
    border: 0;
    background: transparent;
  }

  .price-row,
  .price-row.head {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 10px;
    min-height: auto;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .price-row.head {
    display: none;
  }

  .price-row span,
  .price-row strong {
    padding: 10px 14px;
  }

  .admin-menu {
    grid-template-columns: 1fr;
  }

  .admin-stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-list div {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 12px 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .order-hero-inner,
  .order-shell,
  .tracking-board {
    width: min(100% - 28px, 1180px);
  }

  .order-hero-inner {
    min-height: auto;
    padding: 54px 0;
  }

  .order-hero h1 {
    font-size: 36px;
  }

  .order-hero p {
    font-size: 16px;
  }

  .order-hero-actions,
  .topbar-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .field-grid.two,
  .fault-picker,
  .shipping-choice,
  .tracking-board,
  .dashboard-stats,
  .dashboard-nav,
  .compact-fields,
    .content-matrix,
    .role-grid,
    .strategy-grid,
    .miniapp-grid {
    grid-template-columns: 1fr;
  }

  .model-admin-row,
  .model-admin-row.head {
    grid-template-columns: 1fr;
  }

  .form-section {
    padding: 18px;
  }

  .dashboard-main {
    padding: 18px 14px 82px;
  }

  .dashboard-topbar {
    display: grid;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 64px;
    background: #ffffff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(23, 32, 38, 0.12);
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    gap: 2px;
    padding: 8px 4px;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-action-bar svg {
    width: 20px;
    height: 20px;
    color: var(--teal-dark);
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 16px;
  }

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

  .hero h1 {
    font-size: 36px;
  }

  .quick-quote,
  .service-card,
  .case-content,
  .recycle-board,
  .admin-panel {
    padding: 18px;
  }

  .admin-stat-row {
    grid-template-columns: 1fr;
  }

  .pickup-list > div,
  .recycle-admin-list > div {
    grid-template-columns: 1fr;
  }

  .detail-list div {
    display: grid;
  }

  .detail-list dd {
    text-align: left;
  }
}
