:root {
  --ink: #0b1220;
  --ink-2: #1b2b44;
  --muted: #66758f;
  --line: rgba(92, 125, 170, .22);
  --panel: rgba(255, 255, 255, .9);
  --panel-soft: rgba(255, 255, 255, .72);
  --cyan: #26d8ff;
  --teal: #15c7a7;
  --blue: #2267ff;
  --violet: #7357ff;
  --lime: #b9e85f;
  --bg: #f6f9fc;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(16, 35, 65, .16);
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 249, 252, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background .28s ease, box-shadow .28s ease;
}

.site-header.compact {
  background: rgba(246, 249, 252, .72);
  box-shadow: 0 12px 38px rgba(16, 35, 65, .12);
}

.nav-wrap {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: min-height .24s ease;
}

.site-header.compact .nav-wrap {
  min-height: 58px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark,
.brand-mark-img {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(38, 216, 255, .48);
  border-radius: var(--radius);
  object-fit: contain;
  padding: 4px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 26px rgba(34, 103, 255, .25);
  transition: width .24s ease, height .24s ease;
}

.site-header.compact .brand-mark,
.site-header.compact .brand-mark-img {
  width: 34px;
  height: 34px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 700;
}

.site-header.compact .brand small {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  color: var(--ink);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity .24s ease, transform .24s ease;
}

.site-header.compact:not(:hover) .site-nav {
  opacity: .26;
  transform: translateX(16px) scale(.96);
  pointer-events: none;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #233652;
  font-size: 15px;
  font-weight: 700;
  transition: padding .24s ease;
}

.site-header.compact .site-nav a {
  padding: 8px 10px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(34, 103, 255, .09);
  color: #0b4be3;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(34, 103, 255, .22);
}

.btn.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
  border-color: rgba(255, 255, 255, .56);
  box-shadow: none;
}

.btn.ghost {
  color: #123153;
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.page-hero {
  position: relative;
  min-height: 54vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #071426;
}

.home-hero {
  min-height: calc(100svh - 74px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(3, 12, 27, .91), rgba(7, 20, 38, .68) 48%, rgba(7, 20, 38, .2)), var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(38, 216, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 216, 255, .08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.signal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .55;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto;
  padding: 86px 0 78px;
}

.hero-logo-card {
  position: relative;
  width: min(550px, 100%);
  margin-bottom: 28px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  isolation: isolate;
}

.hero-logo-card::before {
  content: none;
}

.hero-logo-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, .4));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(40px, 5.7vw, 74px);
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(36px, 4.9vw, 62px);
}

.hero-lead {
  max-width: 710px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(18px, 2vw, 23px);
}

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

.hero-metrics {
  width: min(1180px, calc(100% - 72px));
  position: relative;
  z-index: 3;
  margin: -42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.metric {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: #0b4be3;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 92px 0;
}

.section.tight {
  padding: 58px 0;
}

.section.dark {
  color: #fff;
  background:
    linear-gradient(135deg, #071426, #0f2544 58%, #102f39);
}

.tech-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: 20px;
  align-items: stretch;
}

.interactive-card {
  --mx: 50%;
  --my: 50%;
  transform-style: preserve-3d;
}

.interactive-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(38, 216, 255, .18), transparent 34%);
  opacity: 0;
  transition: opacity .2s ease;
}

.interactive-card:hover::after {
  opacity: 1;
}

.diagnostic-visual {
  position: relative;
  min-height: 430px;
  padding: 24px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 20, 38, .97), rgba(14, 46, 62, .95)),
    #071426;
  border: 1px solid rgba(38, 216, 255, .24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.diagnostic-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(38, 216, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 216, 255, .08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.diagnostic-visual > * {
  position: relative;
  z-index: 1;
}

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

.diagnostic-top span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.diagnostic-top strong {
  font-size: 22px;
}

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

.chart-hotspot {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .08);
  font-weight: 900;
  cursor: pointer;
}

.chart-hotspot:hover,
.chart-hotspot.active {
  color: #071426;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
}

.diagnostic-lines {
  width: 100%;
  height: 210px;
  margin: 18px 0 10px;
}

.diagnostic-lines path {
  fill: none;
  stroke: rgba(38, 216, 255, .78);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 360;
  animation: trace-signal 4.2s ease-in-out infinite;
}

.diagnostic-lines circle {
  fill: var(--lime);
  filter: drop-shadow(0 0 10px rgba(185, 232, 95, .7));
}

.chart-note {
  min-height: 58px;
  margin: 0;
  padding: 14px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
}

.tech-panel {
  position: relative;
  min-height: 280px;
  padding: 24px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 20, 38, .96), rgba(15, 37, 68, .94));
  border: 1px solid rgba(38, 216, 255, .2);
  border-radius: var(--radius);
}

.tech-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(38, 216, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 216, 255, .06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.tech-panel > * {
  position: relative;
  z-index: 1;
}

.tech-panel h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.tech-panel p {
  color: rgba(255, 255, 255, .7);
}

.wave-chart {
  width: 100%;
  height: 164px;
  margin-top: 22px;
}

.wave-chart path.signal {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 540;
  animation: trace-signal 3.8s ease-in-out infinite;
}

.wave-chart path.threshold {
  fill: none;
  stroke: rgba(185, 232, 95, .85);
  stroke-width: 2;
  stroke-dasharray: 8 10;
}

.flow-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.flow-node {
  min-height: 94px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.flow-node strong {
  display: block;
  color: #fff;
}

.flow-node span {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.flow-node.active {
  border-color: rgba(38, 216, 255, .7);
  box-shadow: 0 0 0 1px rgba(38, 216, 255, .18), 0 16px 42px rgba(38, 216, 255, .16);
  animation: pulse-border 2.6s ease-in-out infinite;
}

.flow-node:hover,
.bar-row:hover .bar-track,
.gauge:hover {
  border-color: rgba(38, 216, 255, .7);
  filter: brightness(1.12);
}

.bar-chart {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}

.bar-row {
  display: grid;
  grid-template-columns: 96px 1fr 54px;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
}

.bar-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  transform-origin: left;
  animation: grow-bar 1.7s ease both;
}

.gauge {
  position: relative;
  width: min(230px, 80%);
  aspect-ratio: 1;
  margin: 20px auto 0;
  border-radius: 50%;
  background:
    conic-gradient(var(--teal) 0 74%, rgba(255, 255, 255, .13) 74% 100%);
  display: grid;
  place-items: center;
}

.gauge::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: #0d2038;
}

.gauge strong,
.gauge span {
  position: relative;
  z-index: 1;
}

.gauge strong {
  font-size: 42px;
  line-height: 1;
}

.gauge span {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 800;
}

@keyframes trace-signal {
  0% { stroke-dashoffset: 540; opacity: .65; }
  48% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -540; opacity: .65; }
}

@keyframes pulse-border {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes grow-bar {
  from { transform: scaleX(.12); }
  to { transform: scaleX(1); }
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(240px, .55fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.solo-head h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
}

.section-head p,
.solo-head p {
  color: var(--muted);
  font-size: 17px;
}

.dark .section-head p,
.dark .solo-head p {
  color: rgba(255, 255, 255, .72);
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.feature {
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 35, 65, .09);
}

.feature.dark-card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .15);
  box-shadow: none;
}

.feature h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
}

.dark .feature p {
  color: rgba(255, 255, 255, .72);
}

.image-band {
  position: relative;
  min-height: 460px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #071426;
}

.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .62;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 12, 27, .9), rgba(3, 12, 27, .18));
}

.image-band .wrap {
  position: relative;
  z-index: 2;
  padding: 72px 0;
}

.image-band h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
}

.image-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
}

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

.stage {
  padding: 24px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
}

.stage span {
  color: var(--cyan);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, .72fr);
  gap: 36px;
  align-items: center;
}

.split figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.split figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 26px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
}

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

.member {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.member img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center top;
  background: #dce5ef;
}

.member div {
  padding: 18px;
}

.member h3 {
  margin-bottom: 4px;
}

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

.product-toolbar,
.news-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.chip-btn {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #263b59;
  font-weight: 800;
  cursor: pointer;
}

.chip-btn.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

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

.product-card {
  display: grid;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(16, 35, 65, .08);
}

.product-card[hidden] {
  display: none;
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 270px;
  padding: 22px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: contain;
  background: #fff;
  mix-blend-mode: normal;
}

.product-card .body {
  padding: 22px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #0b4be3;
  background: rgba(34, 103, 255, .1);
  font-size: 12px;
  font-weight: 900;
}

.specs {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.filter-summary {
  margin: -8px 0 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.news-card {
  display: grid;
  min-height: 270px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 35, 65, .08);
}

.news-card time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.news-card h3 {
  margin: 12px 0 10px;
}

.news-card p {
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(320px, .55fr);
  gap: 24px;
  align-items: stretch;
}

.contact-card,
.contact-form {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 35, 65, .08);
}

.contact-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row span {
  color: var(--muted);
  font-weight: 800;
}

label {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  color: var(--ink-2);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 255, 255, .74);
  background: #071426;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-animate].in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .signal-canvas {
    display: none;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 28px;
    right: 28px;
    top: 74px;
    display: none;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .hero-metrics,
  .section-head,
  .grid.three,
  .grid.two,
  .timeline,
  .split,
  .member-grid,
  .product-grid,
  .news-grid,
  .contact-panel,
  .footer-grid,
  .tech-dashboard,
  .flow-map,
  .diagnostic-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .nav-wrap,
  .wrap,
  .hero-inner,
  .hero-metrics {
    width: min(100% - 56px, 1180px);
  }

  .brand small {
    display: none;
  }

  .hero-inner {
    padding: 66px 0 58px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-actions,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  button.btn {
    width: 100%;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
