:root {
  --bg: #f5fbf8;
  --surface: #ffffff;
  --surface-soft: #f4fff9;
  --text: #173834;
  --muted: #607a73;
  --line: #d8ece4;
  --primary: #0b8f73;
  --primary-deep: #056b5f;
  --accent: #07939f;
  --gold: #d99216;
  --shadow: 0 18px 48px rgba(37, 75, 120, 0.12);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(3, 117, 95, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(21, 196, 143, 0.12), transparent 38%),
    linear-gradient(125deg, #f7fff9 0%, #ffffff 42%, #e8fbf3 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 0 22%, rgba(255, 255, 255, 0.72) 22% 23%, transparent 23% 58%, rgba(11, 127, 105, 0.08) 58% 59%, transparent 59%),
    repeating-linear-gradient(135deg, rgba(6, 128, 105, 0.045) 0 1px, transparent 1px 22px);
  content: "";
}

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

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

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

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

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

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(119, 224, 184, 0.42);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(5, 118, 100, 0.2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.brand-copy strong {
  color: #063a3d;
  font-size: 22px;
  line-height: 1;
}

.brand-copy span,
.eyebrow,
.product-kicker {
  color: #55756d;
  font-size: 13px;
}

.top-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border: 1px solid rgba(171, 221, 202, 0.66);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(5, 120, 102, 0.08);
  backdrop-filter: blur(10px);
}

.top-nav a {
  min-width: 64px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #456960;
  font-size: 14px;
  text-align: center;
}

.top-nav a:hover {
  color: #057866;
  background: #f4fff9;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  min-height: auto;
  padding: 30px 0 42px;
  gap: 34px;
}

.hero-copy {
  max-width: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: #067b67;
  font-weight: 700;
}

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

h1 {
  max-width: none;
  margin-bottom: 22px;
  color: #063a3d;
  font-size: 84px;
  line-height: 1.18;
  letter-spacing: 0;
  white-space: nowrap;
}

.kinetic-title {
  color: transparent;
  background: linear-gradient(135deg, #063a3d 0%, #0b8f73 36%, #16c98c 54%, #07939f 72%, #063a3d 100%);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 10px 24px rgba(5, 120, 102, 0.12));
  animation: title-gradient-shift 4s ease-in-out infinite;
}

.title-prefix,
.typing-text {
  color: transparent;
  background: inherit;
  background-size: inherit;
  -webkit-background-clip: text;
  background-clip: text;
}

.typing-text {
  display: inline-block;
  text-align: left;
}

.typing-cursor {
  display: inline-block;
  width: 0.08em;
  height: 0.9em;
  margin-left: 0.12em;
  border-radius: 999px;
  background: #0b8f73;
  box-shadow: 0 0 16px rgba(19, 188, 131, 0.55);
  vertical-align: -0.08em;
  animation: cursor-blink 1s step-end infinite;
}

@keyframes title-gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes cursor-blink {
  0%,
  70%,
  100% {
    opacity: 1;
  }

  20%,
  50% {
    opacity: 0;
  }
}

.hero-lead {
  max-width: none;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  white-space: nowrap;
}

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

.primary-action,
.secondary-action,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 700;
}

.primary-action {
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, #057866, #13bc83 52%, #07939f);
  box-shadow: 0 12px 26px rgba(5, 120, 102, 0.24);
}

.secondary-action {
  padding: 0 22px;
  border: 1px solid var(--line);
  color: #173834;
  background: rgba(255, 255, 255, 0.82);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: 24px;
  padding: 22px;
  border: 1px solid rgba(176, 231, 207, 0.72);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 255, 250, 0.9)),
    linear-gradient(180deg, rgba(5, 120, 102, 0.08), rgba(255, 255, 255, 0));
  box-shadow: 0 28px 70px rgba(0, 91, 75, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 120, 102, 0.08) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(180deg, rgba(5, 120, 102, 0.06) 1px, transparent 1px) 0 0 / 42px 42px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
  opacity: 0.55;
  content: "";
}

.panel-top,
.hero-note {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.panel-top {
  grid-column: 1 / -1;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(171, 221, 202, 0.76);
}

.panel-top span,
.hero-note span {
  color: var(--muted);
  font-size: 14px;
}

.panel-top > div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.panel-top p {
  max-width: 520px;
  margin: 0;
  color: #55756d;
  font-size: 14px;
  line-height: 1.6;
}

.panel-top strong {
  padding: 7px 12px;
  border: 1px solid rgba(11, 143, 115, 0.18);
  border-radius: 999px;
  color: #057866;
  background: rgba(244, 255, 249, 0.82);
  font-size: 13px;
  letter-spacing: 0;
}

.cockpit-core {
  position: relative;
  display: grid;
  min-height: 218px;
  align-content: center;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(11, 143, 115, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(5, 120, 102, 0.9), rgba(11, 143, 115, 0.78) 48%, rgba(7, 147, 159, 0.82)),
    #057866;
  color: #fff;
  box-shadow: 0 18px 36px rgba(5, 120, 102, 0.22);
}

.cockpit-core::after {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px) 0 0 / 24px 24px;
  content: "";
  transform: rotate(45deg);
}

.core-label {
  width: max-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.cockpit-core strong {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.24;
}

.cockpit-core > span:last-of-type {
  position: relative;
  z-index: 1;
  max-width: 330px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.core-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.core-stats span {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  line-height: 1.3;
}

.core-stats b {
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.module-lines {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  border-top: 0;
}

.module-line {
  display: grid;
  grid-template-columns: 1fr;
  align-content: space-between;
  min-height: 103px;
  padding: 16px;
  border: 1px solid rgba(171, 221, 202, 0.76);
  border-radius: 8px;
  color: #123e38;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(5, 120, 102, 0.07);
}

.module-line span {
  width: max-content;
  padding: 4px 8px;
  border-radius: 999px;
  color: #0b8f73;
  background: #e9fff5;
  font-size: 12px;
  font-weight: 800;
}

.module-line strong {
  display: block;
  margin-top: 8px;
  color: #063a3d;
  font-size: 32px;
  line-height: 1.1;
}

.module-line em {
  justify-self: start;
  color: #55756d;
  font-size: 13px;
  font-style: normal;
}

.hero-note {
  grid-column: 1 / -1;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(171, 221, 202, 0.76);
  border-radius: 8px;
  background: #f4fff9;
}

.hero-note strong {
  color: #063a3d;
}

.products-section {
  padding: 18px 0 72px;
}

.cases-section {
  padding: 0 0 72px;
}

.service-section {
  padding: 0 0 72px;
}

.service-heading {
  max-width: none;
  margin-bottom: 24px;
}

.service-heading h2 {
  margin-bottom: 0;
}

.service-heading > p:last-child {
  justify-self: end;
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  text-align: right;
  white-space: nowrap;
}

.service-chooser {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 1210px;
  align-items: stretch;
  overflow: hidden;
  gap: 0;
  border: 1px solid rgba(171, 221, 202, 0.76);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(5, 120, 102, 0.1);
}

.service-card {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 190px 390px 170px;
  align-items: center;
  min-height: 138px;
  gap: 22px;
  padding: 22px 24px;
  border-right: 0;
  border-bottom: 1px solid rgba(171, 221, 202, 0.62);
  background: transparent;
}

.service-card:last-child {
  border-bottom: 0;
}

.service-card-primary {
  background: linear-gradient(90deg, #eefbf5 0%, rgba(255, 255, 255, 0) 72%);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.service-card-top span,
.service-card-top button {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: #057866;
  font-size: 13px;
  font-family: inherit;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.service-card-top button:hover,
.service-after-price button:hover {
  background: #046958;
}

.service-card-top strong {
  color: #6d8580;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

.service-card-main {
  display: grid;
  gap: 10px;
}

.service-card h3 {
  margin: 0;
  color: #063a3d;
  font-size: 24px;
  line-height: 1.22;
}

.service-card p {
  max-width: 620px;
  margin: 0;
  color: #456960;
  font-size: 15px;
  line-height: 1.75;
}

.service-module {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  min-height: 90px;
  gap: 8px;
  padding: 15px 16px;
  border: 1px solid rgba(171, 221, 202, 0.72);
  border-radius: 10px;
  background: #f7fbf9;
}

.service-module span {
  color: #057866;
  font-size: 14px;
  font-weight: 900;
}

.service-module b {
  color: #063a3d;
  font-size: 18px;
}

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

.label-price-list div,
.single-price {
  min-height: 74px;
  padding: 15px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(171, 221, 202, 0.66);
}

.label-price-list div {
  display: grid;
  min-height: 58px;
  align-content: center;
  justify-items: center;
  gap: 7px;
  padding: 12px;
  text-align: center;
}

.label-price-list span,
.single-price span {
  display: block;
  margin-bottom: 8px;
  color: #6d8580;
  font-size: 13px;
  font-weight: 800;
}

.label-price-list span {
  margin-bottom: 0;
  line-height: 1.25;
  white-space: nowrap;
}

.label-price-list strong,
.single-price strong {
  display: block;
  color: #063a3d;
  font-size: 24px;
  line-height: 1.1;
}

.label-price-list strong {
  font-size: 19px;
  text-align: center;
  white-space: nowrap;
}

.single-price .price-note {
  font-size: 16px;
  line-height: 1.25;
  white-space: nowrap;
}

.single-price {
  display: grid;
  align-content: center;
}

.price-placeholder {
  visibility: hidden;
}

.service-after-price {
  display: grid;
  gap: 12px;
  align-content: center;
}

.service-after-price span,
.service-after-price p {
  margin: 0;
  color: #6d8580;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.service-after-price button {
  justify-self: start;
  min-height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: #057866;
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.service-after-price button:hover {
  background: #046958;
}

.pricing-compare {
  overflow-x: auto;
  border: 1px solid rgba(171, 221, 202, 0.76);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(5, 120, 102, 0.1);
}

.pricing-compare table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
}

.pricing-compare th,
.pricing-compare td {
  min-width: 112px;
  padding: 16px 14px;
  border-bottom: 1px solid rgba(171, 221, 202, 0.62);
  color: #456960;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
  vertical-align: middle;
}

.pricing-compare th:first-child,
.pricing-compare td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  min-width: 210px;
  color: #063a3d;
  background: rgba(247, 251, 249, 0.98);
  font-weight: 800;
  text-align: left;
}

.pricing-compare thead th {
  color: #063a3d;
  background: #f4fff9;
  font-weight: 800;
}

.pricing-compare thead th:first-child {
  z-index: 2;
  background: #eefbf5;
}

.pricing-compare thead span,
.pricing-compare thead strong,
.pricing-compare thead small,
.pricing-compare tbody td:first-child span,
.pricing-compare tbody td:first-child strong,
.pricing-compare tbody td:first-child small {
  display: block;
}

.pricing-compare thead span {
  margin-bottom: 7px;
  color: #057866;
  font-size: 13px;
}

.pricing-compare thead strong {
  color: #063a3d;
  font-size: 25px;
  line-height: 1.1;
}

.pricing-compare thead small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.pricing-compare tbody td:first-child span {
  margin-bottom: 7px;
  color: #057866;
  font-size: 13px;
}

.pricing-compare tbody td:first-child strong {
  color: #063a3d;
  font-size: 25px;
  line-height: 1.1;
}

.pricing-compare tbody td:first-child small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.pricing-compare .recommend,
.pricing-compare .recommend-row td {
  background: linear-gradient(180deg, #e9fff5, #ffffff);
}

.pricing-compare .recommend-row td:first-child {
  background: #e9fff5;
}

.pricing-compare th:last-child,
.pricing-compare td:last-child {
  min-width: 126px;
  background: rgba(244, 255, 249, 0.78);
}

.pricing-compare .recommend-row td:last-child {
  background: #dff9ec;
}

.pricing-compare .price-cell {
  color: #063a3d;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.check {
  display: inline-grid;
  min-width: 34px;
  min-height: 30px;
  place-items: center;
  border-radius: 999px;
  color: #057866;
  background: #e9fff5;
  font-weight: 900;
}

.dash {
  color: #a8bab4;
  font-weight: 900;
}

.case-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.case-heading h2 {
  margin-bottom: 0;
  color: #063a3d;
  font-size: 32px;
  line-height: 1.24;
  letter-spacing: 0;
}

.case-heading > p {
  justify-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  white-space: nowrap;
}

.case-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(142, 221, 190, 0.68);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 18%, rgba(25, 200, 144, 0.2), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(7, 147, 159, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 255, 250, 0.94) 52%, rgba(232, 252, 244, 0.9));
  box-shadow: 0 28px 70px rgba(0, 91, 75, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.case-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 120, 102, 0.055) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(180deg, rgba(5, 120, 102, 0.045) 1px, transparent 1px) 0 0 / 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
  opacity: 0.7;
  content: "";
}

.case-intro {
  position: relative;
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 296px;
  padding: 36px;
  overflow: hidden;
  color: #063a3d;
  border-right: 1px solid rgba(142, 221, 190, 0.52);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(244, 255, 249, 0.24));
}

.case-intro::after {
  position: absolute;
  right: -40px;
  bottom: -52px;
  width: 160px;
  height: 160px;
  border: 28px solid rgba(11, 143, 115, 0.08);
  border-radius: 999px;
  content: "";
}

.case-intro span {
  width: max-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(11, 143, 115, 0.18);
  border-radius: 999px;
  color: #057866;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.case-intro strong {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 420px;
  font-size: 36px;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.case-intro em {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 380px;
  margin-top: 18px;
  color: #607a73;
  overflow-wrap: anywhere;
  font-size: 15px;
  font-style: normal;
  line-height: 1.8;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  position: relative;
  z-index: 1;
}

.case-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 296px;
  padding: 34px 28px;
  border-left: 1px solid rgba(142, 221, 190, 0.46);
  color: #063a3d;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28));
  transition: background 0.18s ease, transform 0.18s ease;
}

.case-card:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 255, 249, 0.72));
  transform: translateY(-2px);
}

.case-card::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(11, 143, 115, 0.62), transparent);
  content: "";
}

.case-card span {
  width: max-content;
  color: #6c9186;
  font-size: 13px;
  font-weight: 800;
}

.case-card h3 {
  margin: 26px 0 32px;
  color: #063a3d;
  font-size: 20px;
  line-height: 1.2;
}

.case-card strong {
  display: grid;
  gap: 10px;
  color: #063a3d;
}

.case-card b {
  color: #057866;
  font-size: 58px;
  line-height: 0.95;
  font-weight: 900;
}

.case-card small {
  color: #607a73;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.28;
}

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

.product-heading {
  display: grid;
  grid-template-columns: auto 1fr;
}

.product-heading > p:last-child {
  justify-self: end;
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  text-align: right;
  white-space: nowrap;
}

.section-heading h2,
.value-copy h2 {
  margin-bottom: 0;
  color: #063a3d;
  font-size: 32px;
  line-height: 1.24;
  letter-spacing: 0;
}

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

.product-card {
  display: grid;
  align-content: space-between;
  min-height: 330px;
  padding: 24px;
  border: 1px solid rgba(171, 221, 202, 0.76);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(37, 75, 120, 0.1);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.product-card:hover {
  border-color: rgba(19, 188, 131, 0.72);
  box-shadow: 0 24px 54px rgba(5, 120, 102, 0.16);
  transform: translateY(-3px);
}

.product-card.featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 255, 249, 0.96));
}

.product-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #057866, #13bc83 52%, #07939f);
  box-shadow: 0 12px 26px rgba(5, 120, 102, 0.22);
}

.product-kicker {
  display: block;
  margin-bottom: 10px;
  color: #067b67;
  font-weight: 800;
}

.product-card h3 {
  margin-bottom: 12px;
  color: #063a3d;
  font-size: 24px;
  line-height: 1.18;
}

.product-card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.card-link {
  width: 100%;
  border: 1px solid var(--line);
  color: #057866;
  background: #f4fff9;
}

.card-link.disabled {
  color: #8aa9a0;
  background: #f7fbf9;
  cursor: not-allowed;
  box-shadow: none;
}

.value-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  align-items: center;
  gap: 36px;
  margin-bottom: 34px;
  padding: 34px;
  border: 1px solid rgba(137, 221, 190, 0.52);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(37, 75, 120, 0.1);
}

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

.value-list span {
  min-height: 52px;
  padding: 16px;
  border: 1px solid rgba(171, 221, 202, 0.76);
  border-radius: 8px;
  color: #123e38;
  background: #f4fff9;
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  padding: 28px 0 42px;
  color: #66877e;
  font-size: 14px;
  text-align: center;
}

.site-footer span,
.site-footer a {
  overflow-wrap: anywhere;
}

.site-footer a {
  color: #067b67;
  font-weight: 700;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.contact-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 36, 34, 0.38);
  backdrop-filter: blur(8px);
}

.contact-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 34px;
  border: 1px solid rgba(142, 221, 190, 0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 8%, rgba(25, 200, 144, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 255, 249, 0.96));
  box-shadow: 0 28px 76px rgba(0, 64, 55, 0.24);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(171, 221, 202, 0.76);
  border-radius: 999px;
  color: #607a73;
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.contact-dialog h2 {
  margin-bottom: 24px;
  color: #063a3d;
  font-size: 28px;
  line-height: 1.28;
}

.contact-modal-body {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.contact-modal-body img {
  display: block;
  width: 168px;
  height: 168px;
  padding: 10px;
  border: 1px solid rgba(171, 221, 202, 0.76);
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 14px 28px rgba(5, 120, 102, 0.12);
}

.contact-modal-body span {
  display: block;
  margin-bottom: 8px;
  color: #607a73;
  font-size: 13px;
  font-weight: 700;
}

.contact-modal-body a {
  color: #057866;
  font-size: 26px;
  font-weight: 900;
}

.contact-modal-body p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .value-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  h1 {
    font-size: 64px;
  }

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

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

  .case-heading,
  .case-panel,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-heading > p {
    justify-self: start;
    font-size: 15px;
    white-space: normal;
  }

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

  .product-heading > p:last-child {
    justify-self: start;
    font-size: 15px;
    text-align: left;
    white-space: normal;
  }

  .case-intro {
    border-right: 0;
    border-bottom: 1px solid rgba(142, 221, 190, 0.52);
  }

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

  .case-card {
    border-left: 0;
  }

  .panel-top {
    flex-direction: column;
  }

  .module-lines {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .module-line {
    min-height: 112px;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 18px;
  }

  .top-nav {
    width: 100%;
    justify-content: space-between;
  }

  .top-nav a {
    min-width: 0;
    flex: 1;
  }

  .brand-copy strong {
    font-size: 21px;
  }

  .brand-copy span {
    font-size: 12px;
  }

  .hero {
    gap: 28px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: 20px;
    line-height: 1.35;
  }

  .hero-lead {
    font-size: 16px;
    white-space: normal;
  }

  .hero-panel,
  .value-section {
    padding: 22px;
    border-radius: 14px;
  }

  .module-lines,
  .product-grid,
  .value-list {
    grid-template-columns: 1fr;
  }

  .case-intro,
  .case-card {
    min-height: 0;
  }

  .case-intro strong {
    font-size: 28px;
  }

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

  .case-card {
    padding: 24px;
    border-top: 1px solid rgba(142, 221, 190, 0.46);
  }

  .case-card b {
    font-size: 48px;
  }

  .cockpit-core {
    min-height: 156px;
  }

  .module-line {
    min-height: 78px;
    padding: 14px;
  }

  .module-line strong {
    font-size: 26px;
  }

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

  .core-stats span {
    padding: 8px;
    font-size: 11px;
  }

  .core-stats b {
    font-size: 18px;
  }

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

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

  .service-heading > p:last-child {
    text-align: left;
    white-space: normal;
  }

  .service-chooser {
    min-width: 0;
  }

  .service-card {
    grid-template-columns: 1fr;
    min-height: 124px;
    gap: 14px;
    padding: 16px;
  }

  .service-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-card-top strong {
    display: block;
    font-size: 12px;
  }

  .service-card h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  .service-module {
    align-items: flex-start;
    flex-direction: column;
    min-height: 72px;
    gap: 5px;
    padding: 10px;
  }

  .service-module span {
    font-size: 12px;
  }

  .service-module b {
    font-size: 13px;
  }

  .label-price-list {
    gap: 8px;
  }

  .label-price-list div,
  .single-price {
    min-height: 52px;
    padding: 8px;
  }

  .label-price-list div {
    align-content: center;
    gap: 4px;
  }

  .label-price-list span,
  .single-price span {
    font-size: 11px;
  }

  .label-price-list strong,
  .single-price strong {
    font-size: 16px;
  }

  .single-price .price-note {
    font-size: 13px;
  }

  .section-heading h2,
  .value-copy h2 {
    font-size: 26px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-dialog {
    padding: 28px 22px;
  }

  .contact-modal-body {
    grid-template-columns: 1fr;
  }

  .contact-modal-body img {
    width: 176px;
    height: 176px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kinetic-title,
  .title-prefix,
  .typing-text,
  .typing-cursor {
    animation: none;
  }
}
