:root {
  --ink: #071a26;
  --ink-2: #102d3c;
  --ink-3: #173e4d;
  --paper: #ffffff;
  --canvas: #f3f5f0;
  --canvas-2: #e9ede7;
  --mist: #dce4df;
  --line: #d5ddd8;
  --text: #10232d;
  --muted: #62737a;
  --green: #1dc88a;
  --green-dark: #0b8f65;
  --green-soft: #d9f5e8;
  --lime: #b9efcf;
  --gold: #d6ad68;
  --danger: #c44545;
  --shadow-sm: 0 8px 24px rgba(7, 26, 38, .06);
  --shadow-md: 0 24px 70px rgba(7, 26, 38, .11);
  --shadow-dark: 0 30px 90px rgba(1, 12, 18, .3);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1200px;
  --display: "Bahnschrift", "Aptos Display", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --body: "Aptos", "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[lang="zh-CN"] body {
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
}

html[lang="ja"] body {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button,
input,
select,
textarea {
  border: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 730;
  letter-spacing: -.035em;
  line-height: 1.08;
}

html[lang="ja"] h1,
html[lang="ja"] h2,
html[lang="ja"] h3 {
  letter-spacing: -.025em;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 124px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 249, 245, .9);
  border-color: rgba(7, 26, 38, .1);
  box-shadow: 0 12px 36px rgba(7, 26, 38, .06);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 48px), 1320px);
  height: 88px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(7, 26, 38, .18);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-family: var(--display);
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--muted);
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #4c626c;
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--green-dark);
  transition: right .3s var(--ease);
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-control {
  position: relative;
  display: flex;
  align-items: center;
  height: 46px;
  padding-left: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(7, 26, 38, .12);
  border-radius: 999px;
}

.language-control svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}

.language-control select {
  min-width: 112px;
  height: 44px;
  padding: 0 30px 0 8px;
  color: var(--ink);
  background: transparent;
  border-radius: inherit;
  font-size: .78rem;
  font-weight: 750;
  outline: none;
}

.language-control:focus-within {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 4px rgba(29, 200, 138, .14);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 21px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .3s var(--ease), box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform .3s var(--ease);
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(7, 26, 38, .2);
}

.button-primary:hover {
  background: var(--ink-3);
  box-shadow: 0 18px 38px rgba(7, 26, 38, .27);
}

.button-secondary {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(7, 26, 38, .14);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover {
  border-color: rgba(7, 26, 38, .32);
  box-shadow: var(--shadow-md);
}

.button-line {
  color: #073a29;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(29, 200, 138, .2);
}

.button-line:hover {
  color: var(--paper);
  background: var(--green-dark);
}

.header-quote {
  min-height: 46px;
  padding: 11px 17px;
  font-size: .82rem;
}

.line-glyph {
  display: inline-grid;
  place-items: center;
  min-width: 31px;
  height: 23px;
  padding: 0 5px;
  color: #fff;
  background: #06c755;
  border-radius: 6px;
  font-family: Arial, sans-serif;
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: -.03em;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(7, 26, 38, .12);
  border-radius: 50%;
}

.menu-toggle svg {
  width: 21px;
  height: 21px;
}

.menu-toggle .close-icon,
.menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

.mobile-nav {
  position: absolute;
  top: 88px;
  left: 0;
  right: 0;
  display: none;
  padding: 18px 24px 26px;
  background: rgba(247, 249, 245, .98);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(7, 26, 38, .1);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 14px 6px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 750;
}

.mobile-nav a:last-child {
  margin-top: 12px;
  padding: 14px 18px;
  color: #063f2d;
  background: var(--green);
  border: 0;
  border-radius: 14px;
  text-align: center;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  padding: 150px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(29, 200, 138, .14), transparent 27%),
    radial-gradient(circle at 78% 32%, rgba(48, 126, 156, .12), transparent 28%),
    linear-gradient(135deg, #f7f8f4 0%, #edf1ec 54%, #f5f7f3 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image:
    linear-gradient(rgba(7, 26, 38, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 38, .07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
  pointer-events: none;
}

.hero-section::after {
  content: "IT ASSET DISPOSITION";
  position: absolute;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%);
  color: rgba(7, 26, 38, .03);
  font-family: var(--display);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(390px, .8fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(3.35rem, 5vw, 4.85rem);
}

html[lang="en"] .hero-copy h1 {
  font-size: clamp(3.2rem, 4.2vw, 3.75rem);
}

html[lang^="zh"] .hero-copy h1,
html[lang="ja"] .hero-copy h1 {
  font-size: clamp(3.2rem, 4.2vw, 4rem);
}

html[lang^="zh"] .hero-copy h1 > span,
html[lang^="zh"] .hero-copy h1 > strong,
html[lang="ja"] .hero-copy h1 > span,
html[lang="ja"] .hero-copy h1 > strong {
  white-space: nowrap;
}

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

.hero-copy h1 strong {
  position: relative;
  z-index: 1;
  width: fit-content;
  color: var(--ink);
  font-weight: inherit;
}

.hero-copy h1 strong::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: -8px;
  bottom: .08em;
  height: .25em;
  background: var(--green);
  transform: skewX(-11deg);
  opacity: .74;
}

.hero-description {
  max-width: 680px;
  margin-bottom: 34px;
  color: #536870;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-actions .button {
  min-height: 54px;
  padding: 15px 24px;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.micro-proof li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #4d626b;
  font-size: .78rem;
  font-weight: 700;
}

.micro-proof svg {
  width: 16px;
  height: 16px;
  padding: 2px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 50%;
  stroke-width: 2.4;
}

.route-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 690px;
  border: 1px solid rgba(7, 26, 38, .13);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.route-card {
  position: relative;
  min-height: 192px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255, 255, 255, .84);
  transition: background .3s ease, transform .3s var(--ease);
}

.route-card + .route-card {
  border-left: 1px solid rgba(7, 26, 38, .12);
}

.route-card:hover {
  background: #fff;
}

.route-card-dark {
  color: #fff;
  background: var(--ink);
}

.route-card-dark:hover {
  background: var(--ink-3);
}

.route-kicker {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.route-card-dark .route-kicker {
  color: var(--green);
}

.route-card > strong {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 1.13rem;
  line-height: 1.3;
}

.route-card > small {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
}

.route-card-dark > small {
  color: #aec0c6;
}

.route-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 800;
}

.route-card-dark .route-link {
  color: var(--green);
}

.route-link svg {
  width: 16px;
  height: 16px;
  transition: transform .3s var(--ease);
}

.route-card:hover .route-link svg {
  transform: translateX(4px);
}

.asset-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(7, 26, 38, .1);
  border-radius: 50%;
}

.orbit-one {
  width: 560px;
  height: 560px;
}

.orbit-two {
  width: 440px;
  height: 440px;
  border-style: dashed;
  animation: orbitSpin 34s linear infinite;
}

.asset-console {
  position: relative;
  z-index: 2;
  width: min(100%, 445px);
  padding: 17px;
  color: #e9f5f0;
  background:
    linear-gradient(155deg, rgba(31, 77, 91, .72), transparent 42%),
    linear-gradient(145deg, #0b2531, #06151e 72%);
  border: 1px solid rgba(185, 239, 207, .23);
  border-radius: 28px;
  box-shadow: var(--shadow-dark);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
}

.asset-console::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 23px;
  pointer-events: none;
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 7px 16px;
}

.console-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.console-brand img {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(29, 200, 138, .15);
}

.console-brand span {
  display: grid;
  gap: 2px;
}

.console-brand small {
  color: var(--green);
  font-family: var(--display);
  font-size: .55rem;
  font-weight: 850;
  letter-spacing: .16em;
}

.console-brand strong {
  font-family: var(--display);
  font-size: .9rem;
}

.scan-status {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: var(--green);
  background: rgba(29, 200, 138, .09);
  border: 1px solid rgba(29, 200, 138, .17);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 800;
}

.scan-status i,
.console-footer i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(29, 200, 138, .1);
  animation: statusPulse 2s ease-in-out infinite;
}

.scanner-stage {
  position: relative;
  height: 220px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(29, 200, 138, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 200, 138, .06) 1px, transparent 1px),
    rgba(1, 12, 18, .58);
  background-size: 24px 24px;
  border: 1px solid rgba(185, 239, 207, .1);
  border-radius: 17px;
}

.device-outline {
  position: relative;
  width: 190px;
  height: 124px;
  display: grid;
  place-items: center;
}

.device-screen {
  position: relative;
  width: 158px;
  height: 99px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(185, 239, 207, .72);
  border-radius: 8px;
  box-shadow: inset 0 0 35px rgba(29, 200, 138, .08), 0 0 28px rgba(29, 200, 138, .08);
}

.device-screen::before,
.device-screen::after {
  content: "";
  position: absolute;
  background: rgba(185, 239, 207, .25);
}

.device-screen::before {
  width: 84px;
  height: 5px;
  top: 25px;
  left: 18px;
}

.device-screen::after {
  width: 54px;
  height: 5px;
  top: 40px;
  left: 18px;
}

.device-screen i {
  position: absolute;
  width: 28px;
  height: 28px;
  right: 18px;
  bottom: 17px;
  border: 1px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(29, 200, 138, .25);
}

.device-screen i::before,
.device-screen i::after {
  content: "";
  position: absolute;
  background: var(--green);
}

.device-screen i::before {
  width: 1px;
  height: 16px;
  left: 13px;
  top: 5px;
}

.device-screen i::after {
  width: 16px;
  height: 1px;
  left: 5px;
  top: 13px;
}

.device-base {
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 75px;
  height: 22px;
  transform: translateX(-50%);
  border-bottom: 2px solid rgba(185, 239, 207, .72);
}

.device-base::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -17px;
  width: 2px;
  height: 18px;
  background: rgba(185, 239, 207, .72);
}

.scan-line {
  position: absolute;
  z-index: 2;
  left: 12%;
  right: 12%;
  top: 20%;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 16px var(--green), 0 16px 50px rgba(29, 200, 138, .22);
  animation: scanMove 3.2s var(--ease) infinite;
}

.scan-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--green);
}

.corner-a {
  top: 18px;
  left: 18px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.corner-b {
  top: 18px;
  right: 18px;
  border-top: 2px solid;
  border-right: 2px solid;
}

.corner-c {
  bottom: 18px;
  left: 18px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.corner-d {
  right: 18px;
  bottom: 18px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.asset-rows {
  display: grid;
  gap: 8px;
  padding: 12px 0;
}

.asset-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 12px;
}

.asset-row-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: rgba(29, 200, 138, .09);
  border-radius: 9px;
}

.asset-row-icon svg {
  width: 18px;
  height: 18px;
}

.asset-row > span:nth-child(2) {
  display: grid;
  gap: 1px;
}

.asset-row strong {
  font-family: var(--display);
  font-size: .76rem;
}

.asset-row small {
  color: #809ba5;
  font-size: .6rem;
}

.asset-row b {
  color: rgba(185, 239, 207, .3);
  font-family: var(--display);
  font-size: .72rem;
}

.console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 8px 6px;
  color: #78929c;
  font-size: .66rem;
}

.console-footer strong {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: .68rem;
}

.asset-tag {
  position: absolute;
  z-index: 3;
  padding: 9px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(7, 26, 38, .12);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  font-family: var(--display);
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.tag-one {
  left: 0;
  top: 27%;
  transform: rotate(-7deg);
}

.tag-two {
  right: -1%;
  bottom: 25%;
  color: #fff;
  background: var(--green-dark);
  border-color: transparent;
  transform: rotate(5deg);
}

.trust-strip {
  position: relative;
  z-index: 3;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.trust-grid article {
  min-height: 122px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 22px;
}

.trust-grid article + article {
  border-left: 1px solid var(--line);
}

.trust-grid article > span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 12px;
}

.trust-grid article > span svg {
  width: 21px;
  height: 21px;
}

.trust-grid article div {
  display: grid;
  gap: 3px;
}

.trust-grid strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: .88rem;
}

.trust-grid small {
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.4;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading h2,
.assurance-intro h2,
.faq-intro h2,
.contact-copy h2 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(2.45rem, 4.4vw, 4.25rem);
}

.section-heading > p:last-child,
.section-heading-split > p,
.assurance-intro > p,
.faq-intro > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .72fr);
  align-items: end;
  gap: 72px;
}

.section-heading-split h2 {
  margin-bottom: 0;
}

.section-heading-split > p {
  margin-bottom: 4px;
}

.quote-section {
  background: var(--canvas);
}

.quote-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .96fr);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 42px;
}

.quote-form label {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  color: var(--ink);
  background: #f4f6f2;
  border: 1px solid #dce2dd;
  border-radius: 13px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.quote-form input:focus,
.quote-form select:focus {
  background: #fff;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 4px rgba(29, 200, 138, .13);
}

.quote-form input[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(196, 69, 69, .1);
}

.location-field {
  grid-column: 1 / -1;
}

.field-error {
  min-height: 1em;
  color: var(--danger);
  font-size: .69rem;
}

.quote-submit {
  grid-column: 1 / -1;
  justify-self: start;
  min-width: 230px;
  margin-top: 2px;
}

.quote-result {
  min-width: 0;
  padding: 42px;
  color: #edf5f1;
  background:
    radial-gradient(circle at 92% 10%, rgba(29, 200, 138, .18), transparent 32%),
    linear-gradient(145deg, var(--ink-2), var(--ink));
}

.result-empty {
  min-height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  text-align: center;
}

.result-empty[hidden] {
  display: none;
}

.result-empty p {
  max-width: 330px;
  margin-bottom: 0;
  color: #9fb2b9;
  font-size: .92rem;
}

.result-radar {
  position: relative;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(29, 200, 138, .38);
  border-radius: 50%;
}

.result-radar::before,
.result-radar::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(29, 200, 138, .2);
  border-radius: 50%;
}

.result-radar::before {
  inset: 16px;
}

.result-radar::after {
  inset: 33px;
}

.result-radar i {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--green);
  animation: statusPulse 2s ease-in-out infinite;
}

.result-content[hidden] {
  display: none;
}

.result-label {
  margin-bottom: 18px;
  color: var(--green);
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.result-price {
  display: grid;
  gap: 2px;
  margin-bottom: 17px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.result-price span {
  color: #9fb2b9;
  font-size: .75rem;
}

.result-price strong {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -.04em;
}

.result-disclaimer {
  color: #9fb2b9;
  font-size: .72rem;
  line-height: 1.7;
}

.result-content textarea {
  width: 100%;
  resize: none;
  padding: 14px;
  color: #dce9e4;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 13px;
  font-size: .75rem;
  line-height: 1.65;
  outline: none;
}

.result-content textarea:focus {
  border-color: var(--green);
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.result-actions .button {
  min-height: 44px;
  padding: 10px 15px;
  font-size: .74rem;
}

.result-actions .button-secondary {
  color: #e8f2ee;
  background: transparent;
  border-color: rgba(255, 255, 255, .18);
  box-shadow: none;
}

.result-actions .button-secondary:hover,
.result-actions .button-secondary.is-copied {
  color: var(--ink);
  background: var(--green-soft);
}

.audience-section {
  background: var(--paper);
}

.audience-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.audience-section .eyebrow,
.pricing-section .eyebrow,
.process-section .eyebrow {
  justify-content: center;
}

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

.audience-card {
  position: relative;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.audience-card::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -140px;
  bottom: -150px;
  border: 1px solid rgba(7, 26, 38, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(7, 26, 38, .025), 0 0 0 80px rgba(7, 26, 38, .018);
}

.audience-personal {
  background: linear-gradient(145deg, #fff, #f2f5f0);
}

.audience-business {
  color: #fff;
  background:
    radial-gradient(circle at 94% 12%, rgba(29, 200, 138, .16), transparent 34%),
    linear-gradient(145deg, var(--ink-2), var(--ink));
  border-color: rgba(7, 26, 38, .4);
  box-shadow: var(--shadow-dark);
}

.audience-business::after {
  border-color: rgba(185, 239, 207, .14);
  box-shadow: 0 0 0 40px rgba(185, 239, 207, .03), 0 0 0 80px rgba(185, 239, 207, .02);
}

.audience-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 44px;
}

.audience-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 17px;
}

.audience-business .audience-icon {
  color: var(--green);
  background: rgba(29, 200, 138, .1);
  border: 1px solid rgba(29, 200, 138, .18);
}

.audience-icon svg {
  width: 28px;
  height: 28px;
}

.audience-top small {
  color: var(--green-dark);
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.audience-business .audience-top small {
  color: var(--green);
}

.audience-card h3 {
  max-width: 500px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.audience-business h3 {
  color: #fff;
}

.audience-card > p {
  max-width: 540px;
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.8;
}

.audience-business > p {
  color: #a8bcc3;
}

.audience-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.audience-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .86rem;
  font-weight: 700;
}

.audience-card li svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 50%;
  stroke-width: 2.5;
}

.audience-business li svg {
  color: var(--ink);
  background: var(--green);
}

.text-link {
  position: relative;
  z-index: 1;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 850;
}

.audience-business .text-link {
  color: var(--green);
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform .3s var(--ease);
}

.text-link:hover svg {
  transform: translateX(4px);
}

.services-section {
  background: var(--canvas);
}

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

.service-card {
  position: relative;
  min-height: 310px;
  padding: 26px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform .35s var(--ease), background .35s ease, box-shadow .35s ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.service-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #a8b4af;
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .13em;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 58px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 15px;
  transition: color .3s ease, background .3s ease, transform .3s var(--ease);
}

.service-card:hover .service-icon {
  color: #fff;
  background: var(--ink);
  transform: rotate(-5deg) scale(1.06);
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-card h3 {
  margin-bottom: 13px;
  color: var(--ink);
  font-size: 1.35rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.75;
}

.pricing-section {
  background: var(--paper);
}

.pricing-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

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

.price-card {
  min-height: 375px;
  padding: 25px;
  background: #f7f8f5;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform .35s var(--ease), box-shadow .35s ease;
}

.price-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.price-card-featured {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.price-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
}

.price-card-top > span {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 14px;
}

.price-card-featured .price-card-top > span {
  color: var(--green);
  background: rgba(29, 200, 138, .1);
}

.price-card-top svg {
  width: 24px;
  height: 24px;
}

.price-card-top small {
  color: #9ba9a4;
  font-family: var(--display);
  font-size: .65rem;
  font-weight: 850;
}

.price-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.3rem;
}

.price-card-featured h3 {
  color: #fff;
}

.price-card > strong {
  display: block;
  min-height: 50px;
  margin-bottom: 25px;
  color: var(--green-dark);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: -.04em;
  line-height: 1.2;
}

.price-card-featured > strong {
  color: var(--green);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px 0 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card-featured ul {
  color: #aabdc4;
  border-color: rgba(255, 255, 255, .1);
}

.price-card li {
  position: relative;
  padding-left: 14px;
  font-size: .75rem;
  line-height: 1.55;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 5px;
  height: 5px;
  background: var(--green-dark);
  border-radius: 50%;
}

.price-card-featured li::before {
  background: var(--green);
}

.price-explainer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 22px;
  padding: 26px;
  background: var(--green-soft);
  border: 1px solid #c6ead8;
  border-radius: var(--radius-md);
}

.price-explainer > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green-dark);
  border-radius: 15px;
}

.price-explainer > span svg {
  width: 26px;
  height: 26px;
}

.price-explainer h3 {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1.1rem;
}

.price-explainer p {
  margin-bottom: 0;
  color: #4c6a62;
  font-size: .78rem;
  line-height: 1.65;
}

.price-explainer .button {
  font-size: .8rem;
}

.assurance-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(29, 200, 138, .15), transparent 28%),
    linear-gradient(135deg, #0f3442, #06151e 60%);
}

.assurance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image: linear-gradient(rgba(185, 239, 207, .2) 1px, transparent 1px), linear-gradient(90deg, rgba(185, 239, 207, .2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 70% 55%, #000, transparent 70%);
}

.assurance-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(54px, 8vw, 105px);
}

.eyebrow-light {
  color: var(--green);
}

.assurance-intro h2,
.contact-copy h2 {
  color: #fff;
}

.assurance-intro > p,
.contact-copy > p {
  color: #a7bac2;
}

.assurance-statement {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 35px;
  padding: 20px;
  color: var(--lime);
  background: rgba(29, 200, 138, .08);
  border: 1px solid rgba(29, 200, 138, .18);
  border-radius: 16px;
}

.assurance-statement svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}

.assurance-statement strong {
  font-size: .86rem;
  line-height: 1.6;
}

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

.assurance-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  padding: 26px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  transition: background .3s ease, border-color .3s ease, transform .3s var(--ease);
}

.assurance-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(29, 200, 138, .3);
}

.assurance-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: rgba(29, 200, 138, .09);
  border-radius: 13px;
}

.assurance-icon svg {
  width: 23px;
  height: 23px;
}

.assurance-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.assurance-card h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.15rem;
}

.assurance-card p {
  margin-bottom: 0;
  color: #9eb1b9;
  font-size: .77rem;
  line-height: 1.7;
}

.process-section {
  background: var(--canvas);
}

.process-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

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

.process-line::before {
  content: "";
  position: absolute;
  top: 68px;
  left: 16.66%;
  right: 16.66%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--green-dark) 0 8px, transparent 8px 15px);
  opacity: .42;
}

.process-card {
  position: relative;
  min-height: 360px;
  padding: 26px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform .35s var(--ease), box-shadow .35s ease, background .35s ease;
}

.process-card:hover {
  transform: translateY(-7px);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.process-index {
  position: absolute;
  top: 23px;
  right: 25px;
  color: #9baaa5;
  font-family: var(--display);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.process-icon {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin-bottom: 54px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 10px solid var(--canvas);
  border-radius: 50%;
}

.process-icon svg {
  width: 27px;
  height: 27px;
}

.process-card > small {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: .6rem;
  font-weight: 850;
}

.process-card h3 {
  margin-bottom: 13px;
  color: var(--ink);
  font-size: 1.45rem;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.75;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(50px, 9vw, 120px);
}

.faq-intro {
  position: sticky;
  top: 125px;
}

.faq-intro .button {
  margin-top: 18px;
}

.faq-list {
  display: grid;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  background: var(--green-soft);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1.5px;
  background: var(--green-dark);
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 710px;
  margin-bottom: 25px;
  padding-right: 52px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.85;
}

.contact-section {
  padding: 28px 0;
  background: var(--canvas);
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, .85fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
  padding: clamp(44px, 7vw, 86px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 8% 5%, rgba(29, 200, 138, .18), transparent 31%),
    linear-gradient(135deg, var(--ink-2), var(--ink));
  border-radius: 36px;
  box-shadow: var(--shadow-dark);
}

.contact-shell::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  left: -220px;
  bottom: -260px;
  border: 1px solid rgba(185, 239, 207, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(185, 239, 207, .025), 0 0 0 110px rgba(185, 239, 207, .018);
}

.contact-copy,
.contact-actions {
  position: relative;
  z-index: 1;
}

.contact-copy > small {
  display: block;
  max-width: 540px;
  margin-top: 28px;
  padding-top: 18px;
  color: #75909a;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .7rem;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-card {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 15px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  transition: transform .3s var(--ease), background .3s ease, border-color .3s ease;
}

.contact-card:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, .085);
  border-color: rgba(29, 200, 138, .28);
}

.contact-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: rgba(29, 200, 138, .09);
  border-radius: 12px;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.contact-card small {
  color: #8fa7af;
  font-size: .65rem;
}

.contact-card strong {
  color: #fff;
  font-family: var(--display);
  font-size: .95rem;
  line-height: 1.35;
}

.contact-card > svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.contact-actions > p {
  margin: 3px 4px 0;
  color: #718993;
  font-size: .66rem;
  line-height: 1.5;
}

.site-footer {
  padding: 80px 0 28px;
  background: var(--canvas);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 55px;
}

.footer-brand {
  max-width: 500px;
}

.footer-brand > p {
  max-width: 480px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: .83rem;
}

.footer-contact {
  display: grid;
  gap: 7px;
  min-width: 210px;
}

.footer-contact strong {
  margin-bottom: 7px;
  color: var(--ink);
  font-family: var(--display);
}

.footer-contact a {
  width: fit-content;
  color: var(--muted);
  font-size: .82rem;
}

.footer-contact a:hover {
  color: var(--green-dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  color: #83918c;
  border-top: 1px solid var(--line);
  font-size: .67rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom span {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: .12em;
}

.mobile-action-bar {
  position: fixed;
  z-index: 1200;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: none;
  grid-template-columns: 1.2fr .8fr;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(7, 26, 38, .13);
  border-radius: 17px;
  box-shadow: 0 16px 46px rgba(7, 26, 38, .24);
}

.mobile-action-bar a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 850;
}

.mobile-action-bar a:first-child {
  color: #053d2a;
  background: var(--green);
}

.mobile-action-bar a + a {
  border-left: 1px solid var(--line);
}

.mobile-action-bar svg {
  width: 19px;
  height: 19px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(29, 200, 138, .55);
  outline-offset: 3px;
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scanMove {
  0%, 100% {
    top: 18%;
    opacity: .55;
  }
  50% {
    top: 81%;
    opacity: 1;
  }
}

@keyframes statusPulse {
  0%, 100% {
    opacity: .55;
    transform: scale(.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .8fr);
    gap: 45px;
  }

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

  .asset-tag.tag-one {
    left: -10px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 94px 0;
  }

  .hero-section {
    padding-top: 130px;
  }

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

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

  .asset-visual {
    min-height: 610px;
  }

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

  .trust-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section-heading-split,
  .quote-shell,
  .assurance-layout,
  .faq-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .section-heading-split {
    gap: 18px;
  }

  .quote-result {
    min-height: 430px;
  }

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

  .audience-card {
    min-height: 470px;
  }

  .assurance-intro {
    max-width: 680px;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .process-line::before {
    top: 50px;
    bottom: 50px;
    left: 67px;
    right: auto;
    width: 1px;
    height: auto;
    background: repeating-linear-gradient(180deg, var(--green-dark) 0 8px, transparent 8px 15px);
  }

  .process-card {
    min-height: 285px;
    padding-left: 126px;
  }

  .process-icon {
    position: absolute;
    left: 25px;
    top: 25px;
    margin: 0;
  }

  .faq-intro {
    position: static;
    max-width: 680px;
  }

  .contact-shell {
    border-radius: 28px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 74px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .header-inner {
    width: calc(100% - 24px);
    height: 76px;
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    max-width: 118px;
    overflow: hidden;
    font-size: .78rem;
    text-overflow: ellipsis;
  }

  .brand-copy small {
    display: none;
  }

  .header-actions {
    gap: 7px;
  }

  .header-quote {
    display: none;
  }

  .language-control {
    width: 48px;
    height: 44px;
    padding-left: 13px;
    overflow: hidden;
  }

  .language-control select {
    position: absolute;
    inset: 0;
    width: 100%;
    min-width: 0;
    padding: 0;
    opacity: 0;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-nav {
    top: 76px;
  }

  .hero-section {
    min-height: auto;
    padding: 118px 0 64px;
  }

  .hero-section::before {
    background-size: 38px 38px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: .63rem;
    letter-spacing: .11em;
  }

  .eyebrow > span:first-child {
    width: 25px;
  }

  .hero-copy h1 {
    margin-bottom: 20px;
    font-size: clamp(2.55rem, 13vw, 4rem);
    line-height: 1.08;
  }

  html[lang="en"] .hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  html[lang^="zh"] .hero-copy h1 > span,
  html[lang^="zh"] .hero-copy h1 > strong,
  html[lang="ja"] .hero-copy h1 > span,
  html[lang="ja"] .hero-copy h1 > strong {
    white-space: normal;
  }

  .hero-description {
    margin-bottom: 26px;
    font-size: .95rem;
    line-height: 1.78;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .micro-proof {
    display: grid;
    gap: 9px;
    margin-bottom: 28px;
  }

  .route-cards {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 174px;
    padding: 21px;
  }

  .route-card + .route-card {
    border-top: 1px solid rgba(7, 26, 38, .12);
    border-left: 0;
  }

  .asset-visual {
    min-height: 480px;
  }

  .orbit-one {
    width: 420px;
    height: 420px;
  }

  .orbit-two {
    width: 330px;
    height: 330px;
  }

  .asset-console {
    width: calc(100% - 8px);
    padding: 12px;
    border-radius: 22px;
    transform: none;
  }

  .console-header {
    padding: 6px 4px 12px;
  }

  .console-brand img {
    width: 37px;
    height: 37px;
  }

  .console-brand strong {
    font-size: .75rem;
  }

  .scan-status {
    padding: 6px 8px;
    font-size: .56rem;
  }

  .scanner-stage {
    height: 185px;
  }

  .device-outline {
    transform: scale(.85);
  }

  .asset-row {
    padding: 8px;
  }

  .asset-row-icon {
    width: 32px;
    height: 32px;
  }

  .tag-one {
    top: 19%;
  }

  .tag-two {
    right: 0;
    bottom: 16%;
  }

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

  .trust-grid article {
    min-height: 96px;
    padding: 18px 12px;
  }

  .trust-grid article + article,
  .trust-grid article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .assurance-intro h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .section-heading > p:last-child,
  .section-heading-split > p,
  .assurance-intro > p,
  .faq-intro > p,
  .contact-copy > p {
    font-size: .9rem;
  }

  .quote-shell {
    border-radius: 23px;
  }

  .quote-form,
  .quote-result {
    padding: 25px 20px;
  }

  .quote-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .location-field,
  .quote-submit {
    grid-column: auto;
  }

  .quote-submit {
    width: 100%;
    min-width: 0;
  }

  .quote-result {
    min-height: 390px;
  }

  .result-actions {
    display: grid;
  }

  .audience-card {
    min-height: 0;
    padding: 28px 22px;
    border-radius: 23px;
  }

  .audience-top {
    margin-bottom: 32px;
  }

  .audience-icon {
    width: 51px;
    height: 51px;
  }

  .audience-card h3 {
    font-size: 2rem;
  }

  .service-grid,
  .pricing-grid,
  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 270px;
  }

  .service-icon {
    margin-bottom: 42px;
  }

  .price-card {
    min-height: 345px;
  }

  .price-explainer {
    grid-template-columns: auto 1fr;
    padding: 20px;
  }

  .price-explainer .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .assurance-layout {
    gap: 44px;
  }

  .assurance-card {
    min-height: 225px;
  }

  .process-card {
    min-height: 0;
    padding: 112px 22px 26px;
  }

  .process-line::before {
    display: none;
  }

  .process-icon {
    left: 22px;
    top: 20px;
    width: 70px;
    height: 70px;
    border-width: 8px;
  }

  .faq-list summary {
    min-height: 76px;
    gap: 14px;
    font-size: .93rem;
  }

  .faq-list details p {
    padding-right: 0;
    font-size: .82rem;
  }

  .contact-section {
    padding: 12px 0;
  }

  .contact-shell {
    width: calc(100% - 20px);
    gap: 38px;
    padding: 40px 20px;
    border-radius: 24px;
  }

  .contact-card {
    grid-template-columns: 42px 1fr auto;
    padding: 12px;
  }

  .contact-card strong {
    font-size: .82rem;
  }

  .site-footer {
    padding-top: 66px;
  }

  .footer-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    padding-bottom: 40px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
