:root {
  --ink: #0b1118;
  --ink-soft: #121c25;
  --ink-raised: #192732;
  --steel: #62727d;
  --steel-light: #aeb9bf;
  --line: #d8e0e4;
  --surface: #ffffff;
  --surface-muted: #eef2f4;
  --surface-cool: #e3eaed;
  --text: #17212a;
  --text-muted: #5a6972;
  --accent: #20b6da;
  --accent-strong: #006b8a;
  --accent-pale: #d9f4fa;
  --white: #ffffff;
  --shadow-sm: 0 12px 32px rgba(11, 17, 24, 0.08);
  --shadow-lg: 0 32px 80px rgba(3, 9, 14, 0.24);
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --header-height: 76px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: var(--header-height);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--surface);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.18;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: var(--accent);
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  background: rgba(11, 17, 24, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-name {
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-en {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  color: #d8e1e6;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  padding: 9px 18px;
  color: var(--ink);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.site-nav .nav-cta:hover {
  background: #65d4ed;
  border-color: #65d4ed;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.menu-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(32, 182, 218, 0.12), transparent 28%),
    linear-gradient(135deg, #0b1118 0%, #101b24 58%, #0b1118 100%);
}

.hero::before,
.about::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-areas:
    "copy media"
    "stats media";
  grid-template-columns: minmax(380px, 0.86fr) minmax(0, 1.14fr);
  column-gap: clamp(36px, 4vw, 56px);
  row-gap: 42px;
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding-block: 80px;
}

.hero-copy {
  grid-area: copy;
  align-self: end;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact .eyebrow {
  color: var(--accent);
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 590px;
  margin-bottom: 26px;
  font-size: clamp(2.5rem, 3.3vw, 3.2rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: #becbd2;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.button-primary:hover {
  background: #65d4ed;
  border-color: #65d4ed;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-secondary svg {
  width: 18px;
}

.hero-stats {
  grid-area: stats;
  align-self: start;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 540px;
  margin-bottom: 0;
}

.hero-stats > div {
  display: flex;
  flex-direction: column;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats dt {
  color: #82929c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  order: 2;
}

.hero-stats dd {
  margin-bottom: 5px;
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 760;
  line-height: 1.2;
  white-space: nowrap;
  order: 1;
}

.hero-stats small {
  color: #a9b7be;
  font-size: 0.68em;
  font-weight: 500;
}

.hero-media {
  position: relative;
  grid-area: media;
  min-width: 0;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  background: #dfe5e7;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(145deg, transparent 55%, rgba(7, 17, 25, 0.24));
}

.hero-frame img {
  width: 100%;
  height: auto;
}

.precision-badge {
  position: relative;
  display: grid;
  width: max-content;
  min-width: 176px;
  padding: 14px 20px 16px;
  margin: -1px 22px 0 auto;
  color: var(--ink);
  background: var(--accent);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.precision-badge span,
.precision-badge small {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.precision-badge strong {
  margin-block: 3px;
  font-size: 1.7rem;
  line-height: 1.1;
}

.section {
  position: relative;
  padding-block: clamp(82px, 10vw, 126px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(42px, 6vw, 70px);
}

.section-heading h2,
.about h2,
.contact h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4.5vw, 3.9rem);
  font-weight: 760;
}

.section-heading > p:last-child,
.section-heading-row > p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.service-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card::after {
  position: absolute;
  right: -48px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
}

.service-card:hover {
  border-color: #a9c7d0;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.icon-box {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 58px;
  color: var(--accent-strong);
  background: var(--accent-pale);
  border-radius: 50%;
  place-items: center;
}

.icon-box svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-number {
  position: absolute;
  top: 36px;
  right: 34px;
  color: #5e6d76;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  font-weight: 760;
}

.service-card > p:last-child {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--text-muted);
}

.products {
  background: var(--surface-muted);
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: end;
  max-width: none;
}

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

.section-heading-row > p {
  margin-bottom: 7px;
}

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

.product-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid #d3dde1;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(15, 30, 40, 0.05);
}

.product-media {
  display: grid;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dde3e5;
  border-bottom: 1px solid var(--line);
  place-items: center;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
  transition: filter 250ms ease, transform 350ms ease;
}

.product-media-wide img {
  object-fit: contain;
}

.product-card:hover .product-media img {
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.018);
}

.product-body {
  padding: 28px;
}

.product-index {
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.product-body h3 {
  margin-bottom: 13px;
  font-size: 1.45rem;
  font-weight: 760;
}

.product-body > p:not(.product-index) {
  min-height: 3.4em;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.spec-list {
  margin-bottom: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.spec-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  margin-top: 10px;
  font-size: 0.84rem;
  line-height: 1.6;
}

.spec-list dt {
  color: #5e6d76;
  font-weight: 700;
}

.spec-list dd {
  margin-bottom: 0;
  color: #34434d;
}

.about {
  overflow: hidden;
  color: var(--white);
  background: var(--ink-soft);
}

.about::before {
  opacity: 0.14;
  mask-image: linear-gradient(to left, black, transparent 78%);
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(60px, 10vw, 130px);
}

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

.about h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.about-copy {
  padding-top: 45px;
  color: #b9c6cc;
}

.about-copy p {
  margin-bottom: 20px;
}

.about-copy .about-lead {
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 570;
  line-height: 1.8;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.about-points span {
  padding: 7px 13px;
  color: #dce7eb;
  font-size: 0.78rem;
  font-weight: 650;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.contact {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(32, 182, 218, 0.07), transparent 45%),
    var(--ink);
}

.contact::after {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 620px;
  height: 620px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(32, 182, 218, 0.14);
  border-radius: 50%;
  box-shadow: inset 0 0 0 80px rgba(32, 182, 218, 0.025), inset 0 0 0 160px rgba(32, 182, 218, 0.018);
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-intro {
  max-width: 800px;
  margin-bottom: 56px;
}

.contact-intro h2 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
}

.contact-intro > p:last-child {
  max-width: 610px;
  margin-bottom: 0;
  color: #aebcc4;
  font-size: 1.05rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(46px, 8vw, 100px);
  align-items: start;
}

.contact-primary {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-action {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 22px;
  align-items: center;
  padding-block: 24px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-action .contact-label {
  grid-column: 1;
}

.contact-action strong {
  grid-column: 1;
  color: var(--white);
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.contact-action svg {
  grid-row: 1 / 3;
  grid-column: 2;
  width: 26px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.contact-action:hover svg {
  transform: translateX(5px);
}

.contact-label {
  margin-bottom: 2px;
  color: #8ea0aa;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.fax {
  margin: 18px 0 0;
  color: #8797a0;
  font-size: 0.85rem;
}

.contact-details {
  display: grid;
  gap: 34px;
  margin: 0;
  font-style: normal;
}

.detail-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.detail-icon {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--accent);
  background: rgba(32, 182, 218, 0.1);
  border: 1px solid rgba(32, 182, 218, 0.25);
  border-radius: 50%;
  place-items: center;
}

.detail-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-row p:not(.contact-label) {
  margin-bottom: 8px;
  color: #d4dee3;
}

.detail-row a {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-footer {
  padding-block: 28px;
  color: #8e9ca5;
  background: #070b10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand-footer {
  flex-shrink: 0;
}

.brand-footer .brand-name {
  font-size: 0.95rem;
}

.brand-footer .brand-en {
  font-size: 0.56rem;
}

.footer-inner p {
  margin: 0 auto 0 0;
  font-size: 0.78rem;
}

.footer-inner small {
  flex-shrink: 0;
  font-size: 0.74rem;
}

.error-page {
  min-height: 100vh;
  color: var(--white);
  background: var(--ink);
}

.error-main {
  display: grid;
  min-height: calc(100vh - var(--header-height) - 112px);
  place-items: center;
}

.error-content {
  width: min(calc(100% - 48px), 740px);
  padding-block: 80px;
  text-align: center;
}

.error-code {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 1;
}

.error-content h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.error-content > p:not(.error-code) {
  max-width: 560px;
  margin: 0 auto 32px;
  color: #aebcc4;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
    gap: 32px;
  }

  .precision-badge {
    margin-right: 12px;
  }

  .service-card {
    padding: 28px;
  }

  .product-grid {
    gap: 16px;
  }

  .product-body {
    padding: 23px;
  }
}

@media (max-width: 840px) {
  :root {
    --header-height: 68px;
  }

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

  .js .menu-toggle {
    display: block;
  }

  .js .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 18px 20px;
    visibility: hidden;
    background: rgba(11, 17, 24, 0.99);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  }

  .js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 10px;
    padding: 12px 18px;
    text-align: center;
    border-bottom: 0;
  }

  .no-js .header-inner {
    height: auto;
    min-height: var(--header-height);
    flex-wrap: wrap;
    padding-block: 12px;
  }

  .no-js .site-header {
    height: auto;
  }

  .no-js .site-nav {
    width: 100%;
    gap: 18px;
    justify-content: space-between;
    margin-top: 10px;
  }

  .hero-grid {
    grid-template-areas:
      "copy"
      "media"
      "stats";
    grid-template-columns: 1fr;
    gap: 46px;
    min-height: auto;
    padding-block: 78px 94px;
  }

  .hero-copy {
    max-width: 720px;
    align-self: auto;
  }

  .hero-media {
    max-width: 680px;
  }

  .precision-badge {
    margin-right: 18px;
  }

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

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

  .icon-box {
    margin-bottom: 46px;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading-row > p {
    max-width: 650px;
  }

  .product-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  }

  .product-media {
    height: 100%;
    min-height: 330px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .product-body > p:not(.product-index) {
    min-height: 0;
  }

  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .about-copy {
    max-width: 720px;
    padding-top: 0;
  }
}

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

  .brand {
    gap: 8px;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .brand-en {
    font-size: 0.58rem;
  }

  .no-js .site-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    padding-block: 64px 78px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10vw, 2.55rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 46px;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-stats > div {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    border-left: 0;
  }

  .hero-stats dt {
    grid-column: 1;
    order: 1;
  }

  .hero-stats dd {
    grid-column: 2;
    margin: 0;
    order: 2;
  }

  .precision-badge {
    min-width: 145px;
    padding: 15px 18px;
    margin-right: 12px;
  }

  .precision-badge strong {
    font-size: 1.4rem;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading h2,
  .about h2,
  .contact h2 {
    font-size: clamp(2.05rem, 9vw, 3rem);
  }

  .service-card {
    min-height: 0;
  }

  .product-card {
    display: block;
  }

  .product-media {
    height: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about h2 br {
    display: none;
  }

  .contact-action strong {
    font-size: 1.15rem;
  }

  .detail-row {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .detail-icon {
    width: 42px;
    height: 42px;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
  }

  .footer-inner p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-inner small {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
